mirror of
https://github.com/librenms/librenms.git
synced 2024-10-07 16:52:45 +00:00
docs: Updated Graylog.md for 2.4 version (#8517)
* Update Graylog.md Updatet to current version of graylog. And default ports * Update Graylog.md
This commit is contained in:
@ -14,14 +14,14 @@ to your rsyslog config to send the full FQDN so device logs will be associated c
|
||||
Graylog itself isn't included within LibreNMS, you will need to install this separately either on the same infrastructure as LibreNMS or as a totally
|
||||
standalone appliance.
|
||||
|
||||
Config is simple, here's an example:
|
||||
Config is simple, here's an example based on Graylog 2.4:
|
||||
|
||||
```php
|
||||
$config['graylog']['server'] = 'http://127.0.0.1';
|
||||
$config['graylog']['port'] = 12900;
|
||||
$config['graylog']['port'] = 9000;
|
||||
$config['graylog']['username'] = 'admin';
|
||||
$config['graylog']['password'] = 'admin';
|
||||
$config['graylog']['version'] = '2.1';
|
||||
$config['graylog']['version'] = '2.4';
|
||||
```
|
||||
|
||||
Graylog messages are stored using GMT timezone. You can display graylog messages in LibreNMS webui using your desired timezone by setting following option in config.php:
|
||||
@ -31,10 +31,8 @@ $config['graylog']['timezone'] = 'Europe/Bucharest';
|
||||
```
|
||||
> Timezone must be PHP supported timezones, available at: <a href="http://php.net/manual/en/timezones.php">http://php.net/manual/en/timezones.php</a>
|
||||
|
||||
> Since Graylog 2.1, the default API path is /api/
|
||||
|
||||
If you are running a version earlier than Graylog then please set `$config['graylog']['version']` to the version
|
||||
number of your Graylog install.
|
||||
number of your Graylog install. Earlier versions than 2.1 use the default port `12900`
|
||||
|
||||
If you have altered the default uri for your Graylog setup then you can override the default of `/api/` using
|
||||
`$config['graylog']['base_uri'] = '/somepath/';`
|
||||
|
Reference in New Issue
Block a user