-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathplugin.json
39 lines (39 loc) · 1.13 KB
/
plugin.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
{
"description" : "Displays important MEMCACHED metrics",
"icon" : "icon.png",
"command" : "node index.js",
"postExtract" : "npm install",
"ignore" : "node_modules",
"metrics" : [
"MEMCACHED_ALLOCATED",
"MEMCACHED_CONNECTIONS",
"MEMCACHED_HITS",
"MEMCACHED_ITEMS",
"MEMCACHED_MISSES",
"MEMCACHED_NETWORK_IN",
"MEMCACHED_NETWORK_OUT",
"MEMCACHED_REQUESTS"
],
"dashboards" : [{ "name" : "memcached", "layout" : "d-w=3&d-h=2&d-pad=5&d-bg=none&d-g-MEMCACHED_ALLOCATED=0-0-1-1&d-g-MEMCACHED_CONNECTIONS=1-0-1-1&d-g-MEMCACHED_HITS=0-1-1-1-t&d-g-MEMCACHED_MISSES=0-1-1-1-b&d-g-MEMCACHED_ITEMS=1-1-1-1&d-g-MEMCACHED_REQUESTS=2-0-1-1&d-g-MEMCACHED_NETWORK_IN=2-1-1-1-t&d-g-MEMCACHED_NETWORK_OUT=2-1-1-1-b"}],
"paramSchema" : [
{
"title" : "Source",
"name" : "source",
"description" : "The source to display in the legend for the MEMCACHED data.",
"type" : "string"
},
{
"title" : "Port",
"name" : "port",
"description" : "The MEMCACHED port.",
"type" : "integer",
"default" : 11211
},
{
"title" : "Host",
"name" : "host",
"description" : "The MEMCACHED hostname.",
"type" : "string"
}
]
}