-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
docs: add sample metrics > METRICS.md
- Loading branch information
1 parent
7dd2809
commit 0432043
Showing
2 changed files
with
14 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,5 @@ | ||
FROM node:7.9.0 | ||
MAINTAINER "Stefan Walther" | ||
|
||
ARG PORT=9696 | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
# Metrics | ||
|
||
Below are an example of the metrics as exposed by this exporter. | ||
|
||
``` | ||
# TYPE speedtest_bits_per_second gauge | ||
# HELP speedtest_bits_per_second Speed measured against speedtest.net | ||
speedtest_bits_per_second{direction="downstream"} 117.949 | ||
speedtest_bits_per_second{direction="upstream"} 26.472 | ||
# TYPE speedtest_ping gauge | ||
# HELP speedtest_ping Ping in ms | ||
speedtest_ping 22.6 | ||
``` |