-
Notifications
You must be signed in to change notification settings - Fork 480
/
monitoring.go
129 lines (119 loc) · 4.41 KB
/
monitoring.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
// Copyright 2023 SAP SE or an SAP affiliate company. All rights reserved. This file is licensed under the Apache Software License, v. 2 except as noted otherwise in the LICENSE file
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
package blackboxexporter
import (
"strconv"
"strings"
v1beta1constants "github.com/gardener/gardener/pkg/apis/core/v1beta1/constants"
kubeapiserverconstants "github.com/gardener/gardener/pkg/component/kubeapiserver/constants"
)
const (
monitoringPrometheusJobName = "blackbox-exporter-k8s-service-check"
monitoringMetricProbeDurationSeconds = "probe_duration_seconds"
monitoringMetricProbeHttpDurationSeconds = "probe_http_duration_seconds"
monitoringMetricProbeSuccess = "probe_success"
monitoringMetricProbeHttpStatusCode = "probe_http_status_code"
monitoringAlertingRules = `groups:
- name: apiserver-connectivity-check.rules
rules:
- alert: ApiServerUnreachableViaKubernetesService
expr: |
probe_success{job="` + monitoringPrometheusJobName + `"} == 0
or
absent(probe_success{job="blackbox-exporter-k8s-service-check", instance="https://kubernetes.default.svc.cluster.local/healthz"})
for: 15m
labels:
service: apiserver-connectivity-check
severity: critical
type: shoot
visibility: all
annotations:
summary: Api server unreachable via the kubernetes service.
description: The Api server has been unreachable for 15 minutes via the kubernetes service in the shoot.
- record: shoot:availability
expr: probe_success{job="blackbox-exporter-k8s-service-check"} == bool 1
labels:
kind: shoot
- record: shoot:availability
expr: probe_success{job="blackbox-apiserver"} == bool 1
labels:
kind: seed
- record: shoot:availability
expr: probe_success{job="tunnel-probe-apiserver-proxy"} == bool 1
labels:
kind: vpn
`
)
var (
monitoringAllowedMetrics = []string{
monitoringMetricProbeDurationSeconds,
monitoringMetricProbeHttpDurationSeconds,
monitoringMetricProbeSuccess,
monitoringMetricProbeHttpStatusCode,
}
monitoringScrapeConfig = `job_name: ` + monitoringPrometheusJobName + `
honor_labels: false
scheme: https
params:
module:
- http_kubernetes_service
target:
- https://kubernetes.default.svc.cluster.local/healthz
metrics_path: /probe
tls_config:
ca_file: /etc/prometheus/seed/ca.crt
authorization:
type: Bearer
credentials_file: /var/run/secrets/gardener.cloud/shoot/token/token
follow_redirects: false
kubernetes_sd_configs:
- role: service
namespaces:
names: [ kube-system ]
api_server: https://` + v1beta1constants.DeploymentNameKubeAPIServer + `:` + strconv.Itoa(kubeapiserverconstants.Port) + `
tls_config:
ca_file: /etc/prometheus/seed/ca.crt
authorization:
type: Bearer
credentials_file: /var/run/secrets/gardener.cloud/shoot/token/token
relabel_configs:
- target_label: type
replacement: shoot
- source_labels:
- __meta_kubernetes_service_name
action: keep
regex: blackbox-exporter
- target_label: __address__
replacement: ` + v1beta1constants.DeploymentNameKubeAPIServer + `:` + strconv.Itoa(kubeapiserverconstants.Port) + `
- source_labels: [__meta_kubernetes_service_name]
regex: (.+)
target_label: __metrics_path__
replacement: /api/v1/namespaces/kube-system/services/${1}:probe/proxy/probe
- source_labels: [ __param_target ]
target_label: instance
action: replace
metric_relabel_configs:
- source_labels: [ __name__ ]
action: keep
regex: ^(` + strings.Join(monitoringAllowedMetrics, "|") + `)$
`
)
// ScrapeConfigs returns the scrape configurations for blackbox-exporter.
func (b *blackboxExporter) ScrapeConfigs() ([]string, error) {
return []string{monitoringScrapeConfig}, nil
}
// AlertingRules returns the alerting rules for AlertManager.
func (b *blackboxExporter) AlertingRules() (map[string]string, error) {
return map[string]string{"apiserver-connectivity-check.rules.yaml": monitoringAlertingRules}, nil
}