- POST JSON to local sensu-client socket: echo '{"handlers": ["default"], "name" : "my_check", "output" : "SOMETHING WENT WRONG DUDE !", "status" : 2}'|nc -w1 127.0.0.1 3030 • “Dump” metrics from your app – POST JSON to local sensu-client socket (similar to the above) • Force check from command line on the host which has access to sensu-api: curl -XPOST http://sensu-api-host:4567/check/request -d '{ "check": "redis_process", "subscribers": [ "all"] }' • Distribute alerts to different teams (add extra parameters to check definitions and do the logic in handler) • Clear/Raise alert chains from within handler itself curl -XPOST http://sensu-api-host:4567/event/resolve -d '{ "client": "some_client_host", "check": "redis_process"}' • Many other including the ones you will come up with! :-)