Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/voelzmo/pinger
A basic golang app that pings and pongs
https://github.com/voelzmo/pinger
Last synced: about 2 months ago
JSON representation
A basic golang app that pings and pongs
- Host: GitHub
- URL: https://github.com/voelzmo/pinger
- Owner: voelzmo
- License: apache-2.0
- Created: 2016-10-14T21:54:35.000Z (about 8 years ago)
- Default Branch: main
- Last Pushed: 2024-09-10T11:18:58.000Z (4 months ago)
- Last Synced: 2024-09-10T12:49:14.347Z (4 months ago)
- Language: Go
- Size: 2.78 MB
- Stars: 0
- Watchers: 4
- Forks: 3
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
Just an app that pings regularly pings other IP adresses. Responds to pings on `/ping` with a `pong`.
### Usage
`pinger --port --interval --address : [--address :]`### Consumption
* boshrelease: https://github.com/voelzmo/pinger-app-release
* deploy ping-app on Cloud Foundry with the golang buildpack
```
cf push ping-app
```
* deploy ping-app on Cloud Foundry with the binary buildpack
```
GOOS=linux GOARCH=amd64 go build -o ping-app
cf push ping-app -c './ping-app' -b https://github.com/cloudfoundry/binary-buildpack.git
```