Advertisement
Guest User

Untitled

a guest
Jun 25th, 2018
95
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.03 KB | None | 0 0
  1. cat constants.conf
  2. /**
  3. * This file defines global constants which can be used in
  4. * the other configuration files.
  5. */
  6.  
  7. /* The directory which contains the plugins from the Monitoring Plugins project. */
  8. const PluginDir = "/usr/lib64/nagios/plugins"
  9.  
  10. /* The directory which contains the Manubulon plugins.
  11. * Check the documentation, chapter "SNMP Manubulon Plugin Check Commands", for details.
  12. */
  13. const ManubulonPluginDir = "/usr/lib64/nagios/plugins"
  14.  
  15. /* The directory which you use to store additional plugins which ITL provides user contributed command definitions for.
  16. * Check the documentation, chapter "Plugins Contribution", for details.
  17. */
  18. const PluginContribDir = "/usr/lib64/nagios/plugins"
  19.  
  20. /* Our local instance name. By default this is the server's hostname as returned by `hostname --fqdn`.
  21. * This should be the common name from the API certificate.
  22. */
  23. const NodeName = "monitor.corp.xpand.pl"
  24.  
  25. /* Our local zone name. */
  26. const ZoneName = "monitor.corp.xpand.pl"
  27.  
  28. /* Secret key for remote node tickets */
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement