Merged in MON-142_auto_update (pull request #144)
MON-142 auto update Approved-by: Quentin Manfroi <quentin.manfroi@yahoo.fr>
This commit is contained in:
commit
9d42d53494
@ -16,14 +16,14 @@ module "datadog-monitors-database-mysql" {
|
|||||||
|
|
||||||
Creates DataDog monitors with the following checks:
|
Creates DataDog monitors with the following checks:
|
||||||
|
|
||||||
- Mysql server does not respond
|
|
||||||
- Mysql Connections limit
|
|
||||||
- Mysql Aborted connects
|
- Mysql Aborted connects
|
||||||
- Mysql Slow queries
|
- Mysql Connections limit
|
||||||
- Mysql Innodb buffer pool efficiency
|
- Mysql Innodb buffer pool efficiency
|
||||||
- Mysql Innodb buffer pool utilization
|
- Mysql Innodb buffer pool utilization
|
||||||
- Mysql threads changed abnormally
|
|
||||||
- Mysql queries changed abnormally
|
- Mysql queries changed abnormally
|
||||||
|
- Mysql server does not respond
|
||||||
|
- Mysql Slow queries
|
||||||
|
- Mysql threads changed abnormally
|
||||||
|
|
||||||
## Inputs
|
## Inputs
|
||||||
|
|
||||||
|
|||||||
@ -1,39 +1,39 @@
|
|||||||
output "mysql_availability_id" {
|
output "mysql_availability_id" {
|
||||||
description = "id for monitor mysql_availability"
|
description = "id for monitor mysql_availability"
|
||||||
value = "${datadog_monitor.mysql_availability.id}"
|
value = "${datadog_monitor.mysql_availability.*.id}"
|
||||||
}
|
}
|
||||||
|
|
||||||
output "mysql_connection_id" {
|
output "mysql_connection_id" {
|
||||||
description = "id for monitor mysql_connection"
|
description = "id for monitor mysql_connection"
|
||||||
value = "${datadog_monitor.mysql_connection.id}"
|
value = "${datadog_monitor.mysql_connection.*.id}"
|
||||||
}
|
}
|
||||||
|
|
||||||
output "mysql_aborted_id" {
|
output "mysql_aborted_id" {
|
||||||
description = "id for monitor mysql_aborted"
|
description = "id for monitor mysql_aborted"
|
||||||
value = "${datadog_monitor.mysql_aborted.id}"
|
value = "${datadog_monitor.mysql_aborted.*.id}"
|
||||||
}
|
}
|
||||||
|
|
||||||
output "mysql_slow_id" {
|
output "mysql_slow_id" {
|
||||||
description = "id for monitor mysql_slow"
|
description = "id for monitor mysql_slow"
|
||||||
value = "${datadog_monitor.mysql_slow.id}"
|
value = "${datadog_monitor.mysql_slow.*.id}"
|
||||||
}
|
}
|
||||||
|
|
||||||
output "mysql_pool_efficiency_id" {
|
output "mysql_pool_efficiency_id" {
|
||||||
description = "id for monitor mysql_pool_efficiency"
|
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" {
|
output "mysql_pool_utilization_id" {
|
||||||
description = "id for monitor mysql_pool_utilization"
|
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" {
|
output "mysql_threads_anomaly_id" {
|
||||||
description = "id for monitor mysql_threads_anomaly"
|
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" {
|
output "mysql_queries_anomaly_id" {
|
||||||
description = "id for monitor mysql_queries_anomaly"
|
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