Slide 1

Slide 1 text

What Can I Do With the ELK Stack? DevOpsDays Charlotte 2015 Tyler Langlois Infrastructure Engineer, Elastic

Slide 2

Slide 2 text

This relates to DevOps… how? ● Collect disparate data from across the organization ● Expose it through an accessible interface ● Let users create their own value from existing data ● Get answers immediately instead of synchronously from dev/ops/admins Self-service unstructured data

Slide 3

Slide 3 text

ELK in a Nutshell Logstash [collect data] Elasticsearch [store & analyze] Kibana [visualize]

Slide 4

Slide 4 text

Vital Stats ● All three are open source ● JRuby / Java / Javascript / Go (beats) = contribute! ● Most recent release (last week) brings LS+ES to 2.0, Kibana to 4.2 ● Designed to scale ● Very active open source community

Slide 5

Slide 5 text

Composable, Simple Parts ● Single-node ELK stack ● deb, rpm repos available as well

Slide 6

Slide 6 text

Implementation tl;dr ● Data source logstash input { } {packet,file}beat POST :9200 ● Document Store Elasticsearch on- premise, Found, Docker, etc. SaaS Options ● Visualization Kibana runs in-browser Access controls/basic auth supported Really, anything that can throw JSON at a REST endpoint Scaled appropriately (1 - ??? nodes) Most settings are stored in an Elasticsearch index; simple deployment

Slide 7

Slide 7 text

Web Server Logs access.log logstash

Slide 8

Slide 8 text

IRC Activity logstash: input { irc } Elasticsearch

Slide 9

Slide 9 text

CI/CD Jenkins Redis Elasticsearch yummy ~6 months of data in 64ms

Slide 10

Slide 10 text

Enriching Data logstash: input { twitter } Elasticsearch filter { nlp }

Slide 11

Slide 11 text

Metrics/Numerical Data ● Emerging use case ● Strong support in 2.x series ● Pipeline aggs ○ moving averages, percentiles, derivatives

Slide 12

Slide 12 text

All of this translates to... ● Centralized logs & metrics ● Self-service for: ○ “Are we serving more 5xx errors than normal?” ○ “What are response times like?” ○ “Where is the influx of traffic coming from?” ○ “How many $project build failures in the last 3 months?” ● API for building alerts, dashboards, and tools across data sources … + easy scaling

Slide 13

Slide 13 text

Need something lightweight? Beats: ● Data shippers in single binaries ● Single-purposes, small footprint

Slide 14

Slide 14 text

Network Data Packetbeat ● Sniffs packets ● Understands wire protocols ● Network tapping means simple deployment

Slide 15

Slide 15 text

Files Filebeat ● Tails files ● Ships them elsewhere ● Lightweight and suited for low- resource environments Metrics Topbeat ● Think `top` metrics- ized ● Cross-platform metric collection ...more? libbeat ● Simple golang library ● Create your own ● Leverage library to ship along channels to Elasticsearch

Slide 16

Slide 16 text

Applications

Slide 17

Slide 17 text

Applications Pair with MySQL, Mongo, etc. to leverage features like autocomplete for applications

Slide 18

Slide 18 text

Use Your Imagination That’s the method I implemented to bring a sentiment analyzer into Logstash Create whatever your use case requires!

Slide 19

Slide 19 text

Inspirational Use Cases SPACE! @ JPL Cancer research @ Yale

Slide 20

Slide 20 text

Thank you! github.com/tylerjl irc/twitter: leothrix tjll.net Additional Information: ● elastic.co ● Discourse forums ● IRC: #elasticsearch, #logstash, #kibana on freenode ● github.com/elastic ● Corner me anytime this conference with questions