Log Analyzers

logstash – server-side data processing pipeline

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.

Key Features

  • 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.
    • Supports wildcards.
  • 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.

Website: www.elastic.co/products/logstash
Support: Reference, GitHub Code Repository
Developer: Elasticsearch B.V
License: Apache 2.0

logstash

Logstash is written in Ruby and Java. Learn Ruby with our recommended free books and free tutorials. Learn Java with our recommended free books and free tutorials.


Related Software

Log Analyzers
KibanaBrowser based interface for logstash and ElasticSearch
logstashLog processing, search, and analytics
OpenObserveCloud-native observability platform
GoAccessReal-time web log analyzer and interactive viewer
FluentdData collector for unified logging layer
LokiHorizontally-scalable, highly-available, multi-tenant log aggregation system
Graylog2Log management solution implementation storing logs in ElasticSearch
GraphiteEnterprise scalable realtime graphing
SigNozMonitor your applications and troubleshoot problems
Apache FlumeDelivers data from applications to Apache Hadoop's HDFS
OpenTSDBScalable, distributed Time Series Database
VictoriaLogsHigh-performance log database designed to ingest, store, and query log data
ScribeServer for aggregating log data that is streamed in real time from clients
LogoRRRCross-platform log analysis tool
ChukwaHadoop sub-project devoted to large-scale log collection and analysis

Read our verdict in the software roundup.


Best Free and Open Source Software Explore our comprehensive directory of recommended free and open source software. Our carefully curated collection spans every major software category.

This directory is part of our ongoing series of informative articles for Linux enthusiasts. It features hundreds of detailed reviews, along with open source alternatives to proprietary solutions from major corporations such as Google, Microsoft, Apple, Adobe, IBM, Cisco, Oracle, and Autodesk.

You’ll also find interesting projects to try, hardware coverage, free programming books and tutorials, and much more.

Discovered a useful open source Linux program that we haven’t covered yet? Let us know by completing this form.
Subscribe
Notify of
guest
0 Comments
Oldest
Newest Most Voted
Inline Feedbacks
View all comments