Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/thombashi/docker-pingparsing
Docker image for pingparsing
https://github.com/thombashi/docker-pingparsing
docker-image dockerfile ping pingparsing
Last synced: about 1 month ago
JSON representation
Docker image for pingparsing
- Host: GitHub
- URL: https://github.com/thombashi/docker-pingparsing
- Owner: thombashi
- License: mit
- Created: 2018-05-04T14:02:38.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2021-05-05T11:06:57.000Z (over 3 years ago)
- Last Synced: 2024-10-30T05:58:29.796Z (3 months ago)
- Topics: docker-image, dockerfile, ping, pingparsing
- Language: Dockerfile
- Homepage: https://hub.docker.com/r/thombashi/pingparsing/
- Size: 7.81 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# docker-pingparsing
Docker image for [pingparsing]( https://github.com/thombashi/pingparsing )# Example Usage
```
docker pull thombashi/pingparsing
``````
$ docker run thombashi/pingparsing 1.1.1.1 8.8.8.8 --deadline 30
{
"8.8.8.8": {
"destination": "8.8.8.8",
"packet_transmit": 30,
"packet_receive": 30,
"packet_loss_count": 0,
"packet_loss_rate": 0.0,
"rtt_min": 51.397,
"rtt_avg": 70.436,
"rtt_max": 101.802,
"rtt_mdev": 11.358,
"packet_duplicate_count": 0,
"packet_duplicate_rate": 0.0
},
"1.1.1.1": {
"destination": "1.1.1.1",
"packet_transmit": 30,
"packet_receive": 30,
"packet_loss_count": 0,
"packet_loss_rate": 0.0,
"rtt_min": 56.696,
"rtt_avg": 71.024,
"rtt_max": 101.577,
"rtt_mdev": 10.617,
"packet_duplicate_count": 0,
"packet_duplicate_rate": 0.0
}
}
```# Reference
- [pingparsing documentation]( https://pingparsing.rtfd.io/ )
- [Dockerfile]( https://github.com/thombashi/docker-pingparsing/blob/master/Dockerfile )