generated from kabisa/terraform-module-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
active-connections-low.tf
37 lines (32 loc) · 1.46 KB
/
active-connections-low.tf
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
locals {
active_connections_low_filter = coalesce(
var.active_connections_low_filter_override,
var.filter_str
)
}
module "active_connections_low" {
source = "kabisa/generic-monitor/datadog"
version = "1.0.0"
name = "Active Connections Low"
query = "avg(${var.active_connections_low_evaluation_period}):sum:kong.connections_active{${local.active_connections_low_filter}} by {cluster_name} < ${var.active_connections_low_critical}"
# alert specific configuration
require_full_window = false
alert_message = "Active connections is low ({{ value }}) in {{ service }} is lower than {{ threshold }}"
recovery_message = "Active connections ({{ value }}) in {{ service }} has recovered"
# monitor level vars
enabled = var.active_connections_low_enabled
alerting_enabled = var.active_connections_low_alerting_enabled
warning_threshold = var.active_connections_low_warning
critical_threshold = var.active_connections_low_critical
priority = min(var.active_connections_low_priority + var.priority_offset, 5)
docs = var.active_connections_low_docs
note = var.active_connections_low_note
# module level vars
env = var.env
service = var.service
notification_channel = var.notification_channel
additional_tags = var.additional_tags
locked = var.locked
name_prefix = var.name_prefix
name_suffix = var.name_suffix
}