prometheus.yml.j2 5.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174
  1. rule_files:
  2. - 'prometheus.rules'
  3. {% if openshift_prometheus_additional_rules_file is defined and openshift_prometheus_additional_rules_file is not none %}
  4. - 'prometheus.additional.rules'
  5. {% endif %}
  6. # A scrape configuration for running Prometheus on a Kubernetes cluster.
  7. # This uses separate scrape configs for cluster components (i.e. API server, node)
  8. # and services to allow each to use different authentication configs.
  9. #
  10. # Kubernetes labels will be added as Prometheus labels on metrics via the
  11. # `labelmap` relabeling action.
  12. # Scrape config for API servers.
  13. #
  14. # Kubernetes exposes API servers as endpoints to the default/kubernetes
  15. # service so this uses `endpoints` role and uses relabelling to only keep
  16. # the endpoints associated with the default/kubernetes service using the
  17. # default named port `https`. This works for single API server deployments as
  18. # well as HA API server deployments.
  19. scrape_configs:
  20. - job_name: 'kubernetes-apiservers'
  21. kubernetes_sd_configs:
  22. - role: endpoints
  23. scheme: https
  24. tls_config:
  25. ca_file: /var/run/secrets/kubernetes.io/serviceaccount/ca.crt
  26. bearer_token_file: /var/run/secrets/kubernetes.io/serviceaccount/token
  27. # Keep only the default/kubernetes service endpoints for the https port. This
  28. # will add targets for each API server which Kubernetes adds an endpoint to
  29. # the default/kubernetes service.
  30. relabel_configs:
  31. - source_labels: [__meta_kubernetes_namespace, __meta_kubernetes_service_name, __meta_kubernetes_endpoint_port_name]
  32. action: keep
  33. regex: default;kubernetes;https
  34. # Scrape config for nodes.
  35. #
  36. # Each node exposes a /metrics endpoint that contains operational metrics for
  37. # the Kubelet and other components.
  38. - job_name: 'kubernetes-nodes'
  39. scheme: https
  40. tls_config:
  41. ca_file: /var/run/secrets/kubernetes.io/serviceaccount/ca.crt
  42. bearer_token_file: /var/run/secrets/kubernetes.io/serviceaccount/token
  43. kubernetes_sd_configs:
  44. - role: node
  45. relabel_configs:
  46. - action: labelmap
  47. regex: __meta_kubernetes_node_label_(.+)
  48. # Scrape config for controllers.
  49. #
  50. # Each master node exposes a /metrics endpoint on :8444 that contains operational metrics for
  51. # the controllers.
  52. #
  53. # TODO: move this to a pure endpoints based metrics gatherer when controllers are exposed via
  54. # endpoints.
  55. - job_name: 'kubernetes-controllers'
  56. scheme: https
  57. tls_config:
  58. ca_file: /var/run/secrets/kubernetes.io/serviceaccount/ca.crt
  59. bearer_token_file: /var/run/secrets/kubernetes.io/serviceaccount/token
  60. kubernetes_sd_configs:
  61. - role: endpoints
  62. # Keep only the default/kubernetes service endpoints for the https port, and then
  63. # set the port to 8444. This is the default configuration for the controllers on OpenShift
  64. # masters.
  65. relabel_configs:
  66. - source_labels: [__meta_kubernetes_namespace, __meta_kubernetes_service_name, __meta_kubernetes_endpoint_port_name]
  67. action: keep
  68. regex: default;kubernetes;https
  69. - source_labels: [__address__]
  70. action: replace
  71. target_label: __address__
  72. regex: (.+)(?::\d+)
  73. replacement: $1:8444
  74. # Scrape config for cAdvisor.
  75. #
  76. # Beginning in Kube 1.7, each node exposes a /metrics/cadvisor endpoint that
  77. # reports container metrics for each running pod. Scrape those by default.
  78. - job_name: 'kubernetes-cadvisor'
  79. scheme: https
  80. tls_config:
  81. ca_file: /var/run/secrets/kubernetes.io/serviceaccount/ca.crt
  82. bearer_token_file: /var/run/secrets/kubernetes.io/serviceaccount/token
  83. {% if kubernetes_version | float() >= 1.7 | float() %}
  84. metrics_path: /metrics/cadvisor
  85. {% else %}
  86. metrics_path: /metrics
  87. {% endif %}
  88. kubernetes_sd_configs:
  89. - role: node
  90. relabel_configs:
  91. - action: labelmap
  92. regex: __meta_kubernetes_node_label_(.+)
  93. # Scrape config for service endpoints.
  94. #
  95. # The relabeling allows the actual service scrape endpoint to be configured
  96. # via the following annotations:
  97. #
  98. # * `prometheus.io/scrape`: Only scrape services that have a value of `true`
  99. # * `prometheus.io/scheme`: If the metrics endpoint is secured then you will need
  100. # to set this to `https` & most likely set the `tls_config` of the scrape config.
  101. # * `prometheus.io/path`: If the metrics path is not `/metrics` override this.
  102. # * `prometheus.io/port`: If the metrics are exposed on a different port to the
  103. # service then set this appropriately.
  104. - job_name: 'kubernetes-service-endpoints'
  105. tls_config:
  106. ca_file: /var/run/secrets/kubernetes.io/serviceaccount/ca.crt
  107. # TODO: this should be per target
  108. insecure_skip_verify: true
  109. kubernetes_sd_configs:
  110. - role: endpoints
  111. relabel_configs:
  112. - source_labels: [__meta_kubernetes_service_annotation_prometheus_io_scrape]
  113. action: keep
  114. regex: true
  115. - source_labels: [__meta_kubernetes_service_annotation_prometheus_io_scheme]
  116. action: replace
  117. target_label: __scheme__
  118. regex: (https?)
  119. - source_labels: [__meta_kubernetes_service_annotation_prometheus_io_path]
  120. action: replace
  121. target_label: __metrics_path__
  122. regex: (.+)
  123. - source_labels: [__address__, __meta_kubernetes_service_annotation_prometheus_io_port]
  124. action: replace
  125. target_label: __address__
  126. regex: (.+)(?::\d+);(\d+)
  127. replacement: $1:$2
  128. - source_labels: [__meta_kubernetes_service_annotation_prometheus_io_username]
  129. action: replace
  130. target_label: __basic_auth_username__
  131. regex: (.+)
  132. - source_labels: [__meta_kubernetes_service_annotation_prometheus_io_password]
  133. action: replace
  134. target_label: __basic_auth_password__
  135. regex: (.+)
  136. - action: labelmap
  137. regex: __meta_kubernetes_service_label_(.+)
  138. - source_labels: [__meta_kubernetes_namespace]
  139. action: replace
  140. target_label: kubernetes_namespace
  141. - source_labels: [__meta_kubernetes_service_name]
  142. action: replace
  143. target_label: kubernetes_name
  144. alerting:
  145. alertmanagers:
  146. - scheme: http
  147. static_configs:
  148. - targets:
  149. - "localhost:9093"