SlideShare a Scribd company logo
Bastian Widmer / @dasrecht
Logging with Elasticsearch,
Logstash & Kibana
But why?
„Can you check the errors from yesterday between 15.02 and 15.07“
Logging with Elasticsearch, Logstash & Kibana
Visualization > Plaintext
Logging with Elasticsearch, Logstash & Kibana
Logging with Elasticsearch, Logstash & Kibana
Who are you?
Bastian Widmer
@dasrecht / bastianwidmer.ch
Switzerland
Development and Operations Engineer
Agenda 1 Introduction
2
3
4
5
Architecture
ELK Stack
Tools!
Demo
ELK Stack!ELK Stack!
ELK Stack!ELK Stack!
Elasticsearch
Logstash
Kibana
Elasticsearch
Elasticsearch
• Java
• Search and Index
• Distributed — Copies & Shards
• Clustering
• API — JSON / RESTful
• Apache Lucene
Elasticsearch
• Index

like a Database
• Replica

Copies for Fault Tolerance
• Shard

Lucene Instance which indexes
the Data
 see : http://blog.liip.ch/archive/2013/07/19/on-elasticsearch-performance.html
Elasticsearch
Logstash
Logstash
• Multiple Input / Multiple Output
• Centralize Logs
• Collect
• Parse
• Store / Forward
Logstash
The life of an event
• Input
• Filters
• Output
• Codecs
Logstash
• JRuby*
• >1.4.0 - FlatJAR Release is gone
• Instead of running „java -jar logstash.jar“ — „bin/logstash“
• Contrib Plugins
• Daily Indices
!
* see https://gist.github.com/jordansissel/978956
Input
• File
• Syslog
• Redis
• logstash-forwarder (former Lumberjack)
Filters
• Grok
• Mutate
• Drop
• Clone
• GeoIP (!!!)
Outputs
• Elasticsearch
• File
• Graphite
• StatsD
Logstash
1 input {!
2 stdin { }!
3 }!
4 !
5 output {!
6 stdout {!
7 codec => rubydebug!
8 }!
9 }!
!
Logstash
1 vagrant@precise64$ ./logstash agent -f 1_simpleconfig.cfg!
2 very important log message!!
3 {!
4 "message" => "very important log message!",!
5 "@version" => "1",!
6 "@timestamp" => "2014-04-21T16:18:02.952Z",!
7 "host" => "precise64"!
8 }
Logstash
1 input {!
2 stdin { }!
3 }!
4 output {!
5 elasticsearch{!
6 host => "127.0.0.1"!
7 }!
8 stdout {!
9 codec => rubydebug!
10 }!
11 }
Logstash
1 input {!
2 file {!
3 path => "/var/log/syslog"!
4 start_position => beginning!
5 }!
6 }!
7 !
8 output {!
9 stdout {!
10 codec => rubydebug!
11 }!
12 elasticsearch{!
13 host => "127.0.0.1"!
14 }!
15 }
Logstash
Errno::EBADF: Bad file descriptor - Bad file descriptor
Kibana
Logging with Elasticsearch, Logstash & Kibana
Logging with Elasticsearch, Logstash & Kibana
Architecture
Architecture
Shipper
Shipper
Shipper Broker Indexer
Search
and
Storage
Architecture
Shipper
Shipper
Shipper Broker Indexer
Search
and
Storage
Syslog
Architecture
Shipper
Shipper
Shipper Broker Indexer
Search
and
Storage
Syslog Logstash
Architecture
Shipper
Shipper
Shipper Broker Indexer
Search
and
Storage
Syslog Logstash Elasticsearch
Architecture
the real deal!
Architecture
Shipper
Shipper
Shipper BrokerBroker Indexer
Search
and
Storage
Logstash Redis Logstash Elasticsearch
Tools!
(because anyone needs a bit help)
Elasticsearch Head
http://mobz.github.io/elasticsearch-head/
• Close	

• Remove	

• Backup	

• Restore
elasticsearch-index-mgmt
http://s.nrdy.ch/eee
But then…
Curator
• Time Series Indices? THIS IS THE TOOL!
• Close Indexes
• Delete (by space or time)
• Disable Bloom Filter
• Optimize / ForceMerge
• https://github.com/elasticsearch/curator
Curator
• Time Series Indexes? THIS IS THE TOOL!
• Close Indexes
• Remove Indexes
• Remove by Space Usage
• Disable Bloom Filter
• https://github.com/elasticsearch/curator
Curator
Perfect for Time Series Indexes
Curator
• Close indices older than 14 days, delete indices older than 30 days 



