-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathdashboard.tf
53 lines (52 loc) · 1.25 KB
/
dashboard.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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
resource "datadog_dashboard" "cost_dashboard" {
layout_type = "ordered"
title = var.costs_dashboard_name_override == "" ? "Costs Dashboard" : var.costs_dashboard_name_override
widget {
alert_graph_definition {
alert_id = module.hosts.alert_id
title_align = "left"
title_size = "16"
viz_type = "timeseries"
}
}
widget {
alert_graph_definition {
alert_id = module.apm_hosts.alert_id
title_align = "left"
title_size = "16"
viz_type = "timeseries"
}
}
widget {
alert_graph_definition {
alert_id = module.containers.alert_id
title_align = "left"
title_size = "16"
viz_type = "timeseries"
}
}
widget {
alert_graph_definition {
alert_id = module.logs_indexed.alert_id
title_align = "left"
title_size = "16"
viz_type = "timeseries"
}
}
widget {
alert_graph_definition {
alert_id = module.custom_metrics.alert_id
title_align = "left"
title_size = "16"
viz_type = "timeseries"
}
}
widget {
alert_graph_definition {
alert_id = module.logs_ingestion.alert_id
title_align = "left"
title_size = "16"
viz_type = "timeseries"
}
}
}