mirror of
https://github.com/carlosedp/cluster-monitoring.git
synced 2024-11-20 19:07:17 +01:00
46 lines
1.0 KiB
Plaintext
46 lines
1.0 KiB
Plaintext
local k = import 'ksonnet/ksonnet.beta.3/k.libsonnet';
|
|
|
|
{
|
|
_config+:: {
|
|
namespace: 'monitoring',
|
|
// Add custom dashboards
|
|
grafanaDashboards+:: {
|
|
'traefik-dashboard.json': (import 'grafana-dashboards/traefik-dashboard.json'),
|
|
},
|
|
},
|
|
|
|
traefik+:: {
|
|
serviceMonitor:
|
|
{
|
|
apiVersion: 'monitoring.coreos.com/v1',
|
|
kind: 'ServiceMonitor',
|
|
metadata: {
|
|
name: 'traefik-ingress-lb',
|
|
namespace: $._config.namespace,
|
|
labels: {
|
|
'k8s-app': 'traefik-ingress-lb',
|
|
},
|
|
},
|
|
spec: {
|
|
jobLabel: 'k8s-app',
|
|
selector: {
|
|
matchLabels: {
|
|
'k8s-app': 'traefik-ingress-lb',
|
|
},
|
|
},
|
|
endpoints: [
|
|
{
|
|
port: 'admin',
|
|
scheme: 'http',
|
|
interval: '30s',
|
|
},
|
|
],
|
|
namespaceSelector: {
|
|
matchNames: [
|
|
'kube-system',
|
|
]
|
|
},
|
|
},
|
|
},
|
|
},
|
|
} |