-
Notifications
You must be signed in to change notification settings - Fork 23
/
Copy pathconfig.php.example
39 lines (29 loc) · 1008 Bytes
/
config.php.example
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
<?php
/**
*
* Configuration
* Changes in this file will overwrite default values
*
**/
// Set file path to your nagios status log
// $statusFile = '/var/cache/nagios3/status.dat';
// Objects file
// $objectsFile = '/var/cache/icinga/objects.cache';
// Show IP addresses of hosts
// $showAddresses = TRUE;
// Refresh time in seconds
// $refresh = 10;
// Show warning state if status file was last updated <num> seconds ago
// Set this to a higher value then status_update_interval in your
// nagios.cfg
// $statusFileTimeout = 60;
// Filter hosts - filter hosts with (only machines starting with 'brno-')
// $hostFilter = function ($match) { return preg_match('/^brno-/', $match); };
// Enable fortune output
// $enableFortune = false;
// $fortunePath = "/usr/games/fortune";
// Set to callable to write custom heading by function
// $nagliteHeading = function() { echo("<h2>This is Naglite3</h2>\n"); };
// Set to string to write the string
// $nagliteHeading = '<Your Custom Heading>';
//