logstash
Logstash is an open source tool for managing events and logs.
You can use it to collect logs, parse them, and store them for later
use (like, for searching).
Logstash comes with a web interface
for searching and drilling into all of your logs.
Features include:
- Three main components to a logstash agent -
Input/Filters/Output
- Input:
- Files
- stdin
- email (cron jobs)
- syslog servers - take syslog messages over the
network
- Flume
- Message brokers - (AMQP, STOMP, Beanstalk)
- Twitter stream API
- HTTP, TCP socket
- Filters which give structure to the logs:
- Timestamp parsing
- Date parsing (needed because everyone invents their own
time format)
- Grep (drops things that do/dont match)
- grok - compact syntax for writing a pattern matching
machine
- grok discovery - start with a sample from your
logs. Grok's discovery will try to generate a pattern that matches it
- Drop events
- Parse fields
- Anonymize
- Multiline - join related log lines in a single event
- Output to:
- ElasticSearch - scalable indexing for logs, uses Lucene
(full text search system as backend)
- Message Brokers - AMQP, STOMP, Beanstalk - take data from
remote nodes and ship them over to a message system. This
allows you to build a scalable message transportation by sending events
from your servers and devices into a message system and have them
farmed out to other logstash receivers using the same message system as
an input
- Graylog2 (GELF) - ship events to a graylog2 server
- MongoDB - write to events to
- Nagios - trigger Nagios alerts from events
- WebSockets - lets you stream events in
real-time to your browser
- TCP
- syslog
- Chain agents together on different systems to create a
networked pipeline for inputting, filtering, and outputting events
- User interface:
- Search by field or full text
- Graph results over time
- See search results and page through them
- Drill into events
- Add your own input, output, or filter plugins to
logstash
Return
to Log Analyzers Home Page
Last Updated Sunday, December 23 2012 @ 02:06 AM EST |