Project Name | Stars | Downloads | Repos Using This | Packages Using This | Most Recent Commit | Total Releases | Latest Release | Open Issues | License | Language |
---|---|---|---|---|---|---|---|---|---|---|
Logtrail | 1,376 | 2 | 2 years ago | 2 | April 08, 2018 | 85 | mit | JavaScript | ||
Kibana plugin to view, search & live tail log events | ||||||||||
Clp | 641 | 2 days ago | 16 | apache-2.0 | C++ | |||||
Compressed Log Processor (CLP) is a free tool capable of compressing text logs and searching the compressed logs without decompression. | ||||||||||
Chipmunk | 440 | 2 | 8 hours ago | 76 | September 24, 2021 | 90 | apache-2.0 | TypeScript | ||
log analysis tool | ||||||||||
Sejil | 142 | a month ago | 17 | November 10, 2021 | 1 | apache-2.0 | C# | |||
Capture, view and filter your ASP.net core log events right from your app | ||||||||||
Elogrus | 112 | 2 | 4 | 3 years ago | 3 | May 09, 2020 | 4 | mit | Go | |
Logrus Hook for ElasticSearch | ||||||||||
Okcupyd | 98 | 5 | 7 years ago | 56 | August 04, 2016 | 24 | mit | Python | ||
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 Ss2 | 61 | 2 | 4 months ago | 69 | July 20, 2022 | 7 | JavaScript | |||
NFT for SuiteScript 2.X | ||||||||||
Mongoose Datatable | 42 | 11 | 3 | 5 months ago | 52 | May 17, 2022 | 7 | mit | TypeScript | |
Server side dataTable request support for mongoose | ||||||||||
Hoover | 34 | 27 | 2 years ago | 11 | February 28, 2013 | 6 | Python | |||
Simple library for logging to Loggly | ||||||||||
Instapro | 32 | 2 | 2 | 4 years ago | 12 | March 18, 2019 | 1 | mit | JavaScript | |
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 |
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.
./bin/kibana-plugin install https://github.com/sivasamyk/logtrail/releases/download/v0.1.31/logtrail-7.9.2-0.1.31.zip
./bin/kibana-plugin install https://github.com/sivasamyk/logtrail/releases/download/v0.1.23/logtrail-5.7.9.2.1.23.zip
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."mapping" : {
"timestamp" : "@timestamp",
"hostname" : "host",
"program": "process",
"message": "message"
}
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
logtrail.json
require a restart of Kibanalogtrail.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
fields
parameter in logtrail.json