SlideShare uma empresa Scribd logo
1 de 64
Baixar para ler offline
Alerting With MySQL and Nagios
http://bit.ly/nagios_mysql2013
Sheeri Cabral
Senior DB Admin/Architect
Mozilla
@sheeri
What is Monitoring?

Threshold alerting

Graphing/trending
Why Monitor?

Problem alerting

Find patterns
– capacity planning
– troubleshooting

Early warning for potential issues
What to Alert?

Problems you can fix
– max_connections
– long running queries
– locked queries
– backup disk space
Nagios is great because...
...anyone can write a plugin
The problem with Nagios...
...anyone can write a plugin
Official Nagios Plugins
for MySQL

check_mysql

check_mysql_query
check_mysql

db connectivity

slave running

slave lag using seconds_behind_master
check_mysql_query

Checks the output of a query is within a
certain range (numerical)
System vars Status vars Caching Calculations
check_mysql yes yes no no
check_mysql
(standard) no yes no no
check_mysqld_status no yes no no
check_mysql_stats yes no yes no
check_mysqld no many no no
check_mysql_health yes yes no Hard-coded
check_mysql yes yes no Hard-coded
Third party plugins
“Let us know what you'd like to see!”
What I wanted
System vars Status vars Caching Calculations
mysql_health_check.pl
yes yes yes flexible
mysql_health_check.pl
Caching

Save information to a file
Caching

Save information to a file

--cache-dir /path/to/dir/
Caching

Save information to a file

--cache-dir /path/to/dir/

Use the file instead of connecting again
Caching

Save information to a file

--cache-dir /path/to/dir/

Use the file instead of connecting again
--max-cache-age <seconds>
Caching

Save information to a file

--cache-dir /path/to/dir/

Use the file instead of connecting again
--max-cache-age <seconds>
--no-cache to force connection
--mode=varcomp

%metadata{varstatus}
--mode=varcomp

%metadata{varstatus}

SHOW GLOBAL VARIABLES

SHOW GLOBAL STATUS
--mode=varcomp

%metadata{varstatus}

SHOW GLOBAL VARIABLES

SHOW GLOBAL STATUS

--expression allows word replacement
--mode=varcomp

%metadata{varstatus}

SHOW GLOBAL VARIABLES

SHOW GLOBAL STATUS

--expression allows word replacement

--warning --critical are flexible
Sample Command Definition
define command {
command_name check_mysql_tmp_tables
command_line $USER1$/mysql_health_check.pl
--hostname $HOSTADDRESS$ --user myuser --password
mypass
Sample Command Definition
define command {
command_name check_mysql_tmp_tables
command_line $USER1$/mysql_health_check.pl
--hostname $HOSTADDRESS$ --user myuser --password
mypass
--cache-dir=/var/lib/nagios/mysql_cache
--max-cache-age=300
Sample Command Definition
define command {
command_name check_mysql_cxns
command_line $USER1$/mysql_health_check.pl
--hostname $HOSTADDRESS$ --user myuser --password
mypass
--cache-dir=/var/lib/nagios/mysql_cache
--max-cache-age=300
--mode=varcomp
--expression=
"Max_used_connections/max_connections * 100"
--warning=">80" –critical=">90"
}
Sample Command Definition
command_name check_mysql_cxns
--mode=varcomp
--expression=
"Max_used_connections/max_connections * 100"
--warning=">80" –critical=">90"
}
Sample Service Definition
define service {
use generic-service
host_name __HOSTNAME__
service_description MySQL Connections
check_command check_mysql_cxns
}
Rates

Compare to last run
Rates

Compare to last run

mode=lastrun-varcomp
Rates

Compare to last run

mode=lastrun-varcomp

current{expr}
Rates

Compare to last run

mode=lastrun-varcomp

current{expr}

lastrun{expr}
Rates

Compare to last run

mode=lastrun-varcomp

current{expr}

lastrun{expr}

--comparison, no warn/crit
Query Rate
mysql_health_check.pl [host,user,pass]
mysql_health_check.pl [host,user,pass]
--mode lastrun-varcomp
Query Rate
mysql_health_check.pl [host,user,pass]
--mode lastrun-varcomp
--expression "(current{Queries} - lastrun{Queries})
Query Rate
mysql_health_check.pl [host,user,pass]
--mode lastrun-varcomp
--expression "(current{Queries} - lastrun{Queries})
/ (current{Uptime} – lastrun{Uptime})"
Query Rate
mysql_health_check.pl [host,user,pass]
--mode lastrun-varcomp
--expression "abs((current{Queries} - lastrun{Queries})
/ (current{Uptime} – lastrun{Uptime}))*100"
--comparison ">80"
Query Rate
define command {
command_name check_mysql_query_rate
command_line $USER1$/mysql_health_check.pl
--hostname $HOSTADDRESS$ --user myuser
--password mypass
--cache-dir=/var/lib/nagios/mysql_cache
--max-cache-age=300
--mode=lastrun-varcomp
--expression=
"abs((current{Queries} - lastrun{Queries}) /
(current{Uptime} – lastrun{Uptime}))*100"
--comparison > 100
}
Other Modes

