63 lines
2.2 KiB
HCL
63 lines
2.2 KiB
HCL
resource "datadog_monitor" "datadog_php_fpm_connect_idle" {
|
|
name = "[${var.environment}] Php-fpm busy worker {{#is_alert}}{{{comparator}}} {{threshold}}% ({{value}}%){{/is_alert}}{{#is_warning}}{{{comparator}}} {{warn_threshold}}% ({{value}}%){{/is_warning}}"
|
|
message = "${coalesce(var.php_fpm_busy_message, var.message)}"
|
|
|
|
type = "metric alert"
|
|
|
|
query = <<EOF
|
|
${var.php_fpm_busy_time_aggregator}(${var.php_fpm_busy_timeframe}): (
|
|
avg:php_fpm.processes.active${module.filter-tags.query_alert} by {region, host} /
|
|
( avg:php_fpm.processes.idle${module.filter-tags.query_alert} by {region, host} +
|
|
avg:php_fpm.processes.active${module.filter-tags.query_alert} by {region, host} )
|
|
) > ${var.php_fpm_busy_threshold_critical}
|
|
EOF
|
|
|
|
thresholds {
|
|
warning = "${var.php_fpm_busy_threshold_warning}"
|
|
critical = "${var.php_fpm_busy_threshold_critical}"
|
|
}
|
|
|
|
notify_no_data = true
|
|
evaluation_delay = "${var.evaluation_delay}"
|
|
new_host_delay = "${var.new_host_delay}"
|
|
notify_audit = false
|
|
timeout_h = 0
|
|
include_tags = true
|
|
locked = false
|
|
require_full_window = true
|
|
|
|
silenced = "${var.php_fpm_busy_silenced}"
|
|
|
|
tags = ["env:${var.environment}", "type:middleware", "provider:php-fpm", "resource:php-fpm", "team:claranet", "created-by:terraform", "${var.php_fpm_busy_extra_tags}"]
|
|
}
|
|
|
|
resource "datadog_monitor" "datadog_fpm_process" {
|
|
name = "[${var.environment}] Php-fpm ping url does not respond"
|
|
message = "${coalesce(var.php_fpm_connect_message, var.message)}"
|
|
|
|
type = "service check"
|
|
|
|
query = <<EOF
|
|
"php_fpm.can_ping".over${module.filter-tags.service_check}.by("host","ping_url").last(6).count_by_status()
|
|
EOF
|
|
|
|
thresholds = {
|
|
ok = 1
|
|
warning = 2
|
|
critical = 5
|
|
}
|
|
|
|
notify_no_data = true
|
|
new_host_delay = "${var.new_host_delay}"
|
|
renotify_interval = 0
|
|
notify_audit = false
|
|
timeout_h = 0
|
|
include_tags = true
|
|
locked = false
|
|
require_full_window = true
|
|
|
|
silenced = "${var.php_fpm_connect_silenced}"
|
|
|
|
tags = ["env:${var.environment}", "type:middleware", "provider:php-fpm", "resource:php-fpm", "team:claranet", "created-by:terraform", "${var.php_fpm_connect_extra_tags}"]
|
|
}
|