-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathplugin.json
More file actions
71 lines (68 loc) · 2.11 KB
/
plugin.json
File metadata and controls
71 lines (68 loc) · 2.11 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
{
"description" : "Displays important HBase metrics",
"icon" : "icon.png",
"command" : "node index.js",
"postExtract" : "npm install",
"ignore" : "node_modules",
"metrics" : [
"HBASE_BLOCK_CACHE_EXPRESS",
"HBASE_COMPACTION_QUEUE",
"HBASE_FLUSH_QUEUE",
"HBASE_LOCAL_BLOCK_RATIO",
"HBASE_MEMSTORE_SIZE",
"HBASE_REGIONS",
"HBASE_READ_REQUESTS",
"HBASE_SLOW_LOG_APPENDS",
"HBASE_MEMORY",
"HBASE_WRITE_REQUESTS"
],
"dashboards" : [
{
"name" : "hbase",
"layout" : "d-w=4&d-h=3&d-pad=5&d-bg=none&d-g-HBASE_LOCAL_BLOCK_RATIO=0-2-1-1&d-sg-cpu=0-0-2-1&d-g-HBASE_MEMORY=2-0-2-1&d-g-HBASE_BLOCK_CACHE_EXPRESS=0-1-1-1&d-g-HBASE_WRITE_REQUESTS=3-1-1-1&d-g-HBASE_READ_REQUESTS=2-1-1-1&d-g-HBASE_REGIONS=1-1-1-1&d-g-HBASE_FLUSH_QUEUE=1-2-1-1&d-g-HBASE_MEMSTORE_SIZE=2-2-1-1&d-g-HBASE_SLOW_LOG_APPENDS=3-2-1-1"
}
],
"paramSchema" : [
{
"title" : "Hostname",
"name" : "hostname",
"description" : "The hostname or IP address of the JMX Region server",
"type" : "string",
"default" : "localhost",
"required" : true
},
{
"title" : "Port",
"name" : "port",
"description" : "The port of the JMX Region server",
"type" : "string",
"default" : "10102",
"required" : true
},
{
"title" : "Username",
"name" : "username",
"description" : "If the JMX endpoint is password protected, what username should graphdat use when calling it.",
"type" : "string"
},
{
"title" : "Password",
"name" : "password",
"description" : "If the JMX endpoint is password protected, what password should graphdat use when calling it.",
"type" : "password"
},
{
"title": "Poll Seconds",
"name": "pollSeconds",
"description": "How often should the plugin poll the JMX endpoint",
"type" : "string",
"default" : 5
},
{
"title" : "Source",
"name" : "source",
"description" : "The Source to display in the legend for the HBase data. It will default to the hostname of the server",
"type" : "string"
}
]
}