File tree Expand file tree Collapse file tree 2 files changed +19
-19
lines changed Expand file tree Collapse file tree 2 files changed +19
-19
lines changed Original file line number Diff line number Diff line change @@ -4,7 +4,10 @@ kind: ServiceMonitor
4
4
metadata :
5
5
name : {{ include "parseable.fullname" . }}
6
6
namespace : {{ default .Release.Namespace .Values.parseable.metrics.serviceMonitor.namespace | quote }}
7
- labels :
7
+ labels :
8
+ {{- with .Values.parseable.metrics.serviceMonitor.labels }}
9
+ {{- toYaml . | nindent 4 }}
10
+ {{- end }}
8
11
{{- include "parseable.labels" . | nindent 4 }}
9
12
spec :
10
13
{{ if .Values.parseable.metrics.serviceMonitor.spec.jobLabel }}
Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ parseable:
3
3
repository : containers.parseable.com/parseable/parseable
4
4
tag : v1.6.3
5
5
pullPolicy : Always
6
- # # object store can be local, s3 or blob.
6
+ # # object store can be local-store , s3-store or blob-store .
7
7
# # local needs to be false if set to object store.
8
8
store : local-store
9
9
# # Set to true if you want to deploy Parseable in a HA mode (multiple ingestors)
@@ -192,6 +192,7 @@ parseable:
192
192
metrics :
193
193
serviceMonitor :
194
194
enabled : false
195
+ labels : {}
195
196
namespace : " "
196
197
spec :
197
198
jobLabel : " "
@@ -300,7 +301,7 @@ fluent-bit:
300
301
replicaCount : 1
301
302
image :
302
303
repository : parseable/fluent-bit
303
- tag : " v1 "
304
+ tag : " v2 "
304
305
pullPolicy : Always
305
306
testFramework :
306
307
enabled : true
@@ -382,25 +383,21 @@ fluent-bit:
382
383
[OUTPUT]
383
384
Name parseable
384
385
Match kube.*
385
- P_Server parseable.parseable.svc.cluster.local
386
- P_Port 80
387
- P_Username admin
388
- P_Password admin
389
- P_Stream $NAMESPACE
386
+ Server_Host parseable.parseable.svc.cluster.local
387
+ Username admin
388
+ Password admin
389
+ Server_Port 80
390
+ Stream $NAMESPACE
391
+ Exclude_Namespaces kube-system, default
390
392
391
393
[OUTPUT]
392
- Name http
394
+ Name parseable
393
395
Match k8s_events
394
- host parseable.parseable.svc.cluster.local
395
- http_User admin
396
- http_Passwd admin
397
- format json
398
- port 80
399
- header Content-Type application/json
400
- header X-P-Stream k8s-events
401
- uri /api/v1/ingest
402
- json_date_key timestamp
403
- json_date_format iso8601
396
+ Server_Host parseable.parseable.svc.cluster.local
397
+ Server_Port 80
398
+ Username admin
399
+ Password admin
400
+ Stream k8s-events
404
401
405
402
upstream : {}
406
403
You can’t perform that action at this time.
0 commit comments