-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathplugin.json
More file actions
40 lines (40 loc) · 974 Bytes
/
plugin.json
File metadata and controls
40 lines (40 loc) · 974 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
29
30
31
32
33
34
35
36
37
38
39
40
{
"author": "NetScout-Go",
"description": "Tests connectivity to a host by sending ICMP echo requests",
"icon": "ping",
"id": "ping",
"license": "MIT",
"name": "Ping",
"parameters": [
{
"default": "8.8.8.8",
"description": "The hostname or IP address to ping",
"id": "host",
"name": "Host",
"required": true,
"type": "string"
},
{
"default": 4,
"description": "Number of packets to send",
"id": "count",
"max": 100,
"min": 1,
"name": "Count",
"required": false,
"step": 1,
"type": "number"
},
{
"default": false,
"description": "Enable repeated execution of this plugin with the same parameters",
"id": "continueToIterate",
"name": "Continue to iterate?",
"required": false,
"type": "boolean",
"canIterate": true
}
],
"repository": "https://github.com/NetScout-Go/Plugin_ping",
"version": "1.0.0"
}