Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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

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
```