-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathmongo.json
112 lines (109 loc) · 2.69 KB
/
mongo.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
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
99
100
101
102
103
104
105
106
107
108
109
110
111
{
"file_size": {
"title": "Mongo DB size ({{PI}}) on {{HOST}}",
"vertical": "Bytes",
"type": "stacked",
"legend": {
"data": {
"name": "Data"
},
"index": {
"name": "Index"
},
"storage": {
"name": "Storage"
}
},
"legend_format": "%5.1lf%s"
},
"total_operations": {
"title": "Mongo DB Total Operations ({{PI}}) on {{HOST}}",
"vertical": "Commandes par secondes",
"type": "stacked",
"legend": {
"command": {
"name": "Command"
},
"delete": {
"name": "Delete"
},
"getmore": {
"name": "Getmore"
},
"insert": {
"name": "Insert"
},
"query": {
"name": "Query"
},
"update": {
"name": "Update"
}
}
},
"memory": {
"title": "Mongo DB memory usage ({{PI}}) on {{HOST}}",
"vertical": "MB",
"type": "stacked",
"legend": {
"mapped": {
"name": "Mapped"
},
"resident": {
"name": "Resident"
},
"virtual": {
"name": "Virtual"
}
}
},
"connections": {
"title": "Mongo DB connexions ({{PI}}) on {{HOST}}",
"vertical": "Open Connections",
"type": "stacked",
"legend": {
"connections": {
"name": "Connections"
}
}
},
"cache_ratio": {
"title": "Mongo DB cache ratio ({{PI}}) on {{HOST}}",
"vertical": "Cache misses ratio",
"type": "stacked",
"legend": {
"cache_misses": {
"name": "Cache Misses"
}
}
},
"percent": {
"title": "Mongo DB lock ratio ({{PI}}) on {{HOST}}",
"vertical": "Locks ratio",
"type": "stacked",
"legend": {
"lock_ratio": {
"name": "Lock Ratio"
}
}
},
"gauge": {
"title": "Mongo DB Objects Counters ({{PI}}) on {{HOST}}",
"vertical": "Number of ...",
"type": "stacked",
"legend": {
"collections": {
"name": "Collections"
},
"indexes": {
"name": "Indexes"
},
"num_extents": {
"name": "Extents"
},
"object_count": {
"name": "Objects Count"
}
}
}
}