Skip to content

Commit

Permalink
Merge pull request #2 from kabisa/systems_notification
Browse files Browse the repository at this point in the history
Making the notifications for systems checks variable
  • Loading branch information
obeleh authored May 17, 2021
2 parents e65648c + e876060 commit 8227056
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 1 deletion.
5 changes: 4 additions & 1 deletion main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,10 @@ module "system" {
alert_env = var.alert_env
env = var.env
filter_str = var.filter_str
notification_channel = var.notification_channel

notification_channel = var.system_notification_channel_override == null ? var.notification_channel : var.system_notification_channel_override


service = var.service
bytes_sent_docs = "If you are monitoring Kafka’s bytes in/out metric, you are getting Kafka’s side of the story. To get a full picture of network usage on your host, you need to monitor host-level network throughput, especially if your Kafka brokers are hosting other network services. High network usage could be a symptom of degraded performance—if you are seeing high network use, correlating with TCP retransmissions and dropped packet errors could help in determining if the performance issue is network-related.\nhttps://www.datadoghq.com/blog/monitoring-kafka-performance-metrics"
bytes_received_docs = "If you are monitoring Kafka’s bytes in/out metric, you are getting Kafka’s side of the story. To get a full picture of network usage on your host, you need to monitor host-level network throughput, especially if your Kafka brokers are hosting other network services. High network usage could be a symptom of degraded performance—if you are seeing high network use, correlating with TCP retransmissions and dropped packet errors could help in determining if the performance issue is network-related.\nhttps://www.datadoghq.com/blog/monitoring-kafka-performance-metrics"
Expand Down
5 changes: 5 additions & 0 deletions variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -33,3 +33,8 @@ variable "locked" {
type = bool
default = true
}

variable "system_notification_channel_override" {
type = string
default = null
}

0 comments on commit 8227056

Please sign in to comment.