-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmongodb.pyconf
74 lines (73 loc) · 1.61 KB
/
mongodb.pyconf
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
modules {
module {
name = "mongodb"
language = "python"
param time_max {
value = '60'
}
}
}
collection_group {
collect_every = 30
time_threshold = 90
metric {
name = "mongodb_conn_current"
title = "Current Connections"
}
metric {
name = "mongodb_conn_available"
title = "Current Available Connections"
}
metric {
name = "mongodb_conn_total"
title = "Current Total Connections"
}
metric {
name = "mongodb_net_bytes_in"
title = "Bytes per Second - Inbound"
}
metric {
name = "mongodb_net_bytes_out"
title = "Bytes per Second - Outbound"
}
metric {
name = "mongodb_op_count_insert"
title = "Oplog Inserts"
}
metric {
name = "mongodb_op_count_query"
title = "Oplog Queries"
}
metric {
name = "mongodb_op_count_update"
title = "Oplog Updatess"
}
metric {
name = "mongodb_op_count_delete"
title = "Oplog Deletes"
}
metric {
name = "mongodb_op_count_getmore"
title = "Oplog Getmore"
}
metric {
name = "mongodb_op_count_command"
title = "Oplog Command"
}
metric {
name = "mongodb_mem_resident"
title = "Memory Resident"
}
metric {
name = "mongodb_mem_virtual"
title = "Memory Virtual"
}
metric {
name = "mongodb_mem_mapped"
title = "Memory Mapped"
}
metric {
name = "mongodb_mem_mapped_with_journal"
title = "Memory with Journal"
}
}