curator --host my-elasticsearch -d 30 -c 14
• Disable bloom filter for indices older than 2 days, close indices older than
14 days, delete indices older than 30 days:



curator --host my-elasticsearch -b 2 -c 14 -d 30
Curator
1 root@precise64:/home/vagrant# curator -c 7 -b 2 -d 10!
2 2014-04-21T17:57:19.419 INFO main:333 Job starting...!
3 2014-04-21T17:57:19.420 INFO _new_conn:180 Starting new HTTP connection (1): localhost!
4 2014-04-21T17:57:19.422 INFO log_request_success:49 GET http://localhost:9200/ [status:200 request:0.002s]!
5 2014-04-21T17:57:19.423 INFO main:359 Deleting indices older than 10 days...!
6 2014-04-21T17:57:19.430 INFO log_request_success:49 GET http://localhost:9200/logstash-*/_settings?
expand_wildcards=closed [status:200 request:0.007s]!
7 2014-04-21T17:57:19.433 INFO find_expired_indices:209 logstash-2014.04.21 is 10 days, 0:00:00 above the cutoff.!
8 2014-04-21T17:57:19.433 INFO index_loop:309 DELETE index operations completed.!
9 2014-04-21T17:57:19.433 INFO main:364 Closing indices older than 7 days...!
10 2014-04-21T17:57:19.434 INFO log_request_success:49 GET http://localhost:9200/logstash-*/_settings?
expand_wildcards=closed [status:200 request:0.001s]!
11 2014-04-21T17:57:19.435 INFO find_expired_indices:209 logstash-2014.04.21 is 7 days, 0:00:00 above the cutoff.!
12 2014-04-21T17:57:19.435 INFO index_loop:309 CLOSE index operations completed.!
13 2014-04-21T17:57:19.435 INFO main:369 Disabling bloom filter on indices older than 2 days...!
14 2014-04-21T17:57:19.437 INFO log_request_success:49 GET http://localhost:9200/logstash-*/_settings?
expand_wildcards=closed [status:200 request:0.002s]!
15 2014-04-21T17:57:19.438 INFO find_expired_indices:209 logstash-2014.04.21 is 2 days, 0:00:00 above the cutoff.!
16 2014-04-21T17:57:19.438 INFO index_loop:309 DISABLE BLOOM FILTER FOR index operations completed.!
17 2014-04-21T17:57:19.438 INFO main:379 Done in 0:00:00.020348.!
BigDesk
bigdesk.org
Grok Debugger
grokdebug.herokuapp.com
Logstash Cookbook
cookbook.logstash.net
The Logstash Book
logstashbook.com
Logfiles
Logstash
Elasticsearch
Kibana
DEMO!DEMO!
Take Home
• Centralized Logging saves time
• Is fun with the ELK Stack
• Gives you Graphs to Interpret
• „can you check the errors from yesterday between
15.02 and 15.07“ get’s A LOT easier
• Start here tomorrow: http://logstash.net/docs/
1.4.0/tutorials/getting-started-with-logstash
Thank you for having me
here!
Slides : http://s.nrdy.ch/campus-logging
Logging with Elasticsearch, Logstash & Kibana
Images Used
• Elk : https://www.flickr.com/photos/ucumari/353839518/
• Paper Stash : https://www.flickr.com/photos/shehan365/8394630603/
• Architecture : https://www.flickr.com/photos/dasrecht/6743411525/

More Related Content

PPTX
Elastic stack Presentation
Amr Alaa Yassen
 
PPTX
Elk stack
Jilles van Gurp
 
PPTX
ELK Stack
Phuc Nguyen
 
PPTX
Elk
Caleb Wang
 
PDF
ELK introduction
Waldemar Neto
 
PPTX
The Elastic ELK Stack
enterprisesearchmeetup
 
PDF
Introducing ELK
AllBits BVBA (freelancer)
 
PDF
Log analysis with the elk stack
Vikrant Chauhan
 
