-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathplugin.json
More file actions
28 lines (28 loc) · 830 Bytes
/
plugin.json
File metadata and controls
28 lines (28 loc) · 830 Bytes
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
{
"name" : "Boundary CPU Core",
"version" : "2.1",
"tags" : "cpu,core",
"description" : "Provides per core CPU utilization",
"command" : "node index.js $(pollInterval)",
"command_lua" : "boundary-meter init.lua",
"postExtract" : "npm install",
"postExtract_lua" : "",
"ignore" : "node_modules",
"metrics" : ["CPU_CORE"],
"paramSchema": [
{
"title": "Poll Interval",
"name": "pollInterval",
"description": "How often (in milliseconds) to poll the system for metrics (default: 1000).",
"type" : "integer",
"default" : 1000,
"required" : false
},
{
"title": "Source",
"name": "source",
"description": "The Source to display in the legend for the CPU Core data. It will default to the hostname of the server",
"type": "string"
}
]
}