38 lines
688 B
YAML
38 lines
688 B
YAML
apiVersion: monitoring.coreos.com/v1
|
|
kind: ServiceMonitor
|
|
metadata:
|
|
name: tempo
|
|
namespace: tracing
|
|
labels:
|
|
release: prometheus
|
|
spec:
|
|
selector:
|
|
matchLabels:
|
|
app.kubernetes.io/name: tempo
|
|
namespaceSelector:
|
|
matchNames:
|
|
- tracing
|
|
endpoints:
|
|
- port: http
|
|
path: /metrics
|
|
interval: 30s
|
|
---
|
|
apiVersion: monitoring.coreos.com/v1
|
|
kind: ServiceMonitor
|
|
metadata:
|
|
name: otel-collector
|
|
namespace: tracing
|
|
labels:
|
|
release: prometheus
|
|
spec:
|
|
selector:
|
|
matchLabels:
|
|
app.kubernetes.io/name: otel-collector
|
|
namespaceSelector:
|
|
matchNames:
|
|
- tracing
|
|
endpoints:
|
|
- port: health
|
|
path: /metrics
|
|
interval: 30s
|