--mode=long-query

--mode=locked-query

%metadata{proc_list}

SHOW FULL PROCESSLIST
Sample Command
Definition
define command {
command_name check_mysql_locked_queries
command_line $USER1$/mysql_health_check.pl
--hostname $HOSTADDRESS$ --user myuser
--password mypass
--cache-dir=/var/lib/nagios/mysql_cache
--max-cache-age=300
--mode=locked-query
--warning=$ARG1$ --critical=$ARG2$
}
Extending Information
sub fetch_server_meta_data {}
add a new hash key to %metadata
$metadata{varstatus} =
$dbh->selectall_arrayref(
q|SHOW GLOBAL VARIABLES|);
Extending Information
sub fetch_server_meta_data {}
add a new hash key to %metadata
$metadata{innodb_status} =
$dbh->selectall_arrayref(
q|SHOW ENGINE INNODB STATUS|);
For example
• %metadata{innodb_status}
– SHOW ENGINE INNODB STATUS
• Already exists, unused
For example
• %metadata{innodb_status}
– SHOW ENGINE INNODB STATUS
• Already exists, unused
• %metadata{master_status}
– SHOW MASTER STATUS
For example
• %metadata{innodb_status}
– SHOW ENGINE INNODB STATUS
• Already exists, unused
• %metadata{master_status}
– SHOW MASTER STATUS
• %metadata{slave_status}
– SHOW SLAVE STATUS
“Standard” checks
% max connections
--expression
'Threads_connected/max_connections*100'
“Standard” checks
% max connections
--expression
'Threads_connected/max_connections*100'
InnoDB enabled
--expression “have_innodb”
--comparison=“ne 'YES'”
define command {
command_name check_mysql_connections
command_line $USER1$/mysql_health_check.pl
--hostname $HOSTADDRESS$ --port 3306 --user
<user> --password <password> --mode=varcomp
--expression="Threads_connected/max_connections
* 100" --comparison=">80"
}
define command {
command_name check_mysql_innodb
command_line $USER1$/mysql_health_check.pl
--hostname $HOSTADDRESS$ --port 3306 --user
<user> --password <password> --mode=varcomp
--expression="have_innodb" --comparison="ne
'YES'"
}
Did MySQL Crash?
Nagios set to check every 5 minutes
Did MySQL Crash?
Nagios set to check every 5 minutes
Might miss a crash
Did MySQL Crash?
Nagios set to check every 5 minutes
Might miss a crash
Uptime!
--expression 'Uptime'
--comparison=“<1800”
Did MySQL Crash?
define command {
command_name check_mysql_uptime
command_line $USER1$/mysql_health_check.pl
--hostname $HOSTADDRESS$ --port 3306 --user
<user> --password <password> --mode=varcomp
--expression="Uptime" --comparison="<1800"
}
“Standard” checks
read_only for slaves
--expression “read_only”
--comparison=“ne 'YES'”
“Standard” checks
read_only for slaves
--expression “read_only”
--comparison=“ne 'YES'”
% of sleeping connections
# connected, # running, # max connections
“Standard” checks
read_only for slaves
--expression “read_only”
--comparison=“ne 'YES'”
% of sleeping connections
# connected, # running, # max connections
--expression="(Threads_connected-
Threads_running)/max_connections * 100"
--comparison=">$ARG1$"
define command {
command_name check_mysql_read_only
command_line $USER1$/mysql_health_check.pl
--hostname $HOSTADDRESS$ --port 3306 --user
<user> --password <password> --mode=varcomp
--expression="read_only" --comparison="ne
'YES'"
}
define command {
command_name check_mysql_connections
command_line $USER1$/mysql_health_check.pl
--hostname $HOSTADDRESS$ --port 3306 --user
<user> --password <password> --mode=varcomp
--expression="(Threads_connected-
Threads_running)/max_connections * 100"
--comparison=">$ARG1$"
Limitations

