Skip to content

Check plugin for Icinga2 that parses logs and counts the occurrences of a string

License

Notifications You must be signed in to change notification settings

cflinspach/parse_logs

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

14 Commits
 
 
 
 
 
 

Repository files navigation

parse_logs.pl

Check plugin for Icinga/Nagios that parses logs and counts the occurrences of a string. Also collects and displays logs from IcingaWeb2

Uses ssh or telnet to remote in and save the output from sh log.

Tested with Cisco, Brocade, Foudry and Extreme.

Installation

Requires Net::Telnet, Net::Telnet::Cisco, Net::OpenSSH, File::ReadBackwards, Expect

You can change the directory logs are stored in by editing line 26 (my $fileDir = '/var/www/html/parse_logs/';)

Usage:

check_logs.pl -H [host] -U [username] -P [password] -T [type] -s [search] -w [warn] -c [crit]


Possible Types:
Cisco
Extreme
Brocade

The check command defintion for Icinga2 is:

object CheckCommand "parse_logs" {
    import "plugin-check-command"
    command = [
        "/usr/bin/sudo",
        "/usr/lib/nagios/plugins/parse_logs.pl"
    ]
    arguments += {
        "-H" = "$address$"
        "-P" = "$logs_password$"
        "-T" = "$logs_device_type$"
        "-U" = "$logs_username$"
        "-c" = "$logs_crit$"
        "-s" = "$logs_search_string$"
        "-w" = "$logs_warn$"
    }
}

Usage in IcingaWeb2

We use the action URL in IcingaWeb2 to display the logs. The string "Loop" is what we're searching for, and the action url is a link to the log files.

icingaweb2

About

Check plugin for Icinga2 that parses logs and counts the occurrences of a string

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages