-
Notifications
You must be signed in to change notification settings - Fork 0
/
helm-kube-stack-values.yaml
47 lines (45 loc) · 2.05 KB
/
helm-kube-stack-values.yaml
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
prometheus:
prometheusSpec:
## Prefix used to register routes, overriding externalUrl route.
## Useful for proxies that rewrite URLs.
##
# Following was set in an attempt to serve Prometheus from "/prometheus",
# which would allow Prometheus to run from `monitoring-service-gateway.yaml`.
# Unfortunately, the static resources were still served from /
# So I commented it out. Till this is resolved, run Prometheus from
# its own LoadBalanced Service, `prom-ingress`.
#routePrefix: /prometheus
additionalScrapeConfigs:
# Below copied from https://github.com/helm/charts/blob/master/stable/prometheus/values.yaml
# Example scrape config for pods
#
# The relabeling allows the actual pod scrape endpoint to be configured via the
# following annotations:
#
# * `prometheus.io/scrape`: Only scrape pods that have a value of `true`
# * `prometheus.io/path`: If the metrics path is not `/metrics` override this.
# * `prometheus.io/port`: Scrape the pod on the indicated port instead of the default of `9102`.
- job_name: 'kubernetes-pods'
kubernetes_sd_configs:
- role: pod
relabel_configs:
- source_labels: [__meta_kubernetes_pod_annotation_prometheus_io_scrape]
action: keep
regex: true
- source_labels: [__meta_kubernetes_pod_annotation_prometheus_io_path]
action: replace
target_label: __metrics_path__
regex: (.+)
- source_labels: [__address__, __meta_kubernetes_pod_annotation_prometheus_io_port]
action: replace
regex: ([^:]+)(?::\d+)?;(\d+)
replacement: $1:$2
target_label: __address__
- action: labelmap
regex: __meta_kubernetes_pod_label_(.+)
- source_labels: [__meta_kubernetes_namespace]
action: replace
target_label: kubernetes_namespace
- source_labels: [__meta_kubernetes_pod_name]
action: replace
target_label: kubernetes_pod_name