Logtrail

Kibana plugin to view, search & live tail log events
Alternatives To Logtrail
Project NameStarsDownloadsRepos Using ThisPackages Using ThisMost Recent CommitTotal ReleasesLatest ReleaseOpen IssuesLicenseLanguage
Logtrail1,37622 years ago2April 08, 201885mitJavaScript
Kibana plugin to view, search & live tail log events
Clp641
2 days ago16apache-2.0C++
Compressed Log Processor (CLP) is a free tool capable of compressing text logs and searching the compressed logs without decompression.
Chipmunk440
28 hours ago76September 24, 202190apache-2.0TypeScript
log analysis tool
Sejil142
a month ago17November 10, 20211apache-2.0C#
Capture, view and filter your ASP.net core log events right from your app
Elogrus112243 years ago3May 09, 20204mitGo
Logrus Hook for ElasticSearch
Okcupyd98
57 years ago56August 04, 201624mitPython
A Library that enables programmatic interaction with okcupid.com, using okcupid.com's private okcupid JSON API and html scraping when necessary.
Netsuite Fasttrack Toolkit Ss261
24 months ago69July 20, 20227JavaScript
NFT for SuiteScript 2.X
Mongoose Datatable421135 months ago52May 17, 20227mitTypeScript
Server side dataTable request support for mongoose
Hoover34
272 years ago11February 28, 20136Python
Simple library for logging to Loggly
Instapro32224 years ago12March 18, 20191mitJavaScript
A Node.js library to get a wide range of public Instagram data without API keys or logging in. https://www.npmjs.com/package/instapro
Alternatives To Logtrail
Select To Compare


Alternative Project Comparisons
Readme

LogTrail - Log Viewer plugin for Kibana

Github All Releases Kibana 7.9.2 License Donate

LogTrail is a plugin for Kibana to view, analyze, search, and tail log events from multiple hosts in realtime with DevOps friendly interface inspired by Papertrail.

Events

Features

  • View, analyze, and search log events from a centralized interface
  • Clean & simple DevOps friendly interface
  • Live tail
  • Filter aggregated logs by hosts and program
  • Quickly seek to logs based on time
  • Supports highlighting of search matches
  • Supports multiple Elasticsearch index patterns each with different schemas
  • Can be extended by adding additional fields to log event
  • Color coding of messages based on field values
  • Powerful search using Lucene query syntax

Installation

  • Prerequisites
    • Download and install Elasticsearch and Kibana
    • Logtrail is supported and tested with Kibana 6.x and 5.x
  • Install logtrail plugin (requires a restart of Kibana after install)
    • Kibana 7.9.2 : ./bin/kibana-plugin install https://github.com/sivasamyk/logtrail/releases/download/v0.1.31/logtrail-7.9.2-0.1.31.zip
    • Kibana 5.6.5 : ./bin/kibana-plugin install https://github.com/sivasamyk/logtrail/releases/download/v0.1.23/logtrail-5.7.9.2.1.23.zip
    • Other versions : https://github.com/sivasamyk/logtrail/releases
  • Kibana requires an exact match of the plugin version to the Kibana version. If you can't find the logtrail plugin release for a Kibana release, follow the instructions here to update the Kibana version in your logtrail plugin archive.
  • Refer Logtrail Config Examples Repo for sample configurations for syslog, Java app, Kubernetes logs.

Configuration

  • Logtrail can be configured by editing the following fields present in logtrail.json file located inside./plugins/logtrail directory.
  • default_index - Elasticsearch index where the syslog events are stored (default: logstash-*)
  • default_time_range_in_days - Default time range in days to search when time is not specified using Seek button. Example: A value of 30 means logtrail will search only in logs from the last 30 days unless time is specified using the Seek button. A value of 0 means logtrail will search in all available logs by default.
  • display_timezone - Timezone to display the timestamp in Event Viewer. e.g. America/Los_Angeles. The default value of local will use the timezone of the browser. The time specified in Seek To popup will always use browser timezone.
  • display_timestamp_format - Format to display the timestamp in Event Viewer. For list of valid value refer here
  • default_search - if specified, this will be applied as default search text while launching logtrail. The value can be any search text. e.g. ssh - shows all logs with ssh in the message field. or log_level:SEVERE - shows all logs where log_level field is SEVERE. The field name should be a valid field in the Elasticsearch document. The default search field is the field mapped to message.
  • fields - Edit this parameter to map the event fields in ES to logtrail fields
    • timestamp - maps to @timestamp field inserted by logstash. This will be used for querying internally. Logtrail recommends @timestamp to be stored in UTC in ES.
    • hostname - hostname from where the events were received. Also used by hostname filter. The hostname field should be of type keyword. For more info check out Hostname field need to be of type keyword
    • program - program that generated this event.
    • message - actual event message. This field will be used by search.
  • Example: If the event fields names are @timestamp, host, process, message the mapping should be
"mapping" : {
        "timestamp" : "@timestamp",
        "hostname" : "host",
        "program": "process",
        "message": "message"
    }
  • By default each line displayed in the events view is of format: display_timestamp hostname program:message
  • message_format - Used to add additional fields to be shown for log event. For more details refer Adding additional fields
  • keyword_suffix - Specifies the keyword suffix to be appended for hostname & program fields. Set it to empty string ("") to not append any suffix. If not specified (undefined) logtrail will append keyword.
  • color_mapping - Color code messages based on field values. For more details refer Color coding messages
  • Any changes in logtrail.json require a restart of Kibana
  • Logtrail can read logtrail.json configuration from Elasticsearch instead of the filesystem. This will be useful when sharing the same configuration across multiple installations. For more info refer Load Logtrail configuration from Elasticsearch
  • Refer logtrail-config-examples repo for sample configurations
  • Logs & Events from Windows, Java, Python, PHP, Perl, Ruby, Android, Docker, .Net can be shipped using the syslog protocol.
  • Beats/Fluentd can also be used to ship events to ES and fields can be mapped using the fields parameter in logtrail.json
Popular Logger Projects
Popular Search Projects
Popular Operations Categories
Related Searches

Get A Weekly Email With Trending Projects For These Categories
No Spam. Unsubscribe easily at any time.
Javascript
Search
Logging
Elasticsearch
Timestamp
Kibana
Logstash
Syslog
Papertrail
Log Viewer