Skip to content

Commit

Permalink
Openstack and kafka fixes (#1293)
Browse files Browse the repository at this point in the history
* Fix config

* Fix kafka alert template
  • Loading branch information
v-zhuravlev authored Jul 26, 2024
1 parent 6669f0a commit 7a01594
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion kafka-observ-lib/alerts.libsonnet
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
},
annotations: {
summary: 'Kafka lag is too high.',
description: 'Total kafka lag across all partitions is too high ({{ printf "%%.0f" $value }}) for consumer group: {{$labels.consumergroup}}, topic: {{$labels.topic}}.',
description: 'Total kafka lag across all partitions is too high ({{ printf "%.0f" $value }}) for consumer group: {{$labels.consumergroup}}, topic: {{$labels.topic}}.',
},
},
],
Expand Down
4 changes: 2 additions & 2 deletions openstack-mixin/config.libsonnet
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@

alertsWarningPlacementHighMemoryUsage: 80, // %
alertsCriticalPlacementHighMemoryUsage: 90, // %
alertsWarningPlacementHighVcpuUsage: 80, // %
alertsCriticalPlacementHighVcpuUsage: 90, // %
alertsWarningPlacementHighVCPUUsage: 80, // %
alertsCriticalPlacementHighVCPUUsage: 90, // %
alertsWarningNeutronHighIPsUsage: 80, // %
alertsCriticalNeutronHighIPsUsage: 90, // %
alertsWarningNovaHighVMMemoryUsage: 80, // %
Expand Down

0 comments on commit 7a01594

Please sign in to comment.