One check/calculation per Nagios service
– But, you can use many variables
– Cached output

Does not output for performance data
– Not hard to modify, just no need yet
Where to get it
https://github.com/palominodb/PalominoDB-
Public-Code-Repository/tree/master/nagios/
www.palominodb.com->Community->Projects
Other Nagios Plugins
Nagios Plugin for Partitions
table_partitions.pl --host
--user --pass
--database --table
--range [days|weeks|months]
--verify #
Nagios Plugin for Partitions
table_partitions.pl --host db1.mozilla.com
--user nagiosuser --pass nagiospass
--database addons --table user_addons
--range months
--verify 3
After using pt-table-checksum (master)
Slaves have a table with checksum
this_crc vs master_crc
Nagios Plugin for Checksums
Nagios Plugin for Checksums
check_table_checksums.pl -H host
--user username --pass password
-T checksum_table
-I checksum_freshness
-b dbs,to,skip
More Resources
www.palominodb.com->Community->Projects
www.mysqlmarinate.com
scabral@mozilla.com
OurSQL podcast (oursql.com)
slides: http://bit.ly/nagios_mysql2013
MySQL Administrator's Bible
youtube.com/tcation
http://planet.mysql.com

Mais conteúdo relacionado

Mais procurados

Security 202 - Are you sure your site is secure?
Security 202 - Are you sure your site is secure?Security 202 - Are you sure your site is secure?
Security 202 - Are you sure your site is secure?
ConFoo
 
Marrow: A Meta-Framework for Python 2.6+ and 3.1+
Marrow: A Meta-Framework for Python 2.6+ and 3.1+Marrow: A Meta-Framework for Python 2.6+ and 3.1+
Marrow: A Meta-Framework for Python 2.6+ and 3.1+
ConFoo
 
Facebook的缓存系统
Facebook的缓存系统Facebook的缓存系统
Facebook的缓存系统
yiditushe
 

Mais procurados (20)

Jsr107 come, code, cache, compute!
Jsr107 come, code, cache, compute!Jsr107 come, code, cache, compute!
Jsr107 come, code, cache, compute!
 
Hands on Data Grids - Stephen Milidge
Hands on Data Grids - Stephen MilidgeHands on Data Grids - Stephen Milidge
Hands on Data Grids - Stephen Milidge
 
Elasticsearch at Dailymotion
Elasticsearch at DailymotionElasticsearch at Dailymotion
Elasticsearch at Dailymotion
 
Temporary Cache Assistance (Transients API): WordCamp Birmingham 2014
Temporary Cache Assistance (Transients API): WordCamp Birmingham 2014Temporary Cache Assistance (Transients API): WordCamp Birmingham 2014
Temporary Cache Assistance (Transients API): WordCamp Birmingham 2014
 
Security 202 - Are you sure your site is secure?
Security 202 - Are you sure your site is secure?Security 202 - Are you sure your site is secure?
Security 202 - Are you sure your site is secure?
 
Marrow: A Meta-Framework for Python 2.6+ and 3.1+
Marrow: A Meta-Framework for Python 2.6+ and 3.1+Marrow: A Meta-Framework for Python 2.6+ and 3.1+
Marrow: A Meta-Framework for Python 2.6+ and 3.1+
 
Caching and tuning fun for high scalability @ PHPTour
Caching and tuning fun for high scalability @ PHPTourCaching and tuning fun for high scalability @ PHPTour
Caching and tuning fun for high scalability @ PHPTour
 
Gauva
GauvaGauva
Gauva
 
Securing your MySQL server
Securing your MySQL serverSecuring your MySQL server
Securing your MySQL server
 
Redis begins
Redis beginsRedis begins
Redis begins
 
Cache is King: RubyConf Columbia
Cache is King: RubyConf ColumbiaCache is King: RubyConf Columbia
Cache is King: RubyConf Columbia
 
Managing a shared mysql farm dpc11
Managing a shared mysql farm dpc11Managing a shared mysql farm dpc11
Managing a shared mysql farm dpc11
 
It's 10pm: Do You Know Where Your Writes Are?
It's 10pm: Do You Know Where Your Writes Are?It's 10pm: Do You Know Where Your Writes Are?
It's 10pm: Do You Know Where Your Writes Are?
 
