MON-142 auto update
This commit is contained in:
parent
348d112b35
commit
40321c6d6e
@ -16,14 +16,14 @@ module "datadog-monitors-database-mysql" {
|
||||
|
||||
Creates DataDog monitors with the following checks:
|
||||
|
||||
- Mysql server does not respond
|
||||
- Mysql Connections limit
|
||||
- Mysql Aborted connects
|
||||
- Mysql Slow queries
|
||||
- Mysql Connections limit
|
||||
- Mysql Innodb buffer pool efficiency
|
||||
- Mysql Innodb buffer pool utilization
|
||||
- Mysql threads changed abnormally
|
||||
- Mysql queries changed abnormally
|
||||
- Mysql server does not respond
|
||||
- Mysql Slow queries
|
||||
- Mysql threads changed abnormally
|
||||
|
||||
## Inputs
|
||||
|
||||
|
||||
@ -1,39 +1,39 @@
|
||||
output "mysql_availability_id" {
|
||||
description = "id for monitor mysql_availability"
|
||||
value = "${datadog_monitor.mysql_availability.id}"
|
||||
value = "${datadog_monitor.mysql_availability.*.id}"
|
||||
}
|
||||
|
||||
output "mysql_connection_id" {
|
||||
description = "id for monitor mysql_connection"
|
||||
value = "${datadog_monitor.mysql_connection.id}"
|
||||
value = "${datadog_monitor.mysql_connection.*.id}"
|
||||
}
|
||||
|
||||
output "mysql_aborted_id" {
|
||||
description = "id for monitor mysql_aborted"
|
||||
value = "${datadog_monitor.mysql_aborted.id}"
|
||||
value = "${datadog_monitor.mysql_aborted.*.id}"
|
||||
}
|
||||
|
||||
output "mysql_slow_id" {
|
||||
description = "id for monitor mysql_slow"
|
||||
value = "${datadog_monitor.mysql_slow.id}"
|
||||
value = "${datadog_monitor.mysql_slow.*.id}"
|
||||
}
|
||||
|
||||
output "mysql_pool_efficiency_id" {
|
||||
description = "id for monitor mysql_pool_efficiency"
|
||||
value = "${datadog_monitor.mysql_pool_efficiency.id}"
|
||||
value = "${datadog_monitor.mysql_pool_efficiency.*.id}"
|
||||
}
|
||||
|
||||
output "mysql_pool_utilization_id" {
|
||||
description = "id for monitor mysql_pool_utilization"
|
||||
value = "${datadog_monitor.mysql_pool_utilization.id}"
|
||||
value = "${datadog_monitor.mysql_pool_utilization.*.id}"
|
||||
}
|
||||
|
||||
output "mysql_threads_anomaly_id" {
|
||||
description = "id for monitor mysql_threads_anomaly"
|
||||
value = "${datadog_monitor.mysql_threads_anomaly.id}"
|
||||
value = "${datadog_monitor.mysql_threads_anomaly.*.id}"
|
||||
}
|
||||
|
||||
output "mysql_queries_anomaly_id" {
|
||||
description = "id for monitor mysql_queries_anomaly"
|
||||
value = "${datadog_monitor.mysql_queries_anomaly.id}"
|
||||
value = "${datadog_monitor.mysql_queries_anomaly.*.id}"
|
||||
}
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user