Skip to content
This repository was archived by the owner on Jun 6, 2023. It is now read-only.

Commit 383a7ff

Browse files
committed
fix example return value in utilization
1 parent 9089a91 commit 383a7ff

File tree

1 file changed

+4
-5
lines changed

1 file changed

+4
-5
lines changed

lib/machines/utilization.js

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -32,19 +32,18 @@ var assign = require('lodash.assign');
3232
* //Example return value:
3333
* {
3434
* "machineId": "ps123abc",
35-
* "secondsUsed": 1000,
3635
* "utilization": {
3736
* "machineId": "ps123abc",
38-
* "secondsUsed": 1000,
37+
* "secondsUsed": 37351.08562622,
3938
* "hourlyRate": "0.40",
4039
* "billingMonth": "2017-08",
4140
* },
4241
* "storageUtilization": {
4342
* "machineId": "ps123abc",
44-
* "secondsUsed": 3000,
45-
* "hourlyRate": "7.00",
43+
* "secondsUsed": 678400,
44+
* "monthlyRate": "7.00",
4645
* "billingMonth": "2017-08",
47-
* },
46+
* }
4847
* }
4948
*/
5049

0 commit comments

Comments
 (0)