30 lines
736 B
Markdown
30 lines
736 B
Markdown
|
|
# Internet Speed Monitor
|
||
|
|
|
||
|
|
The `Internet Speed Monitor` collects data about the internet speed on the system.
|
||
|
|
|
||
|
|
## Configuration
|
||
|
|
|
||
|
|
```toml
|
||
|
|
# Monitors internet speed in the network
|
||
|
|
[[inputs.internet_speed]]
|
||
|
|
## Sets if runs file download test
|
||
|
|
## Default: false
|
||
|
|
enable_file_download = false
|
||
|
|
```
|
||
|
|
|
||
|
|
## Metrics
|
||
|
|
|
||
|
|
It collects latency, download speed and upload speed
|
||
|
|
|
||
|
|
|
||
|
|
| Name | filed name | type | Unit |
|
||
|
|
| -------------- | ---------- | ------- | ---- |
|
||
|
|
| Download Speed | download | float64 | Mbps |
|
||
|
|
| Upload Speed | upload | float64 | Mbps |
|
||
|
|
| Latency | latency | float64 | ms |
|
||
|
|
|
||
|
|
## Example Output
|
||
|
|
|
||
|
|
```sh
|
||
|
|
internet_speed,host=Sanyam-Ubuntu download=41.791,latency=28.518,upload=59.798 1631031183000000000
|
||
|
|
```
|