logster 2.1.2 → 2.2.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/.gitignore +21 -19
- data/.rubocop.yml +1 -1
- data/.travis.yml +16 -16
- data/CHANGELOG.md +224 -172
- data/Gemfile +4 -4
- data/Guardfile +8 -8
- data/LICENSE.txt +22 -22
- data/README.md +99 -99
- data/Rakefile +21 -21
- data/assets/fonts/FontAwesome.otf +0 -0
- data/assets/fonts/fontawesome-webfont.eot +0 -0
- data/assets/fonts/fontawesome-webfont.svg +639 -639
- data/assets/fonts/fontawesome-webfont.ttf +0 -0
- data/assets/fonts/fontawesome-webfont.woff +0 -0
- data/assets/fonts/fontawesome-webfont.woff2 +0 -0
- data/assets/images/Icon-144_rounded.png +0 -0
- data/assets/images/Icon-144_square.png +0 -0
- data/assets/images/icon_144x144.png +0 -0
- data/assets/images/icon_64x64.png +0 -0
- data/assets/javascript/client-app.js +115 -106
- data/assets/stylesheets/client-app.css +1 -1
- data/build_client_app.sh +0 -0
- data/client-app/.editorconfig +20 -20
- data/client-app/.ember-cli +9 -9
- data/client-app/.eslintignore +19 -19
- data/client-app/.eslintrc.js +46 -46
- data/client-app/.gitignore +23 -23
- data/client-app/.travis.yml +27 -27
- data/client-app/.watchmanconfig +3 -3
- data/client-app/README.md +57 -57
- data/client-app/app/app.js +0 -0
- data/client-app/app/components/actions-menu.js +43 -43
- data/client-app/app/components/env-tab.js +80 -80
- data/client-app/app/components/message-info.js +0 -0
- data/client-app/app/components/message-row.js +0 -0
- data/client-app/app/components/panel-resizer.js +0 -0
- data/client-app/app/components/patterns-list.js +109 -0
- data/client-app/app/components/tab-contents.js +27 -27
- data/client-app/app/components/tabbed-section.js +0 -0
- data/client-app/app/components/time-formatter.js +0 -0
- data/client-app/app/components/update-time.js +0 -0
- data/client-app/app/controllers/index.js +22 -6
- data/client-app/app/controllers/show.js +0 -0
- data/client-app/app/helpers/logster-url.js +12 -0
- data/client-app/app/helpers/or.js +7 -0
- data/client-app/app/index.html +30 -29
- data/client-app/app/initializers/app-init.js +67 -67
- data/client-app/app/lib/preload.js +20 -20
- data/client-app/app/lib/utilities.js +150 -149
- data/client-app/app/models/message-collection.js +0 -0
- data/client-app/app/models/message.js +100 -100
- data/client-app/app/models/pattern-item.js +25 -0
- data/client-app/app/resolver.js +0 -0
- data/client-app/app/router.js +1 -0
- data/client-app/app/routes/index.js +2 -9
- data/client-app/app/routes/settings.js +15 -0
- data/client-app/app/routes/show.js +0 -0
- data/client-app/app/styles/app.css +633 -527
- data/client-app/app/templates/application.hbs +2 -2
- data/client-app/app/templates/components/actions-menu.hbs +12 -12
- data/client-app/app/templates/components/env-tab.hbs +10 -10
- data/client-app/app/templates/components/message-info.hbs +41 -41
- data/client-app/app/templates/components/message-row.hbs +15 -15
- data/client-app/app/templates/components/panel-resizer.hbs +3 -3
- data/client-app/app/templates/components/patterns-list.hbs +25 -0
- data/client-app/app/templates/components/tabbed-section.hbs +10 -10
- data/client-app/app/templates/components/time-formatter.hbs +1 -1
- data/client-app/app/templates/index.hbs +65 -58
- data/client-app/app/templates/settings.hbs +26 -0
- data/client-app/app/templates/show.hbs +7 -7
- data/client-app/config/environment.js +51 -51
- data/client-app/config/optional-features.json +3 -3
- data/client-app/config/targets.js +18 -18
- data/client-app/ember-cli-build.js +29 -29
- data/client-app/package-lock.json +11357 -11365
- data/client-app/package.json +57 -56
- data/client-app/public/assets/images/icon_144x144.png +0 -0
- data/client-app/public/assets/images/icon_64x64.png +0 -0
- data/client-app/testem.js +25 -25
- data/client-app/tests/index.html +34 -34
- data/client-app/tests/integration/components/env-tab-test.js +134 -123
- data/client-app/tests/integration/components/message-info-test.js +111 -111
- data/client-app/tests/integration/components/patterns-list-test.js +56 -0
- data/client-app/tests/test-helper.js +8 -8
- data/client-app/tests/unit/controllers/index-test.js +12 -12
- data/client-app/tests/unit/controllers/show-test.js +12 -12
- data/client-app/tests/unit/initializers/app-init-test.js +31 -31
- data/client-app/tests/unit/routes/index-test.js +11 -11
- data/client-app/tests/unit/routes/show-test.js +11 -11
- data/lib/examples/sidekiq_logster_reporter.rb +21 -21
- data/lib/logster.rb +59 -54
- data/lib/logster/base_store.rb +169 -141
- data/lib/logster/cache.rb +20 -0
- data/lib/logster/configuration.rb +27 -26
- data/lib/logster/defer_logger.rb +14 -14
- data/lib/logster/ignore_pattern.rb +65 -65
- data/lib/logster/logger.rb +113 -113
- data/lib/logster/message.rb +212 -212
- data/lib/logster/middleware/debug_exceptions.rb +26 -26
- data/lib/logster/middleware/reporter.rb +55 -55
- data/lib/logster/middleware/viewer.rb +297 -222
- data/lib/logster/pattern.rb +95 -0
- data/lib/logster/rails/railtie.rb +63 -63
- data/lib/logster/redis_store.rb +584 -566
- data/lib/logster/scheduler.rb +54 -54
- data/lib/logster/suppression_pattern.rb +17 -0
- data/lib/logster/version.rb +3 -3
- data/lib/logster/web.rb +14 -14
- data/logster.gemspec +35 -35
- data/test/examples/test_sidekiq_reporter_example.rb +46 -46
- data/test/fake_data/Gemfile +4 -4
- data/test/fake_data/generate.rb +10 -10
- data/test/logster/middleware/test_reporter.rb +19 -19
- data/test/logster/middleware/test_viewer.rb +267 -96
- data/test/logster/test_base_store.rb +147 -147
- data/test/logster/test_cache.rb +38 -0
- data/test/logster/test_defer_logger.rb +34 -34
- data/test/logster/test_ignore_pattern.rb +41 -41
- data/test/logster/test_logger.rb +100 -86
- data/test/logster/test_message.rb +119 -119
- data/test/logster/test_pattern.rb +152 -0
- data/test/logster/test_redis_rate_limiter.rb +230 -230
- data/test/logster/test_redis_store.rb +689 -720
- data/test/test_helper.rb +38 -38
- data/vendor/assets/javascripts/logster.js.erb +39 -39
- metadata +24 -7
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 898c489f2c456f2c301686c92fbb0d84f490c92e52bb14e4f0fa7696c68a71e2
|
|
4
|
+
data.tar.gz: 2ce45b725d50d43bb79f7eec5d0e9216631b617a8841c9adbc878f84267eedcd
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 8e2f1ea6e080db96266106173ec1020fa525190ec22fa9717a7be97a7500dfed4f8b4fc289358e949b2a0df7a7444ad3b99add718f22c79f605915752d1c3c9f
|
|
7
|
+
data.tar.gz: 482810869a48d60c51878fd6dd2bc9ccdcfb83900bb0a58618bb2bf4ee7e1c3cebb3acb59a62297f96ced1c95b6f9d2cb99331b1efd7deccccfc6465149c1426
|
data/.gitignore
CHANGED
|
@@ -1,19 +1,21 @@
|
|
|
1
|
-
*.gem
|
|
2
|
-
*.rbc
|
|
3
|
-
.bundle
|
|
4
|
-
.config
|
|
5
|
-
.yardoc
|
|
6
|
-
Gemfile.lock
|
|
7
|
-
InstalledFiles
|
|
8
|
-
_yardoc
|
|
9
|
-
coverage
|
|
10
|
-
doc/
|
|
11
|
-
lib/bundler/man
|
|
12
|
-
pkg
|
|
13
|
-
rdoc
|
|
14
|
-
spec/reports
|
|
15
|
-
test/tmp
|
|
16
|
-
test/version_tmp
|
|
17
|
-
tmp
|
|
18
|
-
.byebug_history
|
|
19
|
-
.rubocop-https---raw-githubusercontent-com-discourse-discourse-master--rubocop-yml
|
|
1
|
+
*.gem
|
|
2
|
+
*.rbc
|
|
3
|
+
.bundle
|
|
4
|
+
.config
|
|
5
|
+
.yardoc
|
|
6
|
+
Gemfile.lock
|
|
7
|
+
InstalledFiles
|
|
8
|
+
_yardoc
|
|
9
|
+
coverage
|
|
10
|
+
doc/
|
|
11
|
+
lib/bundler/man
|
|
12
|
+
pkg
|
|
13
|
+
rdoc
|
|
14
|
+
spec/reports
|
|
15
|
+
test/tmp
|
|
16
|
+
test/version_tmp
|
|
17
|
+
tmp
|
|
18
|
+
.byebug_history
|
|
19
|
+
.rubocop-https---raw-githubusercontent-com-discourse-discourse-master--rubocop-yml
|
|
20
|
+
*.swo
|
|
21
|
+
*.swp
|
data/.rubocop.yml
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
inherit_from: https://raw.githubusercontent.com/discourse/discourse/master/.rubocop.yml
|
|
1
|
+
inherit_from: https://raw.githubusercontent.com/discourse/discourse/master/.rubocop.yml
|
data/.travis.yml
CHANGED
|
@@ -1,16 +1,16 @@
|
|
|
1
|
-
language: ruby
|
|
2
|
-
|
|
3
|
-
matrix:
|
|
4
|
-
fast_finish: true
|
|
5
|
-
|
|
6
|
-
rvm:
|
|
7
|
-
- 2.3.4
|
|
8
|
-
- 2.5.3
|
|
9
|
-
|
|
10
|
-
services:
|
|
11
|
-
- redis-server
|
|
12
|
-
|
|
13
|
-
before_install:
|
|
14
|
-
- gem install bundler -v 1.17.2
|
|
15
|
-
|
|
16
|
-
sudo: false
|
|
1
|
+
language: ruby
|
|
2
|
+
|
|
3
|
+
matrix:
|
|
4
|
+
fast_finish: true
|
|
5
|
+
|
|
6
|
+
rvm:
|
|
7
|
+
- 2.3.4
|
|
8
|
+
- 2.5.3
|
|
9
|
+
|
|
10
|
+
services:
|
|
11
|
+
- redis-server
|
|
12
|
+
|
|
13
|
+
before_install:
|
|
14
|
+
- gem install bundler -v 1.17.2
|
|
15
|
+
|
|
16
|
+
sudo: false
|
data/CHANGELOG.md
CHANGED
|
@@ -1,172 +1,224 @@
|
|
|
1
|
-
# CHANGELOG
|
|
2
|
-
|
|
3
|
-
- 2019-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
-
|
|
20
|
-
|
|
21
|
-
- 2019-
|
|
22
|
-
|
|
23
|
-
- FEATURE:
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
-
|
|
33
|
-
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
-
|
|
39
|
-
-
|
|
40
|
-
|
|
41
|
-
-
|
|
42
|
-
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
-
|
|
56
|
-
|
|
57
|
-
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
-
|
|
64
|
-
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
-
|
|
93
|
-
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
-
|
|
98
|
-
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
- Feature:
|
|
103
|
-
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
-
|
|
114
|
-
|
|
115
|
-
- 2015-
|
|
116
|
-
|
|
117
|
-
-
|
|
118
|
-
|
|
119
|
-
-
|
|
120
|
-
-
|
|
121
|
-
|
|
122
|
-
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
-
|
|
126
|
-
-
|
|
127
|
-
-
|
|
128
|
-
|
|
129
|
-
-
|
|
130
|
-
-
|
|
131
|
-
|
|
132
|
-
-
|
|
133
|
-
-
|
|
134
|
-
|
|
135
|
-
-
|
|
136
|
-
-
|
|
137
|
-
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
-
|
|
155
|
-
-
|
|
156
|
-
|
|
157
|
-
-
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
-
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
-
|
|
168
|
-
-
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
-
|
|
1
|
+
# CHANGELOG
|
|
2
|
+
|
|
3
|
+
- 2019-03-19: 2.2.0
|
|
4
|
+
|
|
5
|
+
- FEATURE: custom suppression patterns via UI
|
|
6
|
+
- UX: auto expand env keys when list length is <= 3
|
|
7
|
+
|
|
8
|
+
- 2019-03-14: Unreleased
|
|
9
|
+
|
|
10
|
+
- FIX: Logster message options missing when base logger is a sub-class of
|
|
11
|
+
`Logster::Logger`
|
|
12
|
+
|
|
13
|
+
- 2019-02-21: Version 2.1.2
|
|
14
|
+
|
|
15
|
+
- FEATURE: allow certain env keys to be expandable via `Logster.config.env_expandable_keys.push(:key, :another_key)`. See https://github.com/discourse/logster/pull/81 for more info
|
|
16
|
+
|
|
17
|
+
- 2019-02-21: Version 2.1.1
|
|
18
|
+
|
|
19
|
+
- FEATURE: allow defer logger to be disabled as Ruby 2.5.3 can segfault with defer logger due to a bug in Ruby. To disable run `Logster::Scheduler.disable`
|
|
20
|
+
|
|
21
|
+
- 2019-02-13: Version 2.1.0
|
|
22
|
+
|
|
23
|
+
- FEATURE/DEV: adds a defer logger that will do logging asynchronously only in dev environments. It should speed things up a little in dev.
|
|
24
|
+
|
|
25
|
+
- 2019-02-05: Version 2.0.1
|
|
26
|
+
|
|
27
|
+
- FIX: env line height issue on iOS
|
|
28
|
+
|
|
29
|
+
- 2019-01-17: Version 2.0.0.pre
|
|
30
|
+
|
|
31
|
+
- FIX: don't merge any new env samples if there are 50 samples (1.4.0.pre regression)
|
|
32
|
+
- UX: make env navigation controls stick to the top when scrolled
|
|
33
|
+
- PERF: store env samples separately from the rest of message data
|
|
34
|
+
- DEV: Rubocop
|
|
35
|
+
|
|
36
|
+
- 2019-01-09: Version 1.4.0.pre
|
|
37
|
+
|
|
38
|
+
- FEATURE: allow navigation through merged errors
|
|
39
|
+
- FEATURE: search should look at env
|
|
40
|
+
- FIX: deselect message if new filtering doesn't include selected message
|
|
41
|
+
- UX: don't give timestamps more space than they need; use `div`s with flexbox instead of `table`
|
|
42
|
+
- FIX: hide "load more" when there are no more messages and filters/search applied
|
|
43
|
+
|
|
44
|
+
- 2018-12-30: Version 1.3.4
|
|
45
|
+
|
|
46
|
+
- FIX: linear-gradient issue on iOS
|
|
47
|
+
- FIX: actions menu should have highest z-index
|
|
48
|
+
|
|
49
|
+
- 2018-12-26: Version 1.3.3
|
|
50
|
+
|
|
51
|
+
- Fix: fix double lines logs when date is too long
|
|
52
|
+
|
|
53
|
+
- 2018-12-25: Version 1.3.2
|
|
54
|
+
|
|
55
|
+
- UX: improve usability on mobile
|
|
56
|
+
|
|
57
|
+
- 2018-11-09: Version 1.3.1
|
|
58
|
+
|
|
59
|
+
- Feature: auto scrub invalid messages reported to logger
|
|
60
|
+
|
|
61
|
+
- 2018-11-09: Version 1.3.0
|
|
62
|
+
|
|
63
|
+
- Feature: upgrade Ember to 3.5.1
|
|
64
|
+
- Feature: remove inline JS for CSP compliance
|
|
65
|
+
|
|
66
|
+
- 2018-08-13: Version 1.2.10
|
|
67
|
+
|
|
68
|
+
- Feature: expose chained loggers in Logster::Logger
|
|
69
|
+
|
|
70
|
+
- 2017-10-27: Version 1.2.8
|
|
71
|
+
|
|
72
|
+
- Fix: `Logster::Middleware::DebugExceptions` is passed a request in Rails 5 instead of the env.
|
|
73
|
+
|
|
74
|
+
- 2017-01-30: Version 1.2.7
|
|
75
|
+
|
|
76
|
+
- Feature: Add override_level to Logster::Logger allowing for threadsafe logger override
|
|
77
|
+
|
|
78
|
+
- 2016-10-24: Version 1.2.6
|
|
79
|
+
|
|
80
|
+
- Fix: Check if `Rails.env` is defined when using Logster in a none Rails project.
|
|
81
|
+
|
|
82
|
+
- 2016-07-11: Version 1.2.5
|
|
83
|
+
|
|
84
|
+
- Fix: Chained `Logster::Logger` logger now receives backtrace as well.
|
|
85
|
+
|
|
86
|
+
- 2016-05-05: Version 1.2.4
|
|
87
|
+
|
|
88
|
+
- Fix: XSS in log message show if attacker can inject script into ENV
|
|
89
|
+
|
|
90
|
+
- 2016-05-05: Version 1.2.3
|
|
91
|
+
|
|
92
|
+
- Fix: clear_all now also clears rate limits
|
|
93
|
+
- Fix: protect against corrupt data in redis during clear
|
|
94
|
+
|
|
95
|
+
- 2016-03-22: Version 1.2.2
|
|
96
|
+
|
|
97
|
+
- Fix: Conflicting attributes and method name for `Logster::RedisStore#rate_limits`.
|
|
98
|
+
- Fix: Rate limit checker was tracking limits too early. It should only track when a message has been bumped or saved.
|
|
99
|
+
|
|
100
|
+
- 2016-03-22: Version 1.2.1
|
|
101
|
+
|
|
102
|
+
- Feature: Add method to retrieve current rate from rate limiters.
|
|
103
|
+
- Feature: Make `RedisStore#rate_limits` readable.
|
|
104
|
+
- Feature: Make `RedisRateLimiter#callback` and `RedisRateLimiter#duration` readable.
|
|
105
|
+
|
|
106
|
+
- 2016-03-18: Version 1.2.0
|
|
107
|
+
|
|
108
|
+
- Fix: Move Redis configuration into RedisStore.
|
|
109
|
+
- Feature: Allow `RedisStore#redis_prefix` to either be a String or a Proc.
|
|
110
|
+
|
|
111
|
+
- 2016-02-11: Version 1.1.1
|
|
112
|
+
|
|
113
|
+
- Feature: Error rate can now be tracked in one minute and one hour buckets.
|
|
114
|
+
|
|
115
|
+
- 2015-11-27: Version 1.0.1
|
|
116
|
+
|
|
117
|
+
- New assets and logster logo
|
|
118
|
+
- Added favicon
|
|
119
|
+
- Added title
|
|
120
|
+
- Use rails logger instead of invoking store
|
|
121
|
+
|
|
122
|
+
- 2015-08-18: Version 0.9.9
|
|
123
|
+
|
|
124
|
+
- This marks the largest release of Logster to date, it has been in production use for quite a while, hence the version bump.
|
|
125
|
+
- Feature: automatically group errors in production mode, can be manually controlled via Logster.config.allow_grouping
|
|
126
|
+
- Feature: automatically track application version, can be manually controlled via Logster.config.application_version
|
|
127
|
+
- Feature: Font Awesome icons used throughout
|
|
128
|
+
- Feature: Ember upgrade to 1.13
|
|
129
|
+
- Feature: you can now "solve" a class of errors, if error has an application_version and backtrace. Once an error is solved it will no longer be reported for the "solved" application_versions
|
|
130
|
+
- Feature: allow users to delete a single error
|
|
131
|
+
- UX: use table for env
|
|
132
|
+
- Feature: display "protected" state of message in list
|
|
133
|
+
- Feature: use local times as opposed to relative times in time column
|
|
134
|
+
- UX: use Google Roboto font as opposed to system fonts
|
|
135
|
+
- UX: remove pointless titles from log table
|
|
136
|
+
- Feature: If Logster is in a background tab only poll once every 60 seconds (as opposed to 3)
|
|
137
|
+
- Fix: protect/unprotect redirected to show page
|
|
138
|
+
|
|
139
|
+
- 2015-06-16: Version 0.8.3
|
|
140
|
+
|
|
141
|
+
- Chained loggers now respect chain ignore
|
|
142
|
+
- Add hostname and process_id to env on all messages
|
|
143
|
+
|
|
144
|
+
- 2015-06-10: Version 0.8.2
|
|
145
|
+
|
|
146
|
+
- Add hostname and process_id to env on all messages
|
|
147
|
+
|
|
148
|
+
- 2015-05-01: Version 0.8.1
|
|
149
|
+
|
|
150
|
+
- Don't crash out logging routine if redis is down or stderr is closed
|
|
151
|
+
|
|
152
|
+
- 2015-04-16: Version 0.8.0
|
|
153
|
+
|
|
154
|
+
- Improve formatting of /show page
|
|
155
|
+
- Big version bump cause it is quite stable
|
|
156
|
+
|
|
157
|
+
- 2015-02-27: Version 0.1.7
|
|
158
|
+
|
|
159
|
+
- Fix invalid request on ?test
|
|
160
|
+
|
|
161
|
+
- 2014-08-05: Version 0.1.3
|
|
162
|
+
|
|
163
|
+
- Automatically include ignore filter
|
|
164
|
+
|
|
165
|
+
- 2014-08-13: Version 0.1.6
|
|
166
|
+
|
|
167
|
+
- Simplify install process
|
|
168
|
+
- Fix crash on 404 in /logs dir
|
|
169
|
+
|
|
170
|
+
- 2014-08-10: Version 0.1.5
|
|
171
|
+
|
|
172
|
+
- Fix crash in Rails 3
|
|
173
|
+
|
|
174
|
+
- 2014-08-08: Version 0.1.4
|
|
175
|
+
|
|
176
|
+
- Fix crash in ignore filter
|
|
177
|
+
|
|
178
|
+
- 2014-07-17: Version 0.1.1
|
|
179
|
+
|
|
180
|
+
- Refactored report method into base_store.rb - will be easier to make a new log store
|
|
181
|
+
- Add link in UI to clear all (non-protected) logs
|
|
182
|
+
- Add example of submitting logs from Sidekiq jobs
|
|
183
|
+
- Show Protect/Share links on all tabs
|
|
184
|
+
- Render hashes provided via Logster.add_to_env
|
|
185
|
+
|
|
186
|
+
- 2014-07-04: Version 0.0.12
|
|
187
|
+
|
|
188
|
+
- Feature: Able to share logs, at /logs/show/(hexdigits)
|
|
189
|
+
- Add protecting logs, so they aren't deleted when old (for use with sharing)
|
|
190
|
+
- Restructured Redis data model
|
|
191
|
+
|
|
192
|
+
- 2014-05-24: Version 0.0.10
|
|
193
|
+
|
|
194
|
+
- Correct context for error reporting
|
|
195
|
+
- Clean up backtraces of reported exceptions
|
|
196
|
+
|
|
197
|
+
- 2014-05-13: Version 0.0.9
|
|
198
|
+
|
|
199
|
+
- Stray debugger message removed, add window.location logging to js
|
|
200
|
+
|
|
201
|
+
- 2014-05-13: Version 0.0.8
|
|
202
|
+
|
|
203
|
+
- Fix pacakging binstubs by mistake
|
|
204
|
+
|
|
205
|
+
- 2014-05-13: Version 0.0.7
|
|
206
|
+
|
|
207
|
+
- Add support for javascript exception logging
|
|
208
|
+
|
|
209
|
+
- 2014-05-12: Version 0.0.6
|
|
210
|
+
|
|
211
|
+
- Add referer to env
|
|
212
|
+
|
|
213
|
+
- 2014-05-12: Version 0.0.5
|
|
214
|
+
|
|
215
|
+
- Feature: We now log basic rack environment with the messages
|
|
216
|
+
- Add your own with Logster.add_to_env(env, key, value)
|
|
217
|
+
|
|
218
|
+
- 2014-05-07: Version 0.0.4
|
|
219
|
+
|
|
220
|
+
- Feature: Ability to ignore patterns with Logster.store.ignore = [/regex/]
|
|
221
|
+
- Feature: Store backtraces, allow people to view them in the GUI
|
|
222
|
+
|
|
223
|
+
- 2014-05-07: Started changelog :)
|
|
224
|
+
- Report params in env tab
|