Intended to provide a JSON API like features for Nagios installations. Its written in golang and therefore systems wanting to run it only need to run a single binary for their distribution.
Follow golang installation to install golang.
Clone this repo.
Run: go build . from inside repo directory.
You can now use the standalone binary to run the service.
$ ./go-nagios-api --addr=:9090 --cachefile=/opt/nagios/object.cache --statusfile=/opt/nagios/status.dat --commandfile=/opt/nagios/nagios.cmd
Or you can provide a configuration file with these parameter in json format (configuration file overwrites cli flags)
$ ./go-nagios-api --config=nagios-api.json
It will start the api service on port 8080. If you wish to change the port simply pass --addr=:80 to make it run on port 80. For running in production see init scripts.
GET /hosts : get all configured hosts
GET /host/<hostname> : get this host
GET /hoststatus : get all hoststatus
GET /hoststatus/<hostname> : get hoststatus for this host
GET /hostgroups : get all configured hostgroups
GET /services : get all configured services
GET /servicestatus : get all servicestatus
GET /servicestatus/<servicename> : get service status for this service
POST /disable_notifications
POST /enable_notifications
POST /disable_host_check
POST /enable_host_check
POST /disable_host_notifications
POST /enable_host_notifications
POST /acknowledge_host_problem
POST /acknowledge_service_problem
...
see code for full list of available commands.
To disable host check for host host1.example.net
curl -i -XPOST http://127.0.0.1:9090/disable_host_check -d '{"hostname": "host1.example.net"}'
To disable notification for all hosts
curl -i -XPOST http://127.0.0.1:9090/disable_notifications
To get all configured hostgroups
curl -i http://127.0.0.1:9090/hostgroups
To disable host check for a particular hostgroup
curl -i -XPOST http://127.0.0.1:9090/disable_hostgroup_host_checks -d '{"hostgroup":"AwesomeHostGroup"}'
To get details for a given host host1.example.net
curl -i http://127.0.0.1:9090/host/host1.example.net
If there is a feature that you would like to have and is missing please open an issue. Alternatively, write the feature and make a pull request.