2015-09-29 08:38:58 +00:00
|
|
|
# A scrape configuration for running Prometheus on a Kubernetes cluster.
|
2015-10-24 13:41:14 +00:00
|
|
|
# This uses separate scrape configs for cluster components (i.e. API server, node)
|
2015-09-29 08:38:58 +00:00
|
|
|
# and services to allow each to use different authentication configs.
|
|
|
|
#
|
|
|
|
# Kubernetes labels will be added as Prometheus labels on metrics via the
|
|
|
|
# `labelmap` relabeling action.
|
2015-07-18 21:23:58 +00:00
|
|
|
|
2016-11-02 15:06:20 +00:00
|
|
|
# Scrape config for API servers.
|
2016-11-10 09:46:36 +00:00
|
|
|
#
|
|
|
|
# Kubernetes exposes API servers as endpoints to the default/kubernetes
|
|
|
|
# service so this uses `endpoints` role and uses relabelling to only keep
|
|
|
|
# the endpoints associated with the default/kubernetes service using the
|
|
|
|
# default named port `https`. This works for single API server deployments as
|
|
|
|
# well as HA API server deployments.
|
2015-07-18 21:23:58 +00:00
|
|
|
scrape_configs:
|
2016-11-02 15:06:20 +00:00
|
|
|
- job_name: 'kubernetes-apiservers'
|
2015-09-29 08:38:58 +00:00
|
|
|
|
2016-11-10 09:46:36 +00:00
|
|
|
kubernetes_sd_configs:
|
|
|
|
- role: endpoints
|
|
|
|
|
2016-06-27 13:38:51 +00:00
|
|
|
# Default to scraping over https. If required, just disable this or change to
|
|
|
|
# `http`.
|
|
|
|
scheme: https
|
|
|
|
|
2015-09-29 08:38:58 +00:00
|
|
|
# This TLS & bearer token file config is used to connect to the actual scrape
|
|
|
|
# endpoints for cluster components. This is separate to discovery auth
|
2016-11-29 17:42:35 +00:00
|
|
|
# configuration because discovery & scraping are two separate concerns in
|
|
|
|
# Prometheus. The discovery auth config is automatic if Prometheus runs inside
|
|
|
|
# the cluster. Otherwise, more config options have to be provided within the
|
|
|
|
# <kubernetes_sd_config>.
|
2015-09-29 08:38:58 +00:00
|
|
|
tls_config:
|
|
|
|
ca_file: /var/run/secrets/kubernetes.io/serviceaccount/ca.crt
|
2016-06-27 13:38:51 +00:00
|
|
|
# If your node certificates are self-signed or use a different CA to the
|
|
|
|
# master CA, then disable certificate verification below. Note that
|
|
|
|
# certificate verification is an integral part of a secure infrastructure
|
|
|
|
# so this should only be disabled in a controlled environment. You can
|
|
|
|
# disable certificate verification by uncommenting the line below.
|
|
|
|
#
|
|
|
|
# insecure_skip_verify: true
|
2015-09-29 08:38:58 +00:00
|
|
|
bearer_token_file: /var/run/secrets/kubernetes.io/serviceaccount/token
|
|
|
|
|
2016-11-02 20:48:01 +00:00
|
|
|
# Keep only the default/kubernetes service endpoints for the https port. This
|
|
|
|
# will add targets for each API server which Kubernetes adds an endpoint to
|
|
|
|
# the default/kubernetes service.
|
|
|
|
relabel_configs:
|
|
|
|
- source_labels: [__meta_kubernetes_namespace, __meta_kubernetes_service_name, __meta_kubernetes_endpoint_port_name]
|
|
|
|
action: keep
|
|
|
|
regex: default;kubernetes;https
|
2015-09-29 08:38:58 +00:00
|
|
|
|
2016-07-21 13:45:42 +00:00
|
|
|
- job_name: 'kubernetes-nodes'
|
|
|
|
|
|
|
|
# Default to scraping over https. If required, just disable this or change to
|
|
|
|
# `http`.
|
|
|
|
scheme: https
|
|
|
|
|
|
|
|
# This TLS & bearer token file config is used to connect to the actual scrape
|
|
|
|
# endpoints for cluster components. This is separate to discovery auth
|
2016-11-29 17:42:35 +00:00
|
|
|
# configuration because discovery & scraping are two separate concerns in
|
|
|
|
# Prometheus. The discovery auth config is automatic if Prometheus runs inside
|
|
|
|
# the cluster. Otherwise, more config options have to be provided within the
|
|
|
|
# <kubernetes_sd_config>.
|
2016-07-21 13:45:42 +00:00
|
|
|
tls_config:
|
|
|
|
ca_file: /var/run/secrets/kubernetes.io/serviceaccount/ca.crt
|
|
|
|
# If your node certificates are self-signed or use a different CA to the
|
|
|
|
# master CA, then disable certificate verification below. Note that
|
|
|
|
# certificate verification is an integral part of a secure infrastructure
|
|
|
|
# so this should only be disabled in a controlled environment. You can
|
|
|
|
# disable certificate verification by uncommenting the line below.
|
|
|
|
#
|
|
|
|
# insecure_skip_verify: true
|
|
|
|
bearer_token_file: /var/run/secrets/kubernetes.io/serviceaccount/token
|
|
|
|
|
|
|
|
kubernetes_sd_configs:
|
2016-11-02 15:06:20 +00:00
|
|
|
- role: node
|
2016-07-21 13:45:42 +00:00
|
|
|
|
2015-09-29 08:38:58 +00:00
|
|
|
relabel_configs:
|
|
|
|
- action: labelmap
|
2015-10-24 18:29:58 +00:00
|
|
|
regex: __meta_kubernetes_node_label_(.+)
|
2017-05-09 11:57:49 +00:00
|
|
|
- target_label: __address__
|
|
|
|
replacement: kubernetes.default.svc:443
|
|
|
|
- source_labels: [__meta_kubernetes_node_name]
|
|
|
|
regex: (.+)
|
|
|
|
target_label: __metrics_path__
|
|
|
|
replacement: /api/v1/nodes/${1}/proxy/metrics
|
2015-09-29 08:38:58 +00:00
|
|
|
|
2015-11-16 14:18:18 +00:00
|
|
|
# Scrape config for service endpoints.
|
2015-09-29 08:38:58 +00:00
|
|
|
#
|
|
|
|
# The relabeling allows the actual service scrape endpoint to be configured
|
|
|
|
# via the following annotations:
|
|
|
|
#
|
|
|
|
# * `prometheus.io/scrape`: Only scrape services that have a value of `true`
|
|
|
|
# * `prometheus.io/scheme`: If the metrics endpoint is secured then you will need
|
|
|
|
# to set this to `https` & most likely set the `tls_config` of the scrape config.
|
|
|
|
# * `prometheus.io/path`: If the metrics path is not `/metrics` override this.
|
|
|
|
# * `prometheus.io/port`: If the metrics are exposed on a different port to the
|
|
|
|
# service then set this appropriately.
|
2015-11-16 14:18:18 +00:00
|
|
|
- job_name: 'kubernetes-service-endpoints'
|
2015-07-18 21:23:58 +00:00
|
|
|
|
|
|
|
kubernetes_sd_configs:
|
2016-11-02 15:06:20 +00:00
|
|
|
- role: endpoints
|
2015-07-18 21:23:58 +00:00
|
|
|
|
|
|
|
relabel_configs:
|
2016-07-21 13:46:14 +00:00
|
|
|
- source_labels: [__meta_kubernetes_service_annotation_prometheus_io_scrape]
|
2015-07-18 21:23:58 +00:00
|
|
|
action: keep
|
2016-07-21 13:46:14 +00:00
|
|
|
regex: true
|
2015-07-18 21:23:58 +00:00
|
|
|
- source_labels: [__meta_kubernetes_service_annotation_prometheus_io_scheme]
|
|
|
|
action: replace
|
|
|
|
target_label: __scheme__
|
2015-10-24 18:29:58 +00:00
|
|
|
regex: (https?)
|
2015-07-18 21:23:58 +00:00
|
|
|
- source_labels: [__meta_kubernetes_service_annotation_prometheus_io_path]
|
|
|
|
action: replace
|
|
|
|
target_label: __metrics_path__
|
2016-01-12 21:06:15 +00:00
|
|
|
regex: (.+)
|
2015-07-18 21:23:58 +00:00
|
|
|
- source_labels: [__address__, __meta_kubernetes_service_annotation_prometheus_io_port]
|
|
|
|
action: replace
|
|
|
|
target_label: __address__
|
2017-02-16 19:46:04 +00:00
|
|
|
regex: ([^:]+)(?::\d+)?;(\d+)
|
2015-07-18 21:23:58 +00:00
|
|
|
replacement: $1:$2
|
2015-09-29 07:59:35 +00:00
|
|
|
- action: labelmap
|
2015-10-24 18:29:58 +00:00
|
|
|
regex: __meta_kubernetes_service_label_(.+)
|
2016-11-29 17:42:35 +00:00
|
|
|
- source_labels: [__meta_kubernetes_namespace]
|
2015-09-29 11:55:08 +00:00
|
|
|
action: replace
|
|
|
|
target_label: kubernetes_namespace
|
|
|
|
- source_labels: [__meta_kubernetes_service_name]
|
|
|
|
action: replace
|
|
|
|
target_label: kubernetes_name
|
2015-11-16 14:18:18 +00:00
|
|
|
|
|
|
|
# Example scrape config for probing services via the Blackbox Exporter.
|
|
|
|
#
|
|
|
|
# The relabeling allows the actual service scrape endpoint to be configured
|
|
|
|
# via the following annotations:
|
|
|
|
#
|
|
|
|
# * `prometheus.io/probe`: Only probe services that have a value of `true`
|
|
|
|
- job_name: 'kubernetes-services'
|
|
|
|
|
|
|
|
metrics_path: /probe
|
|
|
|
params:
|
|
|
|
module: [http_2xx]
|
|
|
|
|
|
|
|
kubernetes_sd_configs:
|
2016-11-02 15:06:20 +00:00
|
|
|
- role: service
|
2015-11-16 14:18:18 +00:00
|
|
|
|
|
|
|
relabel_configs:
|
2016-07-21 13:46:14 +00:00
|
|
|
- source_labels: [__meta_kubernetes_service_annotation_prometheus_io_probe]
|
2015-11-16 14:18:18 +00:00
|
|
|
action: keep
|
2016-07-21 13:46:14 +00:00
|
|
|
regex: true
|
2015-11-16 14:18:18 +00:00
|
|
|
- source_labels: [__address__]
|
|
|
|
target_label: __param_target
|
2015-12-08 10:29:40 +00:00
|
|
|
- target_label: __address__
|
|
|
|
replacement: blackbox
|
2015-11-16 14:18:18 +00:00
|
|
|
- source_labels: [__param_target]
|
|
|
|
target_label: instance
|
|
|
|
- action: labelmap
|
|
|
|
regex: __meta_kubernetes_service_label_(.+)
|
2017-02-06 21:28:12 +00:00
|
|
|
- source_labels: [__meta_kubernetes_namespace]
|
2015-11-16 14:18:18 +00:00
|
|
|
target_label: kubernetes_namespace
|
|
|
|
- source_labels: [__meta_kubernetes_service_name]
|
|
|
|
target_label: kubernetes_name
|
2016-05-19 00:18:52 +00:00
|
|
|
|
|
|
|
# Example scrape config for pods
|
|
|
|
#
|
2016-07-21 13:46:14 +00:00
|
|
|
# The relabeling allows the actual pod scrape endpoint to be configured via the
|
2016-05-19 00:18:52 +00:00
|
|
|
# following annotations:
|
|
|
|
#
|
|
|
|
# * `prometheus.io/scrape`: Only scrape pods that have a value of `true`
|
2016-07-27 13:13:53 +00:00
|
|
|
# * `prometheus.io/path`: If the metrics path is not `/metrics` override this.
|
2017-05-01 22:50:14 +00:00
|
|
|
# * `prometheus.io/port`: Scrape the pod on the indicated port instead of the
|
|
|
|
# pod's declared ports (default is a port-free target if none are declared).
|
2016-05-19 00:18:52 +00:00
|
|
|
- job_name: 'kubernetes-pods'
|
|
|
|
|
|
|
|
kubernetes_sd_configs:
|
2016-11-02 15:06:20 +00:00
|
|
|
- role: pod
|
2016-05-19 00:18:52 +00:00
|
|
|
|
|
|
|
relabel_configs:
|
2016-07-21 13:46:14 +00:00
|
|
|
- source_labels: [__meta_kubernetes_pod_annotation_prometheus_io_scrape]
|
2016-05-19 00:18:52 +00:00
|
|
|
action: keep
|
2016-07-21 13:46:14 +00:00
|
|
|
regex: true
|
2016-07-27 13:13:53 +00:00
|
|
|
- source_labels: [__meta_kubernetes_pod_annotation_prometheus_io_path]
|
|
|
|
action: replace
|
|
|
|
target_label: __metrics_path__
|
|
|
|
regex: (.+)
|
2016-05-19 00:18:52 +00:00
|
|
|
- source_labels: [__address__, __meta_kubernetes_pod_annotation_prometheus_io_port]
|
|
|
|
action: replace
|
2017-02-16 19:46:04 +00:00
|
|
|
regex: ([^:]+)(?::\d+)?;(\d+)
|
2017-02-15 01:12:38 +00:00
|
|
|
replacement: $1:$2
|
2016-05-19 00:18:52 +00:00
|
|
|
target_label: __address__
|
|
|
|
- action: labelmap
|
|
|
|
regex: __meta_kubernetes_pod_label_(.+)
|
2016-11-29 17:42:35 +00:00
|
|
|
- source_labels: [__meta_kubernetes_namespace]
|
2016-05-19 00:18:52 +00:00
|
|
|
action: replace
|
|
|
|
target_label: kubernetes_namespace
|
|
|
|
- source_labels: [__meta_kubernetes_pod_name]
|
|
|
|
action: replace
|
|
|
|
target_label: kubernetes_pod_name
|