@@ -5,7 +5,7 @@ parseable:
5
5
pullPolicy : Always
6
6
# # object store can be local-store, s3-store, blob-store or gcs-store.
7
7
store : local-store
8
- # # Set to true if you want to deploy Parseable in a HA mode (multiple ingestors)
8
+ # # Set to true if you want to deploy Parseable in a HA mode (multiple ingestors + hot tier )
9
9
# # Please note that highAvailability is not supported in local mode
10
10
highAvailability :
11
11
enabled : false
@@ -66,11 +66,13 @@ parseable:
66
66
storageClass : " "
67
67
accessMode : ReadWriteOnce
68
68
size : 5Gi
69
+ # # enabling the disk on querier adds the hot-tier.
70
+ # # local-store is not supported on hot-tier.
69
71
querier :
70
72
enabled : false
71
73
storageClass : " "
72
74
accessMode : ReadWriteOnce
73
- size : 5Gi
75
+ size : 20Gi
74
76
# # comment out the secrets depending upon deployment option
75
77
# # localModeSecret if store is set to local
76
78
# # blobModeSecret if store is set to blob-store
@@ -377,6 +379,22 @@ fluent-bit:
377
379
Mem_Buf_Limit 5MB
378
380
Skip_Long_Lines On
379
381
382
+ # [INPUT]
383
+ # Name tail
384
+ # Path /var/log/containers/{{ NGINX_POD_NAME }}-*.log
385
+ # Parser nginx_access
386
+ # Tag kube.*
387
+ # Mem_Buf_Limit 5MB
388
+ # Skip_Long_Lines On
389
+
390
+ # [INPUT]
391
+ # Name tail
392
+ # Path /var/log/containers/{{ NGINX_POD_NAME }}-*.log
393
+ # Parser nginx_error
394
+ # Tag kube.*
395
+ # Mem_Buf_Limit 5MB
396
+ # Skip_Long_Lines On
397
+
380
398
[INPUT]
381
399
name kubernetes_events
382
400
tag k8s_events
@@ -427,6 +445,21 @@ fluent-bit:
427
445
Time_Keep Off
428
446
Time_Key time
429
447
Time_Format %Y-%m-%dT%H:%M:%S.%L
448
+
449
+ # [PARSER]
450
+ # Name nginx_error
451
+ # Format regex
452
+ # Regex ^(?<timestamp>\S+Z) stderr F (?<error_timestamp>\S+ \S+) \[(?<log_level>\S+)\] (?<process_id>\d+#\d+): \*(?<request_id>\d+) (?<error_message>.*?) client: (?<client_ip>\S+), server: (?<server_name>\S+), request: "(?<request_method>\S+) (?<request_path>\S+) HTTP/\S+", upstream: "(?<upstream_url>[^"]+)", host: "(?<host>\S+)"$
453
+ # Time_Key timestamp
454
+ # Time_Format %Y/%m/%d %H:%M:%S
455
+
456
+ # [PARSER]
457
+ # Name nginx_access
458
+ # Format regex
459
+ # Regex (?<remote_addr>[^ ]*) - (?<remote_user>[^ ]*) \[(?<timestamp>[^\]]*)\] "(?<method>\S+)(?: +(?<request>[^\"]*?)(?: +\S*)?)?" (?<status>[^ ]*) (?<body_bytes_sent>[^ ]*) "(?<http_referer>[^\"]*)" "(?<http_user_agent>[^\"]*)" (?<request_length>[^ ]*) (?<request_time>[^ ]*) \[(?<proxy_upstream_name>[^ ]*)\] \[(?<proxy_alternative_upstream_name>[^ ]*)\] (?<upstream_addr>[^,]*),?(?:[^,]*),?(?:[^ ]*) (?<upstream_response_length>[^,]*),?(?:[^,]*),?(?:[^ ]*) (?<upstream_response_time>[^,]*),?(?:[^,]*),?(?:[^ ]*) (?<upstream_status>[^,]*),?(?:[^,]*),?(?:[^ ]*) (?<req_id>[^ ]*)
460
+ # Time_Key timestamp
461
+ # Time_Format %d/%b/%Y:%H:%M:%S %z
462
+
430
463
# The config volume is mounted by default, either to the existingConfigMap value, or the default of "fluent-bit.fullname"
431
464
volumeMounts :
432
465
- name : config
0 commit comments