* Daniel Parthey <[email protected]> [2013-11-13 22:14]: > I would love to see the following feature in NSCA-ng client: > > https://www.nsca-ng.org/documentation/todo.html > > * Fault Tolerance > > If the NSCA-ng server is not available, NSCA-ng client should > queue commands and results in a local storage and submit them > to NSCA-ng server as soon as the network comes up again.
Indeed, while the server already queues submitted data (in memory) if Nagios goes down, the client has no such feature. I've added this to the TODO list. For the moment, a wrapper script such as the following might do the trick: #!/bin/sh -e export PATH='/usr/local/sbin:/usr/local/bin:/sbin:/bin:/usr/sbin:/usr/bin' dump_file='/var/tmp/send_nsca.dump' cat >>"$dump_file" send_nsca "$@" <"$dump_file" && rm -f "$dump_file" > Would you consider this feature to be useful/feasible? Yes, and it should be easy to implement. Thanks for the suggestion. Holger
