1
0
mirror of https://github.com/lensapp/lens.git synced 2025-05-20 05:10:56 +00:00
lens/jsonnet/lens/custom-prometheus.jsonnet
tehho 72e1915ef4
Update jsonnet folder structure to default bundler format (#536)
Signed-off-by: Andreas Antonsson <Andreas.Antonsson@collectorbank.se>
2021-03-23 08:12:40 -04:00

49 lines
1.2 KiB
Plaintext

{
// Add Lens metric relabelings for custom prometheus instances installed with kube-prometheus
// https://github.com/lensapp/lens/blob/master/troubleshooting/custom-prometheus.md
nodeExporter+:: {
serviceMonitor+: {
spec+: {
endpoints: std.map(function(endpoint)
if endpoint.port == "https" then
endpoint {
relabelings+: [
{
action: 'replace',
regex: '(.*)',
replacement: '$1',
sourceLabels: ['__meta_kubernetes_pod_node_name'],
targetLabel: 'kubernetes_node',
}
],
}
else
endpoint,
super.endpoints
),
},
},
},
prometheus+:: {
serviceMonitorKubelet+: {
spec+: {
endpoints: std.map(function(endpoint)
if endpoint.port == "https-metrics" then
endpoint {
metricRelabelings+: [
{
action: 'replace',
sourceLabels: ['node'],
targetLabel: 'instance',
},
],
}
else
endpoint,
super.endpoints
),
},
},
},
}