• Stars
    star
    551
  • Rank 77,515 (Top 2 %)
  • Language
    Ruby
  • License
    MIT License
  • Created almost 10 years ago
  • Updated 8 months ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

Log viewer UI and framework for rack

logster logo

Logster is an embedded Ruby "exception reporting service" admins can view on live websites, at http://example.com/logs

Interface

Screenshot

Play with a live demo at logster.info/logs.

Installation

Add these lines to your application's Gemfile:

gem 'redis'
gem 'logster'

And then execute:

$ bundle

To make logster web available add the following to your routes.rb:

constraints lambda { |req| req.session["admin"] } do
  mount Logster::Web => "/logs"
end

By default, logster will only run in development and production environments.

To run logster in other environments, in config/application.rb

Logster.set_environments([:development, :staging, :production])

Configuration

Logster can be configured using Logster.config:

  • Logster.config.application_version: set to a unique identifier denoting version of your app. The "solve" function takes this version into account when suppressing errors.

  • Logster.config.enable_js_error_reporting : enable js error reporting from clients

  • Logster.config.rate_limit_error_reporting : controls automatic 1 minute rate limiting for JS error reporting.

  • Logster.config.web_title : <title> tag for logster error page.

  • Logster.config.enable_custom_patterns_via_ui : enable the settings page (/settings) where you can add suppression and grouping patterns.

  • Logster.config.allow_grouping : Enable grouping of similar messages into one messages with an array of env of the grouped messages. Similar messages are messages that have identical backtraces, severity and log message.

  • Logster.config.maximum_message_length : set a maximum length for log messages that are shown inside the info tab and in the message rows in the UI. Messages that exceed the specified length will be truncated and an ellipsis will be appended to indicate that the message has been truncated. Default value is 2000.

  • Logster.config.maximum_message_size_bytes : set a maximum size for message objects. Default value is 10,000. If a message size exceeds this limit, Logster will first remove all occurrences of gems_dir (more on this config below) from the backtrace and computes the size again; if the message is still above the limit, Logster will remove as many as character as needed from the backtrace to bring the size below the limit. It's discouraged to set this config to a really low value (e.g. less than 2000) because a message needs a minimum amount of data in order to make sense (the minimum amount varies per message), so the closer the limit is to the minimum amount of space needed, the more of the backtrace will be removed. Keep this in mind when tweaking this config.

  • Logster.config.max_env_bytes : set a maximum size for env. Default value is 1000. In case env is an array of hashes, this limit applies to the individual hashes in the array rather than the whole array. If an env hash exceeds this limit, Logster will take the biggest subset of key-value pairs whose size is below the limit. If the hash has a key with the name time, it will always be included.

  • Logster.config.max_env_count_per_message : default value is 50. Logster can merge messages that have the same backtrace, severity and log message into one grouping message that have many env hashes. This config specifies the maximum number of env hashes a grouping message is allowed to keep. If this limit is reached and a new similar message is created and it needs to be merged, Logster will remove the oldest env hash from the grouping message and adds the new one.

  • Logster.config.project_directories : This should be an array of hashes that map paths on the local filesystem to GitHub repository URLs. If this feature is enabled, Logster will parse backtraces and try to construct a GitHub URL to the exact file and line number for each line in the backtrace. For a Rails app, the config may look like this: Logster.config.project_directories = [{ path: Rails.root.to_s, url: "https://github.com/<your_org>/<your_repo>" }]. The GitHub links that are constructed will use the master branch. If you want Logster to use the application_version attribute from the env tab so that the GitHub links point to the exact version of the app when the log message is created, add main_app: true key to the hash.

  • Logster.config.enable_backtrace_links : Enable/disable the backtrace links feature.

  • Logster.config.gems_dir : The value of this config is Gem.dir + "/gems/" by default. You probably don't need to change this config, but it's available in case your app gems are installed in a different directory. An example where this config is needed is Logster demo site: https://github.com/discourse/logster/blob/master/website/sample.rb#L77.

Tracking Error Rate

Logster allows you to register a callback when the rate of errors has exceeded a given limit.

Tracking buckets available are one minute and an hour.

Example:

Logster.register_rate_limit_per_minute(Logger::WARN, 60) do |rate|
  puts "O no! The error rate is now #{rate} errors/min"
end

Logster.register_rate_limit_per_hour([Logger::WARN, Logger::ERROR, Logger::FATAL], 60) do |rate|
  puts "O no! The error rate is now #{rate} errors/hour"
end

Note

If you are seeing the error No such middleware to insert before: ActionDispatch::DebugExceptions after installing logster, then you are using a conflicting gem like better_errors or web-console.

To avoid this error, make sure logster is added behind those conflicting gems in your Gemfile.

If you're using Logster with a non-rails app, you'll need to be careful that the env hashes of messages that Logster receives don't contain strings with invalid encoding because at some point Logster calls #to_json on the message env and the method will fail with JSON::GeneratorError.

The reason this doesn't happen in rails apps is because ActiveSupport has a monkey patch for #to_json.

