Skip to content

Commit

Permalink
Merge pull request #6 from GabrielNicolasAvellaneda/master
Browse files Browse the repository at this point in the history
Reordered parameters and settings of the corresponding required
  • Loading branch information
jdgwartney committed Jul 27, 2015
2 parents 22f3c42 + 1926de7 commit 98e0280
Showing 1 changed file with 14 additions and 12 deletions.
26 changes: 14 additions & 12 deletions plugin.json
Original file line number Diff line number Diff line change
Expand Up @@ -29,24 +29,20 @@
],
"paramSchema": [
{
"title": "Source",
"name": "source",
"description": "The source to display in the legend for the REDIS data.",
"type": "string"
"title": "Host",
"name": "host",
"description": "The redis hostname.",
"type": "string",
"default" : "127.0.0.1",
"required" : true
},
{
"title": "Port",
"name": "port",
"description": "The redis port.",
"type": "integer",
"default": 6379
},
{
"title": "Host",
"name": "host",
"description": "The redis hostname.",
"type": "string",
"default" : "127.0.0.1"
"default": 6379,
"required" : true
},
{
"title": "Password",
Expand All @@ -61,6 +57,12 @@
"type" : "integer",
"default" : 2000,
"required" : false
},
{
"title": "Source",
"name": "source",
"description": "The source to display in the legend for the REDIS data.",
"type": "string"
}
]
}

0 comments on commit 98e0280

Please sign in to comment.