My sql administration
My sql administrationMy sql administration
My sql administration
 
CONTOH MEMBUAT TABEL XAMPP
CONTOH MEMBUAT TABEL XAMPPCONTOH MEMBUAT TABEL XAMPP
CONTOH MEMBUAT TABEL XAMPP
 
Caching and tuning fun for high scalability @ 4Developers
Caching and tuning fun for high scalability @ 4DevelopersCaching and tuning fun for high scalability @ 4Developers
Caching and tuning fun for high scalability @ 4Developers
 
Caching and tuning fun for high scalability
Caching and tuning fun for high scalabilityCaching and tuning fun for high scalability
Caching and tuning fun for high scalability
 
Facebook的缓存系统
Facebook的缓存系统Facebook的缓存系统
Facebook的缓存系统
 
Wckansai 2014
Wckansai 2014Wckansai 2014
Wckansai 2014
 
Cache is King: Get the Most Bang for Your Buck From Ruby
Cache is King: Get the Most Bang for Your Buck From RubyCache is King: Get the Most Bang for Your Buck From Ruby
Cache is King: Get the Most Bang for Your Buck From Ruby
 

Destaque

Кейс Addinapp: интеграция Blend-a-Med в Купи батон!
Кейс Addinapp: интеграция Blend-a-Med в Купи батон! Кейс Addinapp: интеграция Blend-a-Med в Купи батон!
Кейс Addinapp: интеграция Blend-a-Med в Купи батон!
AddInApp - Russian mobile advertising
 
Рудакова Н.Н. Проблема сохранения и развития народных традиций (презентация)
Рудакова Н.Н. Проблема сохранения и развития народных традиций (презентация)Рудакова Н.Н. Проблема сохранения и развития народных традиций (презентация)
Рудакова Н.Н. Проблема сохранения и развития народных традиций (презентация)
vdohnovlennye
 
Guia medios antoniodiaz_worldgames
Guia medios antoniodiaz_worldgamesGuia medios antoniodiaz_worldgames
Guia medios antoniodiaz_worldgames
emiliomerayo
 
Housing and Neighborhoods Meeting 5 - Theme C
Housing and Neighborhoods Meeting 5 - Theme CHousing and Neighborhoods Meeting 5 - Theme C
Housing and Neighborhoods Meeting 5 - Theme C
oneregionforward
 
Furious&Fiery
Furious&FieryFurious&Fiery
Furious&Fiery
Furious12
 

Destaque (19)

Кейс Addinapp: интеграция Blend-a-Med в Купи батон!
Кейс Addinapp: интеграция Blend-a-Med в Купи батон! Кейс Addinapp: интеграция Blend-a-Med в Купи батон!
Кейс Addinapp: интеграция Blend-a-Med в Купи батон!
 
Nagios Conference 2013 - Michael Medin - NSClient++ Whats New
Nagios Conference 2013 - Michael Medin - NSClient++ Whats NewNagios Conference 2013 - Michael Medin - NSClient++ Whats New
Nagios Conference 2013 - Michael Medin - NSClient++ Whats New
 
How to migrate data from 3d Cart to Magento with LitExtension
How to migrate data from 3d Cart to Magento with LitExtensionHow to migrate data from 3d Cart to Magento with LitExtension
How to migrate data from 3d Cart to Magento with LitExtension
 
Рудакова Н.Н. Проблема сохранения и развития народных традиций (презентация)
Рудакова Н.Н. Проблема сохранения и развития народных традиций (презентация)Рудакова Н.Н. Проблема сохранения и развития народных традиций (презентация)
Рудакова Н.Н. Проблема сохранения и развития народных традиций (презентация)
 
Say NO to sexual harassment
Say NO to sexual harassmentSay NO to sexual harassment
Say NO to sexual harassment
 
Το Μισθωτήριο Συμβόλαιο Φέρνει Ηρεμία | ioannischiou.gr
Το Μισθωτήριο Συμβόλαιο Φέρνει Ηρεμία | ioannischiou.grΤο Μισθωτήριο Συμβόλαιο Φέρνει Ηρεμία | ioannischiou.gr
Το Μισθωτήριο Συμβόλαιο Φέρνει Ηρεμία | ioannischiou.gr
 
