1
0
mirror of https://github.com/Luzifer/mondash.git synced 2024-09-20 01:12:58 +00:00

Added "value" parameter to API documentation and welcome runner

This commit is contained in:
Knut Ahlers 2015-07-06 20:34:50 +02:00
parent 13beddc97a
commit daa9b7eed7
2 changed files with 13 additions and 11 deletions

View File

@ -62,7 +62,8 @@ This API controls the metrics on your dashboard
"description": "Currently there are 12 bottles of beer in the fridge", "description": "Currently there are 12 bottles of beer in the fridge",
"status": "OK", "status": "OK",
"expires": 604800, "expires": 604800,
"freshness": 3600 "freshness": 3600,
"value": 12.0
} }
+ Attributes (object) + Attributes (object)

View File

@ -36,6 +36,7 @@ func runWelcomePage() {
Status: status, Status: status,
Expires: 86400, Expires: 86400,
Freshness: 120, Freshness: 120,
Value: float64(beers),
} }
body, err := json.Marshal(beer) body, err := json.Marshal(beer)