Elastic stack Presentation
Amr Alaa Yassen
 
Elk stack
Jilles van Gurp
 
ELK Stack
Phuc Nguyen
 
ELK introduction
Waldemar Neto
 
The Elastic ELK Stack
enterprisesearchmeetup
 
Introducing ELK
AllBits BVBA (freelancer)
 
Log analysis with the elk stack
Vikrant Chauhan
 

What's hot (20)

PPTX
Elastic - ELK, Logstash & Kibana
SpringPeople
 
PPTX
Logstash
Rajgourav Jain
 
PDF
What Is ELK Stack | ELK Tutorial For Beginners | Elasticsearch Kibana | ELK S...
Edureka!
 
PDF
Elk - An introduction
Hossein Shemshadi
 
PDF
Kibana + timelion: time series with the elastic stack
Sylvain Wallez
 
PPTX
Elastic Stack Introduction
Vikram Shinde
 
PDF
ELK Stack
Eberhard Wolff
 
PPTX
Centralized Logging System Using ELK Stack
Rohit Sharma
 
PPT
Logstash
琛琳 饶
 
PPT
Oracle Transparent Data Encryption (TDE) 12c
Nabeel Yoosuf
 
PDF
Windows 10 Nt Heap Exploitation (Chinese version)
Angel Boy
 
PPTX
Squirreling Away $640 Billion: How Stripe Leverages Flink for Change Data Cap...
Flink Forward
 
PDF
MacOS memory allocator (libmalloc) Exploitation
Angel Boy
 
PPTX
ELK Elasticsearch Logstash and Kibana Stack for Log Management
El Mahdi Benzekri
 
PPT
SLF4J (Simple Logging Facade for Java)
Guo Albert
 
PPTX
RedisConf17 - Roblox - How Roblox Keeps Millions of Users Up to Date with Red...
Redis Labs
 
PDF
Designing ETL Pipelines with Structured Streaming and Delta Lake—How to Archi...
Databricks
 
PPTX
Customer Intelligence: Using the ELK Stack to Analyze ForgeRock OpenAM Audit ...
ForgeRock
 
PDF
初探 OpenTelemetry - 蒐集遙測數據的新標準
Marcus Tung
 
PDF
Elasticsearch
Hermeto Romano
 
Elastic - ELK, Logstash & Kibana
SpringPeople
 
Logstash
Rajgourav Jain
 
What Is ELK Stack | ELK Tutorial For Beginners | Elasticsearch Kibana | ELK S...
Edureka!
 
Elk - An introduction
Hossein Shemshadi
 
Kibana + timelion: time series with the elastic stack
Sylvain Wallez
 
Elastic Stack Introduction
Vikram Shinde
 
ELK Stack
Eberhard Wolff
 
Centralized Logging System Using ELK Stack
Rohit Sharma
 
Logstash
琛琳 饶
 
Oracle Transparent Data Encryption (TDE) 12c
Nabeel Yoosuf
 
Windows 10 Nt Heap Exploitation (Chinese version)
Angel Boy
 
Squirreling Away $640 Billion: How Stripe Leverages Flink for Change Data Cap...
Flink Forward
 
MacOS memory allocator (libmalloc) Exploitation
Angel Boy
 
ELK Elasticsearch Logstash and Kibana Stack for Log Management
El Mahdi Benzekri
 
SLF4J (Simple Logging Facade for Java)
Guo Albert
 
RedisConf17 - Roblox - How Roblox Keeps Millions of Users Up to Date with Red...
Redis Labs
 
Designing ETL Pipelines with Structured Streaming and Delta Lake—How to Archi...
Databricks
 
Customer Intelligence: Using the ELK Stack to Analyze ForgeRock OpenAM Audit ...
ForgeRock
 
初探 OpenTelemetry - 蒐集遙測數據的新標準
Marcus Tung
 
Elasticsearch
Hermeto Romano
 
Ad

Viewers also liked (20)

PPTX
Attack monitoring using ElasticSearch Logstash and Kibana
Prajal Kulkarni
 
PDF
Advanced troubleshooting linux performance
Forthscale
 
ODP
Using Logstash, elasticsearch & kibana
Alejandro E Brito Monedero
 
PDF
使用 Elasticsearch 及 Kibana 進行巨量資料搜尋及視覺化-曾書庭
台灣資料科學年會
 
