From 05b45c438af797dfad725bba799de6a47aa13fde Mon Sep 17 00:00:00 2001 From: laf Date: Tue, 11 Aug 2015 09:44:35 -0700 Subject: [PATCH] Added docs on using Grallog integration --- doc/Extensions/Graylog.md | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 doc/Extensions/Graylog.md diff --git a/doc/Extensions/Graylog.md b/doc/Extensions/Graylog.md new file mode 100644 index 0000000000..32d0ab1cdf --- /dev/null +++ b/doc/Extensions/Graylog.md @@ -0,0 +1,17 @@ +# Graylog integration + +We have simple integration for Graylog, you will be able to view any logs from within LibreNMS that have been parsed by the syslog input from within +Graylog itself. This includes logs from devices which aren't in LibreNMS still, you can also see logs for a sepcific device under the logs section +for the device. + +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: + +```php +$config['graylog']['server'] = 'http://127.0.0.1'; +$config['graylog']['port'] = 12900; +$config['graylog']['username'] = 'admin'; +$config['graylog']['password'] = 'admin'; +```