blob: c939af4b48bd0c96519d5fef3f5eb84d5cd5713e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
|
## Deploy a Prometheus instance
##
prometheus:
serviceAccount:
create: true
name: ""
additionalServiceMonitors:
- name: service-monitor-collectd
additionalLabels:
collector: collectd
jobLabel: collectd
selector:
matchLabels:
app: collectd
endpoints:
- port: collectd-prometheus
interval: 10s
path: /metrics
- name: service-monitor-node-exporter
additionalLabels:
collector: prometheus-node-exporter
jobLabel: node-exporter
selector:
matchLabels:
app: prometheus-node-exporter
endpoints:
- port: metrics
interval: 30s
- name: service-monitor-cadvisor
additionalLabels:
collector: cadvisor
jobLabel: cadvisor
selector:
matchLabels:
app: cadvisor
endpoints:
- port: cadvisor-prometheus
interval: 10s
path: /metrics
resources: {}
service:
type: ClusterIP
annotations: {}
labels: {}
clusterIP: ""
## To be used with a proxy extraContainer port
targetPort: 9090
## List of IP addresses at which the Prometheus server service is available
## Ref: https://kubernetes.io/docs/user-guide/services/#external-ips
##
externalIPs: []
## Port to expose on each node
## Only used if service.type is 'NodePort'
##
# nodePort: 90
## Loadbalancer IP
## Only use if service.type is "loadbalancer"
loadBalancerIP: ""
loadBalancerSourceRanges: []
## Service type
##
#type: NodePort
sessionAffinity: ""
m3db:
url: http://m3coordinator-m3db.m3db-operator.svc.cluster.local:7201
kafkaAdapter:
image:
repository: telefonica/prometheus-kafka-adapter
tag: 1.2.0
pullPolicy: IfNotPresent
url: http://localhost:8080
port: 8080
broker: my-cluster-kafka-bootstrap.msg.svc.cluster.local:9092
topic: orders
serializationFormat: json
logLevel: debug
resources: {}
|