A política arquivística nacional e os arquivos da assistência social
A política arquivística nacional e os arquivos da assistência socialA política arquivística nacional e os arquivos da assistência social
A política arquivística nacional e os arquivos da assistência social
 
"Семейные авто" образца лета 2013
"Семейные авто" образца лета 2013"Семейные авто" образца лета 2013
"Семейные авто" образца лета 2013
 
Guia medios antoniodiaz_worldgames
Guia medios antoniodiaz_worldgamesGuia medios antoniodiaz_worldgames
Guia medios antoniodiaz_worldgames
 
Medes [Guia d'ús]
Medes [Guia d'ús]Medes [Guia d'ús]
Medes [Guia d'ús]
 
Nagios Conference 2013 - Rodrigo Faria - Helping Nagios grow in Your Country
Nagios Conference 2013 - Rodrigo Faria - Helping Nagios grow in Your CountryNagios Conference 2013 - Rodrigo Faria - Helping Nagios grow in Your Country
Nagios Conference 2013 - Rodrigo Faria - Helping Nagios grow in Your Country
 
Housing and Neighborhoods Meeting 5 - Theme C
Housing and Neighborhoods Meeting 5 - Theme CHousing and Neighborhoods Meeting 5 - Theme C
Housing and Neighborhoods Meeting 5 - Theme C
 
Summary of Knowledge
Summary of KnowledgeSummary of Knowledge
Summary of Knowledge
 
Nulltox
Nulltox      Nulltox
Nulltox
 
Nagios Conference 2013 - James Clark - Nagios On-Call Rotation
Nagios Conference 2013 - James Clark - Nagios On-Call RotationNagios Conference 2013 - James Clark - Nagios On-Call Rotation
Nagios Conference 2013 - James Clark - Nagios On-Call Rotation
 
Nagios Conference 2013 - Ethan Galstad and Scott Wilkerson- Ask Nagios!
Nagios Conference 2013 - Ethan Galstad and Scott Wilkerson-  Ask Nagios!Nagios Conference 2013 - Ethan Galstad and Scott Wilkerson-  Ask Nagios!
Nagios Conference 2013 - Ethan Galstad and Scott Wilkerson- Ask Nagios!
 
Furious&Fiery
Furious&FieryFurious&Fiery
Furious&Fiery
 
Nagios Conference 2013 - Andy Brist - Data Visualizations and Nagios XI
Nagios Conference 2013 - Andy Brist - Data Visualizations and Nagios XINagios Conference 2013 - Andy Brist - Data Visualizations and Nagios XI
Nagios Conference 2013 - Andy Brist - Data Visualizations and Nagios XI
 
Digital Marketing Plan Example
Digital Marketing Plan ExampleDigital Marketing Plan Example
Digital Marketing Plan Example
 

Semelhante a Nagios Conference 2013 - Sheeri Cabral - Alerting With MySQL and Nagios

My sql monitoring cu沙龙
My sql monitoring cu沙龙My sql monitoring cu沙龙
My sql monitoring cu沙龙
colderboy17
 
Trouble shooting apachecloudstack
Trouble shooting apachecloudstackTrouble shooting apachecloudstack
Trouble shooting apachecloudstack
Sailaja Sunil
 
Oreilly Webcast Jan 09, 2009
Oreilly Webcast Jan 09, 2009Oreilly Webcast Jan 09, 2009
Oreilly Webcast Jan 09, 2009
Sean Hull
 
Make Your Life Easier With Maatkit
Make Your Life Easier With MaatkitMake Your Life Easier With Maatkit
Make Your Life Easier With Maatkit
MySQLConference
 

Semelhante a Nagios Conference 2013 - Sheeri Cabral - Alerting With MySQL and Nagios (20)

My sql monitoring cu沙龙
My sql monitoring cu沙龙My sql monitoring cu沙龙
My sql monitoring cu沙龙
 
(SDD402) Amazon ElastiCache Deep Dive | AWS re:Invent 2014
(SDD402) Amazon ElastiCache Deep Dive | AWS re:Invent 2014(SDD402) Amazon ElastiCache Deep Dive | AWS re:Invent 2014
(SDD402) Amazon ElastiCache Deep Dive | AWS re:Invent 2014
 
My two cents about Mysql backup
My two cents about Mysql backupMy two cents about Mysql backup
My two cents about Mysql backup
 
ProxySQL and the Tricks Up Its Sleeve - Percona Live 2022.pdf
ProxySQL and the Tricks Up Its Sleeve - Percona Live 2022.pdfProxySQL and the Tricks Up Its Sleeve - Percona Live 2022.pdf
ProxySQL and the Tricks Up Its Sleeve - Percona Live 2022.pdf
 
MySQL server security
MySQL server securityMySQL server security
MySQL server security
 
Application Stack - TIAD Camp Microsoft Cloud Readiness
Application Stack - TIAD Camp Microsoft Cloud ReadinessApplication Stack - TIAD Camp Microsoft Cloud Readiness
Application Stack - TIAD Camp Microsoft Cloud Readiness
 
DB proxy server test: run tests on tens of virtual machines with Jenkins, Vag...
DB proxy server test: run tests on tens of virtual machines with Jenkins, Vag...DB proxy server test: run tests on tens of virtual machines with Jenkins, Vag...
DB proxy server test: run tests on tens of virtual machines with Jenkins, Vag...
 
Php version 7
Php version 7Php version 7
Php version 7
 
Intro to PAS REST API
Intro to PAS REST APIIntro to PAS REST API
Intro to PAS REST API
 
Monitoring your technology stack with New Relic
Monitoring your technology stack with New RelicMonitoring your technology stack with New Relic
Monitoring your technology stack with New Relic
 
Trouble shooting apachecloudstack
Trouble shooting apachecloudstackTrouble shooting apachecloudstack
Trouble shooting apachecloudstack
 
Cooking with Chef
Cooking with ChefCooking with Chef
Cooking with Chef
 
Oreilly Webcast Jan 09, 2009
Oreilly Webcast Jan 09, 2009Oreilly Webcast Jan 09, 2009
Oreilly Webcast Jan 09, 2009
 
Burn down the silos! Helping dev and ops gel on high availability websites
Burn down the silos! Helping dev and ops gel on high availability websitesBurn down the silos! Helping dev and ops gel on high availability websites
Burn down the silos! Helping dev and ops gel on high availability websites
 
Service discovery and configuration provisioning
Service discovery and configuration provisioningService discovery and configuration provisioning
Service discovery and configuration provisioning
 
Varnish presentation for the Symfony Zaragoza user group
Varnish presentation for the Symfony Zaragoza user groupVarnish presentation for the Symfony Zaragoza user group
Varnish presentation for the Symfony Zaragoza user group
 
Nagios Conference 2014 - Rob Hassing - How To Maintain Over 20 Monitoring App...
Nagios Conference 2014 - Rob Hassing - How To Maintain Over 20 Monitoring App...Nagios Conference 2014 - Rob Hassing - How To Maintain Over 20 Monitoring App...
Nagios Conference 2014 - Rob Hassing - How To Maintain Over 20 Monitoring App...
 
Make Your Life Easier With Maatkit
Make Your Life Easier With MaatkitMake Your Life Easier With Maatkit
Make Your Life Easier With Maatkit
 
HashiCorp's Vault - The Examples
HashiCorp's Vault - The ExamplesHashiCorp's Vault - The Examples
HashiCorp's Vault - The Examples
 
Building cloud stack at scale
Building cloud stack at scaleBuilding cloud stack at scale
Building cloud stack at scale
 

Mais de Nagios

Mais de Nagios (20)

Nagios XI Best Practices
Nagios XI Best PracticesNagios XI Best Practices
Nagios XI Best Practices
 
Jesse Olson - Nagios Log Server Architecture Overview
Jesse Olson - Nagios Log Server Architecture OverviewJesse Olson - Nagios Log Server Architecture Overview
Jesse Olson - Nagios Log Server Architecture Overview
 
Trevor McDonald - Nagios XI Under The Hood
Trevor McDonald  - Nagios XI Under The HoodTrevor McDonald  - Nagios XI Under The Hood
Trevor McDonald - Nagios XI Under The Hood
 
Sean Falzon - Nagios - Resilient Notifications
Sean Falzon - Nagios - Resilient NotificationsSean Falzon - Nagios - Resilient Notifications
Sean Falzon - Nagios - Resilient Notifications
 
Marcus Rochelle - Landis+Gyr - Monitoring with Nagios Enterprise Edition
Marcus Rochelle - Landis+Gyr - Monitoring with Nagios Enterprise EditionMarcus Rochelle - Landis+Gyr - Monitoring with Nagios Enterprise Edition
Marcus Rochelle - Landis+Gyr - Monitoring with Nagios Enterprise Edition
 
Janice Singh - Writing Custom Nagios Plugins
Janice Singh - Writing Custom Nagios PluginsJanice Singh - Writing Custom Nagios Plugins
Janice Singh - Writing Custom Nagios Plugins
 
Dave Williams - Nagios Log Server - Practical Experience
Dave Williams - Nagios Log Server - Practical ExperienceDave Williams - Nagios Log Server - Practical Experience
Dave Williams - Nagios Log Server - Practical Experience
 
Mike Weber - Nagios and Group Deployment of Service Checks
Mike Weber - Nagios and Group Deployment of Service ChecksMike Weber - Nagios and Group Deployment of Service Checks
Mike Weber - Nagios and Group Deployment of Service Checks
 
Mike Guthrie - Revamping Your 10 Year Old Nagios Installation
Mike Guthrie - Revamping Your 10 Year Old Nagios InstallationMike Guthrie - Revamping Your 10 Year Old Nagios Installation
Mike Guthrie - Revamping Your 10 Year Old Nagios Installation
 
Bryan Heden - Agile Networks - Using Nagios XI as the platform for Monitoring...
Bryan Heden - Agile Networks - Using Nagios XI as the platform for Monitoring...Bryan Heden - Agile Networks - Using Nagios XI as the platform for Monitoring...
Bryan Heden - Agile Networks - Using Nagios XI as the platform for Monitoring...
 
Matt Bruzek - Monitoring Your Public Cloud With Nagios
Matt Bruzek - Monitoring Your Public Cloud With NagiosMatt Bruzek - Monitoring Your Public Cloud With Nagios
Matt Bruzek - Monitoring Your Public Cloud With Nagios
 
Lee Myers - What To Do When Nagios Notification Don't Meet Your Needs.
Lee Myers - What To Do When Nagios Notification Don't Meet Your Needs.Lee Myers - What To Do When Nagios Notification Don't Meet Your Needs.
Lee Myers - What To Do When Nagios Notification Don't Meet Your Needs.
 
Eric Loyd - Fractal Nagios
Eric Loyd - Fractal NagiosEric Loyd - Fractal Nagios
Eric Loyd - Fractal Nagios
 
Marcelo Perazolo, Lead Software Architect, IBM Corporation - Monitoring a Pow...
Marcelo Perazolo, Lead Software Architect, IBM Corporation - Monitoring a Pow...Marcelo Perazolo, Lead Software Architect, IBM Corporation - Monitoring a Pow...
Marcelo Perazolo, Lead Software Architect, IBM Corporation - Monitoring a Pow...
 
Thomas Schmainda - Tracking Boeing Satellites With Nagios - Nagios World Conf...
Thomas Schmainda - Tracking Boeing Satellites With Nagios - Nagios World Conf...Thomas Schmainda - Tracking Boeing Satellites With Nagios - Nagios World Conf...
Thomas Schmainda - Tracking Boeing Satellites With Nagios - Nagios World Conf...
 
Nagios World Conference 2015 - Scott Wilkerson Opening
Nagios World Conference 2015 - Scott Wilkerson OpeningNagios World Conference 2015 - Scott Wilkerson Opening
Nagios World Conference 2015 - Scott Wilkerson Opening
 
Nrpe - Nagios Remote Plugin Executor. NRPE plugin for Nagios Core
Nrpe - Nagios Remote Plugin Executor. NRPE plugin for Nagios CoreNrpe - Nagios Remote Plugin Executor. NRPE plugin for Nagios Core
Nrpe - Nagios Remote Plugin Executor. NRPE plugin for Nagios Core
 
Nagios Log Server - Features
Nagios Log Server - FeaturesNagios Log Server - Features
Nagios Log Server - Features
 
Nagios Network Analyzer - Features
Nagios Network Analyzer - FeaturesNagios Network Analyzer - Features
Nagios Network Analyzer - Features
 
Nagios Conference 2014 - Dorance Martinez Cortes - Customizing Nagios
Nagios Conference 2014 - Dorance Martinez Cortes - Customizing NagiosNagios Conference 2014 - Dorance Martinez Cortes - Customizing Nagios
Nagios Conference 2014 - Dorance Martinez Cortes - Customizing Nagios
 

Último

+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
?#DUbAI#??##{{(☎️+971_581248768%)**%*]'#abortion pills for sale in dubai@
 
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers:  A Deep Dive into Serverless Spatial Data and FMECloud Frontiers:  A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FME
Safe Software
 

Último (20)

+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
 
Scaling API-first – The story of a global engineering organization
Scaling API-first – The story of a global engineering organizationScaling API-first – The story of a global engineering organization
Scaling API-first – The story of a global engineering organization
 
Real Time Object Detection Using Open CV
Real Time Object Detection Using Open CVReal Time Object Detection Using Open CV
Real Time Object Detection Using Open CV
 
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
 
Understanding Discord NSFW Servers A Guide for Responsible Users.pdf
Understanding Discord NSFW Servers A Guide for Responsible Users.pdfUnderstanding Discord NSFW Servers A Guide for Responsible Users.pdf
Understanding Discord NSFW Servers A Guide for Responsible Users.pdf
 
Top 10 Most Downloaded Games on Play Store in 2024
Top 10 Most Downloaded Games on Play Store in 2024Top 10 Most Downloaded Games on Play Store in 2024
Top 10 Most Downloaded Games on Play Store in 2024
 
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
 
Boost Fertility New Invention Ups Success Rates.pdf
Boost Fertility New Invention Ups Success Rates.pdfBoost Fertility New Invention Ups Success Rates.pdf
Boost Fertility New Invention Ups Success Rates.pdf
 
TrustArc Webinar - Unlock the Power of AI-Driven Data Discovery
TrustArc Webinar - Unlock the Power of AI-Driven Data DiscoveryTrustArc Webinar - Unlock the Power of AI-Driven Data Discovery
TrustArc Webinar - Unlock the Power of AI-Driven Data Discovery
 
Connector Corner: Accelerate revenue generation using UiPath API-centric busi...
Connector Corner: Accelerate revenue generation using UiPath API-centric busi...Connector Corner: Accelerate revenue generation using UiPath API-centric busi...
Connector Corner: Accelerate revenue generation using UiPath API-centric busi...
 
The 7 Things I Know About Cyber Security After 25 Years | April 2024
The 7 Things I Know About Cyber Security After 25 Years | April 2024The 7 Things I Know About Cyber Security After 25 Years | April 2024
The 7 Things I Know About Cyber Security After 25 Years | April 2024
 
Data Cloud, More than a CDP by Matt Robison
Data Cloud, More than a CDP by Matt RobisonData Cloud, More than a CDP by Matt Robison
Data Cloud, More than a CDP by Matt Robison
 
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers:  A Deep Dive into Serverless Spatial Data and FMECloud Frontiers:  A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FME
 
Apidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, Adobe
Apidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, AdobeApidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, Adobe
Apidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, Adobe
 
Powerful Google developer tools for immediate impact! (2023-24 C)
Powerful Google developer tools for immediate impact! (2023-24 C)Powerful Google developer tools for immediate impact! (2023-24 C)
Powerful Google developer tools for immediate impact! (2023-24 C)
 
2024: Domino Containers - The Next Step. News from the Domino Container commu...
2024: Domino Containers - The Next Step. News from the Domino Container commu...2024: Domino Containers - The Next Step. News from the Domino Container commu...
2024: Domino Containers - The Next Step. News from the Domino Container commu...
 
Artificial Intelligence Chap.5 : Uncertainty
Artificial Intelligence Chap.5 : UncertaintyArtificial Intelligence Chap.5 : Uncertainty
Artificial Intelligence Chap.5 : Uncertainty
 
presentation ICT roal in 21st century education
presentation ICT roal in 21st century educationpresentation ICT roal in 21st century education
presentation ICT roal in 21st century education
 
Apidays New York 2024 - The Good, the Bad and the Governed by David O'Neill, ...
Apidays New York 2024 - The Good, the Bad and the Governed by David O'Neill, ...Apidays New York 2024 - The Good, the Bad and the Governed by David O'Neill, ...
Apidays New York 2024 - The Good, the Bad and the Governed by David O'Neill, ...
 
Deploy with confidence: VMware Cloud Foundation 5.1 on next gen Dell PowerEdg...
Deploy with confidence: VMware Cloud Foundation 5.1 on next gen Dell PowerEdg...Deploy with confidence: VMware Cloud Foundation 5.1 on next gen Dell PowerEdg...
Deploy with confidence: VMware Cloud Foundation 5.1 on next gen Dell PowerEdg...
 

Nagios Conference 2013 - Sheeri Cabral - Alerting With MySQL and Nagios