24
What’s new Icinga 2 Věroš Kaplan @verosk http://inuits.eu/

What’s new · Modules & features icinga2-enable-feature icinga2-disable-feature IDOUtils graphite classic-web (CGIs) …

  • Upload
    others

  • View
    27

  • Download
    0

Embed Size (px)

Citation preview

Page 1: What’s new · Modules & features icinga2-enable-feature icinga2-disable-feature IDOUtils graphite classic-web (CGIs) …

What’s new

Icinga 2Věroš Kaplan

@verosk

http://inuits.eu/

Page 2: What’s new · Modules & features icinga2-enable-feature icinga2-disable-feature IDOUtils graphite classic-web (CGIs) …

Playground

Vagrant VMhttp://docs.icinga.org/icinga2/latest/doc/module/icinga2/chapter/getting-started#vagrant

Page 3: What’s new · Modules & features icinga2-enable-feature icinga2-disable-feature IDOUtils graphite classic-web (CGIs) …

Modules & features

icinga2-enable-feature

icinga2-disable-feature

IDOUtilsgraphiteclassic-web (CGIs)…

Page 4: What’s new · Modules & features icinga2-enable-feature icinga2-disable-feature IDOUtils graphite classic-web (CGIs) …

Icinga Web 2 (beta)

Icinga Camp Antwerphttps://www.icinga.org/community/events/icinga-camp-antwerp/

Page 5: What’s new · Modules & features icinga2-enable-feature icinga2-disable-feature IDOUtils graphite classic-web (CGIs) …

Modules & features

icinga2-enable-feature

icinga2-disable-feature

IDOUtils

graphite

...

Page 7: What’s new · Modules & features icinga2-enable-feature icinga2-disable-feature IDOUtils graphite classic-web (CGIs) …

Comments

// this is one-line comments

/*

this is

multi

line

comment

*/

# this is no longer comment

Page 8: What’s new · Modules & features icinga2-enable-feature icinga2-disable-feature IDOUtils graphite classic-web (CGIs) …

Include

include <magic_file>

include “not_so_magic_file”

include “lot_of_files/*.conf”

include_recursive “directory”

// only *.conf

Page 10: What’s new · Modules & features icinga2-enable-feature icinga2-disable-feature IDOUtils graphite classic-web (CGIs) …

Constants!

/etc/icinga2/constants.conf

Page 11: What’s new · Modules & features icinga2-enable-feature icinga2-disable-feature IDOUtils graphite classic-web (CGIs) …

Time granularity

define service “is_it_friday” {

check_interval = 1h

retry_interval = 30m

...

}

check_interval = 1min

retry_check_interval

Page 12: What’s new · Modules & features icinga2-enable-feature icinga2-disable-feature IDOUtils graphite classic-web (CGIs) …

Templates

template Host “Foo-Bar” {

bar

}

object Host “Foo-Bar-Praha” {

import “Foo-Bar”

}

Page 13: What’s new · Modules & features icinga2-enable-feature icinga2-disable-feature IDOUtils graphite classic-web (CGIs) …

structured vars …

object Host "core-switch" {

import "generic-host"

address = "127.0.0.1"

vars.interfaces["0"] = {

port = 1

vlan = "internal"

address = "127.0.0.2"

qos = "enabled"

}

}

Page 14: What’s new · Modules & features icinga2-enable-feature icinga2-disable-feature IDOUtils graphite classic-web (CGIs) …

Commands

define CheckCommand “ssh” { … }

define NotificationCommand “hipchat” { … }

define EventCommand “ipmi-restart” { … }

Page 15: What’s new · Modules & features icinga2-enable-feature icinga2-disable-feature IDOUtils graphite classic-web (CGIs) …

Define command

define command “check” {

command = [ … “/check_ping” ]

args = {

“-H” = host.address

“-w” = host.vars.warn_timeout

...

}

}

Page 16: What’s new · Modules & features icinga2-enable-feature icinga2-disable-feature IDOUtils graphite classic-web (CGIs) …
Page 17: What’s new · Modules & features icinga2-enable-feature icinga2-disable-feature IDOUtils graphite classic-web (CGIs) …

Apply command

apply Service “foo” {

...

assign where (host.vars.location == ‘praha’)

}

Page 18: What’s new · Modules & features icinga2-enable-feature icinga2-disable-feature IDOUtils graphite classic-web (CGIs) …

Advanced command

apply Service “check_disk_c” {

xxx

assign where (host.vars.has_disk_c)

}

Page 19: What’s new · Modules & features icinga2-enable-feature icinga2-disable-feature IDOUtils graphite classic-web (CGIs) …

Advanced apply

apply Service “check_disk_c” {

xxx

assign where ((host.vars.has_disk_c)

&& (host.vars.has_nsca))

}

Page 20: What’s new · Modules & features icinga2-enable-feature icinga2-disable-feature IDOUtils graphite classic-web (CGIs) …

for Loopsapply Service for (customer => config in host.vars.hosting) {

import "generic-service"

check_command = "ping4"

…}

Page 21: What’s new · Modules & features icinga2-enable-feature icinga2-disable-feature IDOUtils graphite classic-web (CGIs) …

Na^H^HMonitoring plugins!

s/nagios-plugins/monitoring-plugins/

Extra opts:/etc/monitoring-plugins.ini

https://www.monitoring-plugins.org/doc/extra-opts.html

Page 22: What’s new · Modules & features icinga2-enable-feature icinga2-disable-feature IDOUtils graphite classic-web (CGIs) …
Page 23: What’s new · Modules & features icinga2-enable-feature icinga2-disable-feature IDOUtils graphite classic-web (CGIs) …

Random notes

- new notifications- distributed monitoring zones

Page 24: What’s new · Modules & features icinga2-enable-feature icinga2-disable-feature IDOUtils graphite classic-web (CGIs) …

ENOTIME