prometheus-operator: Fix node exporter formatting
This commit is contained in:
		| @@ -1,3 +1,4 @@ | |||||||
|  | --- | ||||||
| apiVersion: monitoring.coreos.com/v1 | apiVersion: monitoring.coreos.com/v1 | ||||||
| kind: Probe | kind: Probe | ||||||
| metadata: | metadata: | ||||||
| @@ -243,7 +244,7 @@ spec: | |||||||
|             severity: info |             severity: info | ||||||
|           annotations: |           annotations: | ||||||
|             summary: Host EDAC Correctable Errors detected (instance {{ $labels.instance }}) |             summary: Host EDAC Correctable Errors detected (instance {{ $labels.instance }}) | ||||||
|         description: {{ $labels.instance }} has had {{ printf "%.0f" $value }} correctable memory errors reported by EDAC in the last 5 minutes. |             description: "Host {{ $labels.instance }} has had {{ printf \"%.0f\" $value }} correctable memory errors reported by EDAC in the last 5 minutes.\n  VALUE = {{ $value }}\n  LABELS = {{ $labels }}" | ||||||
|         - alert: HostEdacUncorrectableErrorsDetected |         - alert: HostEdacUncorrectableErrorsDetected | ||||||
|           expr: node_edac_uncorrectable_errors_total > 0 |           expr: node_edac_uncorrectable_errors_total > 0 | ||||||
|           for: 0m |           for: 0m | ||||||
| @@ -251,7 +252,7 @@ spec: | |||||||
|             severity: warning |             severity: warning | ||||||
|           annotations: |           annotations: | ||||||
|             summary: Host EDAC Uncorrectable Errors detected (instance {{ $labels.instance }}) |             summary: Host EDAC Uncorrectable Errors detected (instance {{ $labels.instance }}) | ||||||
|         description: {{ $labels.instance }} has had {{ printf "%.0f" $value }} uncorrectable memory errors reported by EDAC in the last 5 minutes. |             description: "Host {{ $labels.instance }} has had {{ printf \"%.0f\" $value }} uncorrectable memory errors reported by EDAC in the last 5 minutes.\n  VALUE = {{ $value }}\n  LABELS = {{ $labels }}" | ||||||
|         - alert: HostNetworkReceiveErrors |         - alert: HostNetworkReceiveErrors | ||||||
|           expr: rate(node_network_receive_errs_total[2m]) / rate(node_network_receive_packets_total[2m]) > 0.01 |           expr: rate(node_network_receive_errs_total[2m]) / rate(node_network_receive_packets_total[2m]) > 0.01 | ||||||
|           for: 2m |           for: 2m | ||||||
| @@ -259,7 +260,7 @@ spec: | |||||||
|             severity: warning |             severity: warning | ||||||
|           annotations: |           annotations: | ||||||
|             summary: Host Network Receive Errors (instance {{ $labels.instance }}) |             summary: Host Network Receive Errors (instance {{ $labels.instance }}) | ||||||
|         description: {{ $labels.instance }} interface {{ $labels.device }} has encountered {{ printf "%.0f" $value }} receive errors in the last five minutes. |             description: "Host {{ $labels.instance }} interface {{ $labels.device }} has encountered {{ printf \"%.0f\" $value }} receive errors in the last two minutes.\n  VALUE = {{ $value }}\n  LABELS = {{ $labels }}" | ||||||
|         - alert: HostNetworkTransmitErrors |         - alert: HostNetworkTransmitErrors | ||||||
|           expr: rate(node_network_transmit_errs_total[2m]) / rate(node_network_transmit_packets_total[2m]) > 0.01 |           expr: rate(node_network_transmit_errs_total[2m]) / rate(node_network_transmit_packets_total[2m]) > 0.01 | ||||||
|           for: 2m |           for: 2m | ||||||
| @@ -267,7 +268,7 @@ spec: | |||||||
|             severity: warning |             severity: warning | ||||||
|           annotations: |           annotations: | ||||||
|             summary: Host Network Transmit Errors (instance {{ $labels.instance }}) |             summary: Host Network Transmit Errors (instance {{ $labels.instance }}) | ||||||
|         description: {{ $labels.instance }} interface {{ $labels.device }} has encountered {{ printf "%.0f" $value }} transmit errors in the last five minutes. |             description: "Host {{ $labels.instance }} interface {{ $labels.device }} has encountered {{ printf \"%.0f\" $value }} transmit errors in the last two minutes.\n  VALUE = {{ $value }}\n  LABELS = {{ $labels }}" | ||||||
|         - alert: HostNetworkInterfaceSaturated |         - alert: HostNetworkInterfaceSaturated | ||||||
|           expr: (rate(node_network_receive_bytes_total{device!~"^tap.*"}[1m]) + rate(node_network_transmit_bytes_total{device!~"^tap.*"}[1m])) / node_network_speed_bytes{device!~"^tap.*"} > 0.8 |           expr: (rate(node_network_receive_bytes_total{device!~"^tap.*"}[1m]) + rate(node_network_transmit_bytes_total{device!~"^tap.*"}[1m])) / node_network_speed_bytes{device!~"^tap.*"} > 0.8 | ||||||
|           for: 1m |           for: 1m | ||||||
| @@ -275,7 +276,7 @@ spec: | |||||||
|             severity: warning |             severity: warning | ||||||
|           annotations: |           annotations: | ||||||
|             summary: Host Network Interface Saturated (instance {{ $labels.instance }}) |             summary: Host Network Interface Saturated (instance {{ $labels.instance }}) | ||||||
|         description: The network interface "{{ $labels.interface }}" on "{{ $labels.instance }}" is getting overloaded. |             description: "The network interface {{ $labels.interface }} on {{ $labels.instance }} is getting overloaded." | ||||||
|         - alert: HostNetworkBondDegraded |         - alert: HostNetworkBondDegraded | ||||||
|           expr: node_bonding_active != node_bonding_slaves {master=~"bond.*"} |           expr: node_bonding_active != node_bonding_slaves {master=~"bond.*"} | ||||||
|           for: 2m |           for: 2m | ||||||
|   | |||||||
		Reference in New Issue
	
	Block a user