Configuring Prometheus with Prometheus Operator: Difference between revisions
Jump to navigation
Jump to search
Line 29: | Line 29: | ||
function: pushgateway | function: pushgateway | ||
EOF | EOF | ||
</syntaxhighlight> | |||
The ServiceMonitor resource must carry a label that will identify it to the Prometheus custom resource by matching the Prometheus resource "serviceMonitorSelector": | |||
<syntaxhighlight lang='yaml'> | |||
apiVersion: monitoring.coreos.com/v1 | |||
kind: Prometheus | |||
... | |||
spec: | |||
serviceMonitorSelector: | |||
matchLabels: | |||
release: prometheus | |||
</syntaxhighlight> | </syntaxhighlight> |
Revision as of 22:07, 14 October 2020
External
- https://coreos.com/operators/prometheus/docs/0.17.0/index.html
- https://github.com/prometheus-operator/prometheus-operator
Internal
Overview
Add a Target
To add a monitoring target, deploy a ServiceMonitor custom resource:
namespace="prometheus"
cat <<EOF | kubectl -n ${namespace} apply -f -
apiVersion: monitoring.coreos.com/v1
kind: ServiceMonitor
metadata:
name: pushgateway-example
namespace: ${namespace}
labels:
release: prometheus
spec:
endpoints:
- path: /metrics
port: "9091"
namespaceSelector:
matchNames:
- ${namespace}
selector:
matchLabels:
function: pushgateway
EOF
The ServiceMonitor resource must carry a label that will identify it to the Prometheus custom resource by matching the Prometheus resource "serviceMonitorSelector":
apiVersion: monitoring.coreos.com/v1
kind: Prometheus
...
spec:
serviceMonitorSelector:
matchLabels:
release: prometheus