PDF
From Zero to Hero - Centralized Logging with Logstash & Elasticsearch
Sematext Group, Inc.
 
PPTX
Webinar usando graylog para la gestión centralizada de logs
atSistemas
 
PDF
Fluentd and PHP
chobi e
 
PDF
Fluentd and docker monitoring
Vinay Krishna
 
PDF
Application Logging With The ELK Stack
benwaine
 
PPT
How ElasticSearch lives in my DevOps life
琛琳 饶
 
PDF
Integrando Redis en aplicaciones Symfony2
Ronny López
 
PDF
Monitoring with Graylog - a modern approach to monitoring?
inovex GmbH
 
PDF
Marketingtag17 - Master Class "Digital Survival Guide"
Amazee Labs
 
PDF
Percona XtraDB Cluster ( Ensure high Availability )
Mydbops
 
PPT
Linux monitoring and Troubleshooting for DBA's
Mydbops
 
PPT
Linux Troubleshooting
Keith Wright
 
PDF
Fluentd vs. Logstash for OpenStack Log Management
NTT Communications Technology Development
 
PDF
Application Logging With Logstash
benwaine
 
ODP
Searching Relational Data with Elasticsearch
sirensolutions
 
PDF
Data modeling for Elasticsearch
Florian Hopf
 
Attack monitoring using ElasticSearch Logstash and Kibana
Prajal Kulkarni
 
Advanced troubleshooting linux performance
Forthscale
 
Using Logstash, elasticsearch & kibana
Alejandro E Brito Monedero
 
使用 Elasticsearch 及 Kibana 進行巨量資料搜尋及視覺化-曾書庭
台灣資料科學年會
 
From Zero to Hero - Centralized Logging with Logstash & Elasticsearch
Sematext Group, Inc.
 
Webinar usando graylog para la gestión centralizada de logs
atSistemas
 
Fluentd and PHP
chobi e
 
Fluentd and docker monitoring
Vinay Krishna
 
Application Logging With The ELK Stack
benwaine
 
How ElasticSearch lives in my DevOps life
琛琳 饶
 
Integrando Redis en aplicaciones Symfony2
Ronny López
 
Monitoring with Graylog - a modern approach to monitoring?
inovex GmbH
 
Marketingtag17 - Master Class "Digital Survival Guide"
Amazee Labs
 
Percona XtraDB Cluster ( Ensure high Availability )
Mydbops
 
Linux monitoring and Troubleshooting for DBA's
Mydbops
 
Linux Troubleshooting
Keith Wright
 
Fluentd vs. Logstash for OpenStack Log Management
NTT Communications Technology Development
 
Application Logging With Logstash
benwaine
 
Searching Relational Data with Elasticsearch
sirensolutions
 
Data modeling for Elasticsearch
Florian Hopf
 
Ad

Similar to Logging with Elasticsearch, Logstash & Kibana (20)

PPTX
Search and analyze data in real time
Rohit Kalsarpe
 
