-
Notifications
You must be signed in to change notification settings - Fork 0
/
amazon-cloudwatch-agent.json
43 lines (42 loc) · 1.45 KB
/
amazon-cloudwatch-agent.json
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
{
"metrics": {
"namespace": "SageMakerNotebookInstances",
"metrics_collected": {
"cpu": {
"measurement": [ "cpu_usage_idle" ],
"metrics_collection_interval": 60,
"append_dimensions": { "notebook_instance_name": "MyNotebookInstance" },
"resources": [ "*" ],
"totalcpu": true
},
"disk": {
"measurement": [ "used_percent" ],
"metrics_collection_interval": 60,
"append_dimensions": { "notebook_instance_name": "MyNotebookInstance" },
"resources": [ "*" ]
},
"diskio": {
"measurement": [ "write_bytes","read_bytes", "writes", "reads" ],
"metrics_collection_interval": 60,
"append_dimensions": { "notebook_instance_name": "MyNotebookInstance" },
"resources": [ "*" ]
},
"mem": {
"measurement": [ "mem_used_percent" ],
"metrics_collection_interval": 60,
"append_dimensions": { "notebook_instance_name": "MyNotebookInstance" }
},
"net": {
"measurement": [ "bytes_sent", "bytes_recv", "packets_sent", "packets_recv" ],
"metrics_collection_interval": 60,
"append_dimensions": { "notebook_instance_name": "MyNotebookInstance" },
"resources": [ "*" ]
},
"swap": {
"measurement": [ "swap_used_percent" ],
"metrics_collection_interval": 60,
"append_dimensions": { "notebook_instance_name": "MyNotebookInstance" }
}
}
}
}