Mount using warden (devise)

  admin_constraint = lambda do |request|
    request.env['warden'].authenticate? and request.env['warden'].user.admin?
  end

  constraints admin_constraint do
    mount Logster::Web, at: "/logs"
  end

Mount using devise (method 2)

Change :admin_user symbol with your devise user, example :user. In -> lambda block change admin? method with your authorization method Or simply define a admin? method in you user model.

  authenticate :admin_user, ->(u) { u.admin? } do
    mount Logster::Web, at: "/logs"
  end

Out of the box, logster will use the default redis connection, to customise, in config/application.rb

Logster.store = Logster::RedisStore.new(redis_connection)

Heroku Deployment

In case you may be using the rails_12factor gem in a production deployment on Heroku, the standard Rails.logger will not cooperate properly with Logster. Extend Rails.logger in your config/application.rb or config/initializers/logster.rb with:

if Rails.env.production?
    Rails.logger.extend(ActiveSupport::Logger.broadcast(Logster.logger))
end

Thanks

Logster UI is built using Ember.js

Contributing

  1. Fork it ( https://github.com/discourse/logster/fork )
  2. Create your feature branch (git checkout -b my-new-feature)
  3. Run cd client-app && npm install
  4. Run cd website && bundle install
  5. Run bundle exec rake client_dev to start Sinatra server (port 9292) and Ember server (port 4200). Use Ember server for hot reload for client code.
  6. Once you're done making changes, run ./build_client_app.sh to make and copy a production build to the assets folder.
  7. Commit your changes (git commit -am 'Add some feature')
  8. Push to the branch (git push origin my-new-feature)
  9. Create a new Pull Request

More Repositories

1

discourse

A platform for community discussion. Free, open, simple.
Ruby
38,751
star
2

message_bus

A reliable and robust messaging bus for Ruby and Rack
Ruby
1,636
star
3

discourse_docker

A Docker image for Discourse
Shell
1,547
star
4

onebox

(DEPRECATED) A gem for turning URLs into website previews
Ruby
795
star
5

wp-discourse

WordPress plugin that lets you use Discourse as the community engine for a WordPress blog
PHP
507
star
6

prometheus_exporter

A framework for collecting and aggregating prometheus metrics
Ruby
486
star
7

mini_sql

a minimal, fast, safe sql executor
Ruby
374
star
8

discourse_api

Ruby API for Discourse
Ruby
260
star
9

DiscourseMobile

Discourse Mobile
JavaScript
221
star
10

rails_multisite

Multi tenancy for Rails applications
Ruby
216
star
11

mini_scheduler

Adds recurring jobs for Sidekiq
Ruby
169
star
12

discourse-solved

Allow accepted answers on topics
Ruby
158
star
13

pups

Simple yaml based bootstrapper for Linux machines
Ruby
151
star
14

discourse-adplugin

Official Discourse Advertising Plugin. Install & Start Serving Ads on Your Discourse Forum
JavaScript
120
star
15

discourse-topic-voting

Adds the ability for voting on a topic within a specified category in Discourse.
Ruby
111
star
16

rails_failover

Ruby
105
star
17

discourse-oauth2-basic

A basic OAuth2 plugin for use with Discourse
Ruby
103
star
18

mini_mime

minimal mime type library
Ruby
95
star
19

discourse-chat-integration

Ruby
89
star
20

all-the-plugins

Ruby
87
star
21

discourse-data-explorer

SQL Queries for admins in Discourse
Ruby
80
star
22

discourse-air

A modern theme with a dark mode option.
SCSS
73
star
23

docker_manager

Plugin for use with discourse docker image
Ruby
67
star
24

discourse-spoiler-alert

A plugin for discourse to hide spoilers behind the spoiler-alert jQuery plugin
JavaScript
61
star
25

discourse-whos-online

A plugin for Discourse which uses the messagebus to display a live list of active users
JavaScript
58
star
26

discourse-tagging

Tagging functionality for Discourse Forums
JavaScript
58
star
27

email_reply_trimmer

Library to trim replies from plain text email.
Ruby
56
star
28

discourse-translator

Ruby
50
star
29

discourse-calendar

Adds the ability to create a dynamic calendar in the first post of a topic.
Ruby
49
star
30

discourse-steam-login

Allows user authentication with discourse via the Steam user API
Ruby
48
star
31

discourse-activity-pub

Adds ActivityPub support to Discourse.
Ruby
48
star
32

material-design-stock-theme

SCSS
46
star
33

discourse-user-notes

Plugin for Staff users to create notes on users
Ruby
45
star
34

discourse-checklist

A simple checklist rendering plugin for discourse
Ruby
44
star
35

discourse-chat

Chat inside Discourse
44
star
36

discourse-math

Official MathJax support for Discourse
JavaScript
44
star
37

discourse-patreon

Enable syncronization between Discourse Groups and Patreon rewards
Ruby
43
star
38

discourse-assign

Plugin for assigning users to a topic
Ruby
43
star
39

discourse-push-notifications

Plugin for integrating Chrome and FireFox push notifications
39
star
40

discourse-algolia

A plugin for indexing and searching your Discourse with Algolia
JavaScript
39
star
41

discourse-cakeday

Show a birthday cake emoji beside the names of members on their join anniversary, or their actual birthday -- and a browsable directory of upcoming anniversaries / birthdays.
JavaScript
38
star
42

discourse-saml

Support for SAML in Discourse
Ruby
38
star
43

discourse_theme

CLI helper for developing Discourse themes
Ruby
37
star
44

discourse-ai

Ruby
37
star
45

discourse_api_docs

Discourse API Documentation
JavaScript
37
star
46

letter-avatars

Teeny tiny web service to generate letter-based avatars
Ruby
37
star
47

discourse-encrypt

A plugin that provides a secure communication channel through Discourse.
JavaScript
37
star
48

discourse-canned-replies

Adds a means to insert templates from the composer.
JavaScript
35
star
49

discourse-github

Ruby
33
star
50

discourse-openid-connect

Allows an OpenID Connect provider to be used as an authentication provider for Discourse
Ruby
32
star
51

discourse-sitemap

Generate XML sitemap for your Discourse forum.
Ruby
32
star
52

discourse-auth-proxy

An http proxy that uses the DiscourseConnect protocol to authenticate users
Go
31
star
53

discourse-brand-header

Brand header theme component for Discourse
HTML
31
star
54

install-rails

Install Rails
Shell
29
star
55

discourse-reactions

JavaScript
28
star
56

discourse-gamification

Ruby
27
star
57

discourse-slack-official

DEPRECATED: Official Slack integration for Discourse
Ruby
26
star
58

core

25
star
59

discourse-affiliate

Ruby
25
star
60

discourse-follow

A Discourse plugin that lets you follow other users.
Ruby
24
star
61

ember-route-template

JavaScript
24
star
62

discourse-simple-theme

Sam's simple discourse theme
SCSS
24
star
63

all-the-themes

Ruby
23
star
64

discourse-docs

JavaScript
22
star
65

discourse-custom-header-links

JavaScript
22
star
66

discourse-post-voting

Allows users to vote on posts within a topic
Ruby
21
star
67

discourse-kanban-theme

A Discourse theme component providing basic kanban-board functionality
JavaScript
21
star
68

DiscoTOC

A Discourse theme component that generates a table of contents for topics with one click
JavaScript
21
star
69

discourse-category-banners

JavaScript
20
star
70

discourse-zoom

Integrate Zoom events in Discourse.
Ruby
20
star
71

discourse-rss-polling

Ruby
19
star
72

discourse-bbcode-color

A Discourse Plugin to support BBCode color tags.
JavaScript
19
star
73

discourse-plugin-discord-auth

A Discourse plugin to login over Discord
Ruby
18
star
74

image-optimizer

JavaScript
18
star
75

discourse-jwt

Discourse Auth support for JSON Web Tokens (JWT)
Ruby
17
star
76

discourse-signatures

A Discourse Plugin to show user signatures below posts
Ruby
17
star
77

github_badges

DEPRECATED: GitHub Badges plugin
Ruby
16
star
78

discourse-tooltips

Show tooltips around Discourse on hover, including topic previews
JavaScript
15
star
79

discourse-perspective-api

Google Perspective API Plugin for Discourse
Ruby
15
star
80

discourse-zendesk-plugin

Official Zendesk Integration for Discourse
Ruby
15
star
81

discourse-code-review

This allows commits and pull requests to be imported to Discourse as topics and reviewed
Ruby
14
star
82

discourse-prometheus

Official Discourse Plugin for Prometheus Monitoring
Ruby
14
star
83

mattermost-css-hacks

A mattermost plugin we use to customize our CSS
JavaScript
14
star
84

Discourse-easy-footer

JavaScript
13
star
85

Discourse-Tiles-image-gallery

HTML
13
star
86

discourse-anonymous-moderators

Ruby
13
star
87

discourse-moderator-attention

Ruby
13
star
88

discourse-user-card-badges

This plugin allows users to choose one badge with an image to show on their user card.
Ruby
12
star
89

discourse-linkedin-auth

LinkedIn OAuth Login support for Discourse
Ruby
12
star
90

discourse-plugin-skeleton

Template for Discourse plugins
Ruby
12
star
91

discourse-unlock

Ruby
11
star
92

discourse-microsoft-auth

Ruby
11
star
93

discourse-topic-thumbnails

Display thumbnails in topic lists
JavaScript
11
star
94

discourse-footnote

footnotes for posts in Discourse
JavaScript
11
star
95

discourse-teambuild

Team building activity for Discourse
Ruby
11
star
96

discourse-automation

Ruby
11
star
97

discourse-fingerprint

A plugin that computes user fingerprints to help administrators combat internet trolls.
Ruby
11
star
98

discourse-bbcode

vBulletin BBCode plugin
JavaScript
11
star
99

discourse-shared-edits

Shared edits for Discourse
Ruby
11
star
100

graceful

SCSS
10
star