PDF
Deep Dive: Alfresco Core Repository (... embedded in a micro-services style a...
J V
 
PPTX
The ELK Stack - Get to Know Logs
GlobalLogic Ukraine
 
PDF
Docker Advanced registry usage
Docker, Inc.
 
PPTX
Why databases cry at night
Michael Yarichuk
 
PDF
Docker Logging and analysing with Elastic Stack
Jakub Hajek
 
PDF
Docker Logging and analysing with Elastic Stack - Jakub Hajek
PROIDEA
 
PPTX
Elk ruminating on logs
Mathew Beane
 
PPTX
System insight without Interference
Tony Tam
 
PPTX
Managing Your Security Logs with Elasticsearch
Vic Hargrave
 
PDF
ITB2017 - Keynote
Ortus Solutions, Corp
 
PDF
Fosdem10
wremes
 
PDF
Logs aggregation and analysis
Divante
 
PDF
RoR Workshop - Web applications hacking - Ruby on Rails example
Railwaymen
 
PDF
Workshop KrakYourNet2016 - Web applications hacking Ruby on Rails example
Anna Klepacka
 
PDF
Monitoring Oracle Database Instances with Zabbix
Gerger
 
PPTX
ELK Ruminating on Logs (Zendcon 2016)
Mathew Beane
 
PPTX
Icinga @ OSMC 2014
Icinga
 
PDF
OSMC 2014: Current state of Icinga | Icinga Team
NETWAYS
 
PDF
Managing Your Content with Elasticsearch
Samantha Quiñones
 
Search and analyze data in real time
Rohit Kalsarpe
 
Deep Dive: Alfresco Core Repository (... embedded in a micro-services style a...
J V
 
The ELK Stack - Get to Know Logs
GlobalLogic Ukraine
 
Docker Advanced registry usage
Docker, Inc.
 
Why databases cry at night
Michael Yarichuk
 
Docker Logging and analysing with Elastic Stack
Jakub Hajek
 
Docker Logging and analysing with Elastic Stack - Jakub Hajek
PROIDEA
 
Elk ruminating on logs
Mathew Beane
 
System insight without Interference
Tony Tam
 
Managing Your Security Logs with Elasticsearch
Vic Hargrave
 
ITB2017 - Keynote
Ortus Solutions, Corp
 
Fosdem10
wremes
 
Logs aggregation and analysis
Divante
 
RoR Workshop - Web applications hacking - Ruby on Rails example
Railwaymen
 
Workshop KrakYourNet2016 - Web applications hacking Ruby on Rails example
Anna Klepacka
 
Monitoring Oracle Database Instances with Zabbix
Gerger
 
ELK Ruminating on Logs (Zendcon 2016)
Mathew Beane
 
Icinga @ OSMC 2014
Icinga
 
OSMC 2014: Current state of Icinga | Icinga Team
NETWAYS
 
Managing Your Content with Elasticsearch
Samantha Quiñones
 

More from Amazee Labs (20)

PDF
WebExpresso Agiles Projektmanagement 03/03/2016
Amazee Labs
 
PDF
Drupal 8 deeper dive
Amazee Labs
 
PDF
How to run a successful Drupal shop
Amazee Labs
 
PDF
Messbarkeit seo performance
Amazee Labs
 
PDF
Drupalcamp London 2015
Amazee Labs
 
PDF
Sonova.com building multilingual and multidomain drupal website
Amazee Labs
 
PDF
WebExpresso - Switch the Switch
Amazee Labs
 
PDF
My Job Is Harder Than Yours (D4D Boston 2014)
Amazee Labs
 
PDF
Strategy Session (DrupalCamp CO)
Amazee Labs
 
PDF
Amazee web expresso 2 2014
Amazee Labs
 
PDF
Web express-drupal-8
Amazee Labs
 
PDF
Manage and Deploy your sites with Drush
Amazee Labs
 
PDF
Overwriting code in Drupal
Amazee Labs
 
PDF
Web Expresso: Drupal 8 - What's new
Amazee Labs
 
PDF
There are no bad clients, just bad project managers
Amazee Labs
 
PDF
Translation Management
Amazee Labs
 
KEY
Drupal High Availability High Performance 2012
Amazee Labs
 
KEY
Drupal für Entwickler
Amazee Labs
 
KEY
Responsive Web Design - Ein Überblick
Amazee Labs
 
KEY
Social Media & Community MGMT (for Startups)
Amazee Labs
 
WebExpresso Agiles Projektmanagement 03/03/2016
Amazee Labs
 
Drupal 8 deeper dive
Amazee Labs
 
How to run a successful Drupal shop
Amazee Labs
 
Messbarkeit seo performance
Amazee Labs
 
Drupalcamp London 2015
Amazee Labs
 
Sonova.com building multilingual and multidomain drupal website
Amazee Labs
 
WebExpresso - Switch the Switch
Amazee Labs
 
My Job Is Harder Than Yours (D4D Boston 2014)
Amazee Labs
 
Strategy Session (DrupalCamp CO)
Amazee Labs
 
Amazee web expresso 2 2014
Amazee Labs
 
Web express-drupal-8
Amazee Labs
 
Manage and Deploy your sites with Drush
Amazee Labs
 
Overwriting code in Drupal
Amazee Labs
 
Web Expresso: Drupal 8 - What's new
Amazee Labs
 
There are no bad clients, just bad project managers
Amazee Labs
 
Translation Management
Amazee Labs
 
Drupal High Availability High Performance 2012
Amazee Labs
 
Drupal für Entwickler
Amazee Labs
 
Responsive Web Design - Ein Überblick
Amazee Labs
 
Social Media & Community MGMT (for Startups)
Amazee Labs
 

Recently uploaded (20)

PDF
Slides: PDF Eco Economic Epochs for World Game (s) pdf
Steven McGee
 
PPTX
B2B_Ecommerce_Internship_Simranpreet.pptx
LipakshiJindal
 
PDF
BGP Security Best Practices that Matter, presented at PHNOG 2025
APNIC
 
PPTX
Microsoft PowerPoint Student PPT slides.pptx
Garleys Putin
 
PPTX
Different Generation Of Computers .pptx
divcoder9507
 
PPTX
Unlocking Hope : How Crypto Recovery Services Can Reclaim Your Lost Funds
lionsgate network
 
PPT
Introduction to dns domain name syst.ppt
MUHAMMADKAVISHSHABAN
 
PDF
Data Protection & Resilience in Focus.pdf
AmyPoblete3
 
PPTX
谢尔丹学院毕业证购买|Sheridan文凭不见了怎么办谢尔丹学院成绩单
mookxk3
 
PDF
LB# 820-1889_051-7370_C000.schematic.pdf
matheusalbuquerqueco3
 
PPTX
Google SGE SEO: 5 Critical Changes That Could Wreck Your Rankings in 2025
Reversed Out Creative
 
PDF
APNIC Update, presented at PHNOG 2025 by Shane Hermoso
APNIC
 
PDF
KIPER4D situs Exclusive Game dari server Star Gaming Asia
hokimamad0
 
PDF
PDF document: World Game (s) Great Redesign.pdf
Steven McGee
 
PPTX
Slides Powerpoint: Eco Economic Epochs.pptx
Steven McGee
 
PPTX
Blue and Dark Blue Modern Technology Presentation.pptx
ap177979
 
PPTX
Black Yellow Modern Minimalist Elegant Presentation.pptx
nothisispatrickduhh
 
PDF
The Internet of Things (IoT) refers to a vast network of interconnected devic...
chethana8182
 
PDF
LOGENVIDAD DANNYFGRETRRTTRRRTRRRRRRRRR.pdf
juan456ytpro
 
PDF
Cybersecurity Awareness Presentation ppt.
banodhaharshita
 
Slides: PDF Eco Economic Epochs for World Game (s) pdf
Steven McGee
 
B2B_Ecommerce_Internship_Simranpreet.pptx
LipakshiJindal
 
BGP Security Best Practices that Matter, presented at PHNOG 2025
APNIC
 
Microsoft PowerPoint Student PPT slides.pptx
Garleys Putin
 
Different Generation Of Computers .pptx
divcoder9507
 
Unlocking Hope : How Crypto Recovery Services Can Reclaim Your Lost Funds
lionsgate network
 
Introduction to dns domain name syst.ppt
MUHAMMADKAVISHSHABAN
 
Data Protection & Resilience in Focus.pdf
AmyPoblete3
 
谢尔丹学院毕业证购买|Sheridan文凭不见了怎么办谢尔丹学院成绩单
mookxk3
 
LB# 820-1889_051-7370_C000.schematic.pdf
matheusalbuquerqueco3
 
Google SGE SEO: 5 Critical Changes That Could Wreck Your Rankings in 2025
Reversed Out Creative
 
APNIC Update, presented at PHNOG 2025 by Shane Hermoso
APNIC
 
KIPER4D situs Exclusive Game dari server Star Gaming Asia
hokimamad0
 
PDF document: World Game (s) Great Redesign.pdf
Steven McGee
 
Slides Powerpoint: Eco Economic Epochs.pptx
Steven McGee
 
Blue and Dark Blue Modern Technology Presentation.pptx
ap177979
 
Black Yellow Modern Minimalist Elegant Presentation.pptx
nothisispatrickduhh
 
The Internet of Things (IoT) refers to a vast network of interconnected devic...
chethana8182
 
LOGENVIDAD DANNYFGRETRRTTRRRTRRRRRRRRR.pdf
juan456ytpro
 
Cybersecurity Awareness Presentation ppt.
banodhaharshita
 

Logging with Elasticsearch, Logstash & Kibana