forked from similarweb/finala
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfig.yaml
More file actions
98 lines (97 loc) · 2.73 KB
/
Copy pathconfig.yaml
File metadata and controls
98 lines (97 loc) · 2.73 KB
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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
---
log_level: info
providers:
aws:
accounts:
- name: <account_name>
access_key: <access_key>
secret_key: <secret_key>
regions:
- us-east-1
- us-west-2
metrics:
rds:
- description: Database connection count
metrics:
- name: DatabaseConnections
statistic: Sum
period: 24h
start_time: 168h # 24h * 7d
constraint:
operator: "=="
value: 0
docDB:
- description: Database connection count
metrics:
- name: DatabaseConnections
statistic: Sum
period: 24h
start_time: 168h # 24h * 7d
constraint:
operator: "=="
value: 0
elasticache:
- description: connection count
metrics:
- name: CurrConnections
statistic: Sum
period: 24h
start_time: 168h # 24h * 7d
constraint:
operator: "=="
value: 0
elb:
- description: Loadbalancer requests count
metrics:
- name: RequestCount
statistic: Sum
period: 24h
start_time: 168h # 24h * 7d
constraint:
operator: "=="
value: 0
ec2:
- description: EC2 CPU utilization
metrics:
- name: CPUUtilization
statistic: Maximum
period: 24h
start_time: 168h # 24h * 7d
constraint:
operator: "<"
value: 6
dynamodb:
- description: Provisioned read capacity units
metrics:
- name: ConsumedReadCapacityUnits
statistic: Sum
- name: ProvisionedReadCapacityUnits
statistic: Sum
period: 24h
start_time: 168h # 24h * 7d
constraint:
formula: ConsumedReadCapacityUnits / ProvisionedReadCapacityUnits * 100
operator: "<"
value: 10
- description: Provisioned write capacity units
metrics:
- name: ConsumedWriteCapacityUnits
statistic: Sum
- name: ProvisionedWriteCapacityUnits
statistic: Sum
period: 24h
start_time: 168h # 24h * 7d
constraint:
formula: ConsumedWriteCapacityUnits / ProvisionedWriteCapacityUnits * 100
operator: "<"
value: 10
lambda:
- description: Lambda invocations count
metrics:
- name: Invocations
statistic: Sum
period: 24h
start_time: 168h # 24h * 7d
constraint:
operator: "=="
value: 0