appsignal 2.8.4.beta.1 → 2.9.18.beta.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.github/ISSUE_TEMPLATE/bug_report.md +31 -0
- data/.github/ISSUE_TEMPLATE/chore.md +14 -0
- data/.gitignore +2 -3
- data/.rubocop.yml +3 -0
- data/.rubocop_todo.yml +7 -16
- data/.travis.yml +28 -27
- data/CHANGELOG.md +657 -533
- data/README.md +31 -3
- data/Rakefile +128 -129
- data/SUPPORT.md +16 -0
- data/appsignal.gemspec +17 -4
- data/build_matrix.yml +21 -9
- data/ext/Rakefile +23 -17
- data/ext/agent.yml +40 -37
- data/ext/base.rb +116 -31
- data/ext/extconf.rb +34 -28
- data/gemfiles/capistrano2.gemfile +5 -0
- data/gemfiles/capistrano3.gemfile +5 -0
- data/gemfiles/grape.gemfile +5 -0
- data/gemfiles/no_dependencies.gemfile +5 -0
- data/gemfiles/padrino.gemfile +5 -0
- data/gemfiles/que.gemfile +5 -0
- data/gemfiles/que_beta.gemfile +10 -0
- data/gemfiles/rails-3.2.gemfile +5 -0
- data/gemfiles/rails-4.0.gemfile +5 -0
- data/gemfiles/rails-4.1.gemfile +5 -0
- data/gemfiles/rails-4.2.gemfile +5 -0
- data/gemfiles/rails-6.0.gemfile +5 -0
- data/gemfiles/resque.gemfile +5 -0
- data/lib/appsignal.rb +14 -492
- data/lib/appsignal/cli/demo.rb +5 -2
- data/lib/appsignal/cli/diagnose.rb +84 -4
- data/lib/appsignal/cli/diagnose/paths.rb +0 -5
- data/lib/appsignal/cli/diagnose/utils.rb +19 -0
- data/lib/appsignal/cli/helpers.rb +6 -0
- data/lib/appsignal/cli/install.rb +45 -15
- data/lib/appsignal/cli/notify_of_deploy.rb +10 -0
- data/lib/appsignal/config.rb +1 -2
- data/lib/appsignal/event_formatter.rb +4 -5
- data/lib/appsignal/event_formatter/action_view/render_formatter.rb +10 -8
- data/lib/appsignal/event_formatter/moped/query_formatter.rb +60 -59
- data/lib/appsignal/extension.rb +2 -2
- data/lib/appsignal/helpers/instrumentation.rb +494 -0
- data/lib/appsignal/helpers/metrics.rb +54 -0
- data/lib/appsignal/hooks.rb +11 -8
- data/lib/appsignal/hooks/active_support_notifications.rb +2 -5
- data/lib/appsignal/hooks/puma.rb +74 -11
- data/lib/appsignal/hooks/sequel.rb +1 -1
- data/lib/appsignal/hooks/sidekiq.rb +115 -0
- data/lib/appsignal/integrations/mongo_ruby_driver.rb +7 -0
- data/lib/appsignal/integrations/que.rb +9 -8
- data/lib/appsignal/integrations/railtie.rb +2 -1
- data/lib/appsignal/marker.rb +2 -3
- data/lib/appsignal/minutely.rb +188 -19
- data/lib/appsignal/rack/sinatra_instrumentation.rb +1 -1
- data/lib/appsignal/system.rb +16 -18
- data/lib/appsignal/transaction.rb +8 -0
- data/lib/appsignal/utils/rails_helper.rb +20 -0
- data/lib/appsignal/version.rb +1 -1
- data/lib/puma/plugin/appsignal.rb +26 -0
- data/spec/lib/appsignal/cli/diagnose/utils_spec.rb +40 -0
- data/spec/lib/appsignal/cli/diagnose_spec.rb +129 -22
- data/spec/lib/appsignal/cli/install_spec.rb +57 -8
- data/spec/lib/appsignal/cli/notify_of_deploy_spec.rb +10 -0
- data/spec/lib/appsignal/config_spec.rb +13 -11
- data/spec/lib/appsignal/event_formatter/action_view/render_formatter_spec.rb +38 -28
- data/spec/lib/appsignal/event_formatter/moped/query_formatter_spec.rb +6 -0
- data/spec/lib/appsignal/event_formatter_spec.rb +168 -69
- data/spec/lib/appsignal/hooks/active_support_notifications_spec.rb +104 -25
- data/spec/lib/appsignal/hooks/puma_spec.rb +251 -34
- data/spec/lib/appsignal/hooks/sidekiq_spec.rb +209 -0
- data/spec/lib/appsignal/hooks_spec.rb +4 -0
- data/spec/lib/appsignal/integrations/mongo_ruby_driver_spec.rb +24 -1
- data/spec/lib/appsignal/minutely_spec.rb +318 -26
- data/spec/lib/appsignal/system_spec.rb +0 -35
- data/spec/lib/appsignal/transaction_spec.rb +68 -10
- data/spec/lib/appsignal/utils/hash_sanitizer_spec.rb +39 -31
- data/spec/lib/appsignal/utils/json_spec.rb +7 -3
- data/spec/lib/appsignal_spec.rb +98 -22
- data/spec/lib/puma/appsignal_spec.rb +91 -0
- data/spec/spec_helper.rb +13 -0
- data/spec/support/{project_fixture → fixtures/projects/valid}/config/application.rb +0 -0
- data/spec/support/{project_fixture → fixtures/projects/valid}/config/appsignal.yml +1 -0
- data/spec/support/{project_fixture → fixtures/projects/valid}/config/environments/development.rb +0 -0
- data/spec/support/{project_fixture → fixtures/projects/valid}/config/environments/production.rb +0 -0
- data/spec/support/{project_fixture → fixtures/projects/valid}/config/environments/test.rb +0 -0
- data/spec/support/{project_fixture → fixtures/projects/valid}/log/.gitkeep +0 -0
- data/spec/support/helpers/config_helpers.rb +1 -1
- data/spec/support/helpers/log_helpers.rb +6 -0
- data/spec/support/helpers/wait_for_helper.rb +28 -0
- data/spec/support/mocks/mock_probe.rb +11 -0
- data/spec/support/stubs/sidekiq/api.rb +4 -0
- metadata +43 -31
- data/spec/support/fixtures/containers/cgroups/docker +0 -14
- data/spec/support/fixtures/containers/cgroups/docker_systemd +0 -8
- data/spec/support/fixtures/containers/cgroups/lxc +0 -10
- data/spec/support/fixtures/containers/cgroups/no_permission +0 -0
- data/spec/support/fixtures/containers/cgroups/none +0 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 497a4a7b4a8d6a2d195f7e509a0a270f75e06a244c662d8294ad9f2b41c6401b
|
4
|
+
data.tar.gz: e583e62d155c23794a4e29728be90d8d04cb5c92c6f33970c6f97ea0b9a97e89
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 6164b48d04632a33bd801f303de05fbd77eab91d6611123d80183d19f7b5b934485972883cc3f0e563e1632e8020d2bf229db1d91c53f550cff5c95413b41f6b
|
7
|
+
data.tar.gz: e8e6af01a31bc1ffc7c304df523538bd95a58d0e65ffe3cfcbaf63d4fc0791a69d20c5606aed84ba5dbc85df9350796561a8c9d8b57b7b3840360d2c718c1ecb
|
@@ -0,0 +1,31 @@
|
|
1
|
+
---
|
2
|
+
name: Bug report
|
3
|
+
about: Create a report to help us improve the project.
|
4
|
+
title: ''
|
5
|
+
labels: bug
|
6
|
+
assignees: ''
|
7
|
+
|
8
|
+
---
|
9
|
+
|
10
|
+
If your bug is about how AppSignal works in your app specifically we recommend you contact us at support@appsignal.com with your bug report instead.
|
11
|
+
|
12
|
+
---
|
13
|
+
|
14
|
+
## Describe the bug
|
15
|
+
|
16
|
+
A clear and concise description of what the bug is including the code used and the exception backtrace, if any.
|
17
|
+
|
18
|
+
## To Reproduce
|
19
|
+
|
20
|
+
Steps to reproduce the behavior:
|
21
|
+
|
22
|
+
- Using AppSignal for Ruby gem version 2.x.x
|
23
|
+
- In my app using framework/library/gem ... version x.x.x
|
24
|
+
- With this code:
|
25
|
+
```
|
26
|
+
Optional: Any additional AppSignal instrumentation that was added.
|
27
|
+
```
|
28
|
+
- In this code:
|
29
|
+
```
|
30
|
+
Your app code in which the bug occurs.
|
31
|
+
```
|
data/.gitignore
CHANGED
@@ -21,15 +21,14 @@ Gemfile.lock
|
|
21
21
|
gemfiles/*.lock
|
22
22
|
.DS_Store
|
23
23
|
.ruby-version
|
24
|
-
|
25
|
-
bundle_and_spec_all_rvm
|
24
|
+
bundle_and_spec_all_*
|
26
25
|
ext/libappsignal.*
|
27
26
|
ext/appsignal-agent
|
28
27
|
ext/appsignal.h
|
29
|
-
ext/appsignal.architecture
|
30
28
|
ext/appsignal.version
|
31
29
|
ext/Makefile
|
32
30
|
ext/*.bundle
|
33
31
|
ext/*.o
|
34
32
|
ext/*.so
|
33
|
+
ext/*.report
|
35
34
|
pkg/
|
data/.rubocop.yml
CHANGED
data/.rubocop_todo.yml
CHANGED
@@ -1,12 +1,12 @@
|
|
1
1
|
# This configuration was generated by
|
2
2
|
# `rubocop --auto-gen-config`
|
3
|
-
# on
|
3
|
+
# on 2019-03-12 21:08:54 +0100 using RuboCop version 0.50.0.
|
4
4
|
# The point is for the user to remove these configuration records
|
5
5
|
# one by one as the offenses are removed from the code base.
|
6
6
|
# Note that changes in the inspected code, or installation of new
|
7
7
|
# versions of RuboCop, may require this file to be generated again.
|
8
8
|
|
9
|
-
# Offense count:
|
9
|
+
# Offense count: 50
|
10
10
|
Metrics/AbcSize:
|
11
11
|
Max: 56
|
12
12
|
|
@@ -28,13 +28,13 @@ Metrics/ClassLength:
|
|
28
28
|
Metrics/CyclomaticComplexity:
|
29
29
|
Max: 11
|
30
30
|
|
31
|
-
# Offense count:
|
31
|
+
# Offense count: 532
|
32
32
|
# Configuration parameters: AllowHeredoc, AllowURI, URISchemes, IgnoreCopDirectives, IgnoredPatterns.
|
33
33
|
# URISchemes: http, https
|
34
34
|
Metrics/LineLength:
|
35
35
|
Max: 152
|
36
36
|
|
37
|
-
# Offense count:
|
37
|
+
# Offense count: 109
|
38
38
|
# Configuration parameters: CountComments.
|
39
39
|
Metrics/MethodLength:
|
40
40
|
Max: 60
|
@@ -52,7 +52,7 @@ Metrics/PerceivedComplexity:
|
|
52
52
|
# Offense count: 9
|
53
53
|
Naming/AccessorMethodName:
|
54
54
|
Exclude:
|
55
|
-
- 'lib/appsignal.rb'
|
55
|
+
- 'lib/appsignal/helpers/instrumentation.rb'
|
56
56
|
- 'lib/appsignal/transaction.rb'
|
57
57
|
|
58
58
|
# Offense count: 4
|
@@ -71,6 +71,7 @@ Security/YAMLLoad:
|
|
71
71
|
Style/Alias:
|
72
72
|
Exclude:
|
73
73
|
- 'lib/appsignal.rb'
|
74
|
+
- 'lib/appsignal/helpers/instrumentation.rb'
|
74
75
|
- 'lib/appsignal/hooks/active_support_notifications.rb'
|
75
76
|
- 'lib/appsignal/hooks/celluloid.rb'
|
76
77
|
- 'lib/appsignal/hooks/net_http.rb'
|
@@ -88,7 +89,7 @@ Style/ClassAndModuleChildren:
|
|
88
89
|
Exclude:
|
89
90
|
- 'lib/appsignal/integrations/padrino.rb'
|
90
91
|
|
91
|
-
# Offense count:
|
92
|
+
# Offense count: 6
|
92
93
|
Style/ClassVars:
|
93
94
|
Exclude:
|
94
95
|
- 'lib/appsignal/event_formatter.rb'
|
@@ -98,13 +99,3 @@ Style/ClassVars:
|
|
98
99
|
Style/DoubleNegation:
|
99
100
|
Exclude:
|
100
101
|
- 'lib/appsignal.rb'
|
101
|
-
|
102
|
-
# Offense count: 5
|
103
|
-
# Configuration parameters: MinBodyLength.
|
104
|
-
Style/GuardClause:
|
105
|
-
Exclude:
|
106
|
-
- 'lib/appsignal.rb'
|
107
|
-
- 'lib/appsignal/event_formatter.rb'
|
108
|
-
- 'lib/appsignal/event_formatter/moped/query_formatter.rb'
|
109
|
-
- 'lib/appsignal/hooks.rb'
|
110
|
-
- 'lib/appsignal/marker.rb'
|
data/.travis.yml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
# DO NOT EDIT
|
2
|
-
# This is a generated file by the `rake travis:generate` task.
|
2
|
+
# This is a generated file by the `rake build_matrix:travis:generate` task.
|
3
3
|
# See `build_matrix.yml` for the build matrix.
|
4
|
-
# Generate this file with `rake travis:generate`.
|
4
|
+
# Generate this file with `rake build_matrix:travis:generate`.
|
5
5
|
---
|
6
6
|
sudo: false
|
7
7
|
branches:
|
@@ -11,29 +11,30 @@ branches:
|
|
11
11
|
language: ruby
|
12
12
|
cache:
|
13
13
|
directories:
|
14
|
-
- vendor/
|
14
|
+
- "$TRAVIS_BUILD_DIR/vendor/cache"
|
15
15
|
env:
|
16
16
|
global:
|
17
|
+
- BUNDLE_PATH=$TRAVIS_BUILD_DIR/vendor/cache
|
17
18
|
- RUNNING_IN_CI=true
|
18
19
|
- RAILS_ENV=test
|
19
20
|
- JRUBY_OPTS=''
|
20
21
|
before_install:
|
21
22
|
- "./support/install_deps"
|
22
|
-
install: "./support/bundler_wrapper install --jobs=3 --retry=3"
|
23
|
+
install: "./support/bundler_wrapper install --jobs=3 --retry=3 --path=${BUNDLE_PATH:-$TRAVIS_BUILD_DIR/vendor/cache}"
|
23
24
|
before_script:
|
24
25
|
- "./support/bundler_wrapper exec rake extension:install"
|
25
26
|
script: "./support/bundler_wrapper exec rake test"
|
26
27
|
after_failure:
|
27
|
-
- find ./ext -name install.
|
28
|
+
- find ./ext -name install.report -exec cat {} \;
|
28
29
|
- find ./ext -name mkmf.log -exec cat {} \;
|
29
30
|
matrix:
|
30
31
|
fast_finish: true
|
31
32
|
include:
|
32
|
-
- rvm: 2.6.
|
33
|
+
- rvm: 2.6.4
|
33
34
|
gemfile: gemfiles/no_dependencies.gemfile
|
34
35
|
before_script: ''
|
35
36
|
script:
|
36
|
-
- "./support/bundler_wrapper exec rake travis:validate"
|
37
|
+
- "./support/bundler_wrapper exec rake build_matrix:travis:validate"
|
37
38
|
- "./support/bundler_wrapper exec rubocop"
|
38
39
|
- rvm: 2.0.0
|
39
40
|
gemfile: gemfiles/no_dependencies.gemfile
|
@@ -89,60 +90,60 @@ matrix:
|
|
89
90
|
- rvm: 2.5.3
|
90
91
|
gemfile: gemfiles/no_dependencies.gemfile
|
91
92
|
env: _RUBYGEMS_VERSION=latest _BUNDLER_VERSION=latest
|
92
|
-
- rvm: 2.5.3
|
93
|
-
gemfile: gemfiles/rails-4.2.gemfile
|
94
|
-
env: _RUBYGEMS_VERSION=latest _BUNDLER_VERSION=1.17.3
|
95
93
|
- rvm: 2.5.3
|
96
94
|
gemfile: gemfiles/rails-5.2.gemfile
|
97
95
|
env: _RUBYGEMS_VERSION=latest _BUNDLER_VERSION=latest
|
98
|
-
- rvm: 2.6.
|
96
|
+
- rvm: 2.6.4
|
99
97
|
gemfile: gemfiles/no_dependencies.gemfile
|
100
98
|
env: _RUBYGEMS_VERSION=latest _BUNDLER_VERSION=latest
|
101
|
-
- rvm: 2.6.
|
99
|
+
- rvm: 2.6.4
|
102
100
|
gemfile: gemfiles/capistrano2.gemfile
|
103
101
|
env: _RUBYGEMS_VERSION=latest _BUNDLER_VERSION=latest
|
104
|
-
- rvm: 2.6.
|
102
|
+
- rvm: 2.6.4
|
105
103
|
gemfile: gemfiles/capistrano3.gemfile
|
106
104
|
env: _RUBYGEMS_VERSION=latest _BUNDLER_VERSION=latest
|
107
|
-
- rvm: 2.6.
|
105
|
+
- rvm: 2.6.4
|
108
106
|
gemfile: gemfiles/grape.gemfile
|
109
107
|
env: _RUBYGEMS_VERSION=latest _BUNDLER_VERSION=latest
|
110
|
-
- rvm: 2.6.
|
108
|
+
- rvm: 2.6.4
|
111
109
|
gemfile: gemfiles/padrino.gemfile
|
112
110
|
env: _RUBYGEMS_VERSION=latest _BUNDLER_VERSION=1.17.3
|
113
|
-
- rvm: 2.6.
|
111
|
+
- rvm: 2.6.4
|
114
112
|
gemfile: gemfiles/que.gemfile
|
115
113
|
env: _RUBYGEMS_VERSION=latest _BUNDLER_VERSION=latest
|
116
|
-
- rvm: 2.6.
|
114
|
+
- rvm: 2.6.4
|
115
|
+
gemfile: gemfiles/que_beta.gemfile
|
116
|
+
env: _RUBYGEMS_VERSION=latest _BUNDLER_VERSION=latest
|
117
|
+
- rvm: 2.6.4
|
117
118
|
gemfile: gemfiles/rails-5.0.gemfile
|
118
119
|
env: _RUBYGEMS_VERSION=latest _BUNDLER_VERSION=latest
|
119
|
-
- rvm: 2.6.
|
120
|
+
- rvm: 2.6.4
|
120
121
|
gemfile: gemfiles/rails-5.1.gemfile
|
121
122
|
env: _RUBYGEMS_VERSION=latest _BUNDLER_VERSION=latest
|
122
|
-
- rvm: 2.6.
|
123
|
+
- rvm: 2.6.4
|
123
124
|
gemfile: gemfiles/rails-5.2.gemfile
|
124
125
|
env: _RUBYGEMS_VERSION=latest _BUNDLER_VERSION=latest
|
125
|
-
- rvm: 2.6.
|
126
|
+
- rvm: 2.6.4
|
127
|
+
gemfile: gemfiles/rails-6.0.gemfile
|
128
|
+
env: _RUBYGEMS_VERSION=latest _BUNDLER_VERSION=latest
|
129
|
+
- rvm: 2.6.4
|
126
130
|
gemfile: gemfiles/resque.gemfile
|
127
131
|
env: _RUBYGEMS_VERSION=latest _BUNDLER_VERSION=1.17.3
|
128
|
-
- rvm: 2.6.
|
132
|
+
- rvm: 2.6.4
|
129
133
|
gemfile: gemfiles/sequel.gemfile
|
130
134
|
env: _RUBYGEMS_VERSION=latest _BUNDLER_VERSION=latest
|
131
|
-
- rvm: 2.6.
|
135
|
+
- rvm: 2.6.4
|
132
136
|
gemfile: gemfiles/sequel-435.gemfile
|
133
137
|
env: _RUBYGEMS_VERSION=latest _BUNDLER_VERSION=latest
|
134
|
-
- rvm: 2.6.
|
138
|
+
- rvm: 2.6.4
|
135
139
|
gemfile: gemfiles/sinatra.gemfile
|
136
140
|
env: _RUBYGEMS_VERSION=latest _BUNDLER_VERSION=latest
|
137
|
-
- rvm: 2.6.
|
141
|
+
- rvm: 2.6.4
|
138
142
|
gemfile: gemfiles/webmachine.gemfile
|
139
143
|
env: _RUBYGEMS_VERSION=latest _BUNDLER_VERSION=latest
|
140
144
|
- rvm: jruby-19mode
|
141
145
|
gemfile: gemfiles/no_dependencies.gemfile
|
142
146
|
env: _RUBYGEMS_VERSION=latest _BUNDLER_VERSION=latest
|
143
|
-
- rvm: jruby-19mode
|
144
|
-
gemfile: gemfiles/rails-4.2.gemfile
|
145
|
-
env: _RUBYGEMS_VERSION=latest _BUNDLER_VERSION=1.17.3
|
146
147
|
- rvm: jruby-19mode
|
147
148
|
gemfile: gemfiles/rails-5.2.gemfile
|
148
149
|
env: _RUBYGEMS_VERSION=latest _BUNDLER_VERSION=latest
|
data/CHANGELOG.md
CHANGED
@@ -1,18 +1,142 @@
|
|
1
|
-
#
|
2
|
-
|
3
|
-
|
4
|
-
|
1
|
+
# Changelog
|
2
|
+
|
3
|
+
## 2.9.18 (Beta)
|
4
|
+
- Bump agent to v-c348132
|
5
|
+
- Improve transmitter logging on timeout
|
6
|
+
- Improve queued payloads transmitter. Should prevent payloads being sent
|
7
|
+
multiple times.
|
8
|
+
- Add transaction debug mode
|
9
|
+
- Wrap Option in Mutex in TransactionInProgess
|
10
|
+
|
11
|
+
## 2.9.17
|
12
|
+
- Handle missing file and load errors from `application.rb` in `appsignal
|
13
|
+
install` for Rails apps. PR #568
|
14
|
+
- Support minutely probes for Puma in clustered mode. PR #570
|
15
|
+
See the installation instructions for the Puma plugin:
|
16
|
+
https://docs.appsignal.com/ruby/integrations/puma.html
|
17
|
+
|
18
|
+
## 2.9.16
|
19
|
+
- Check set_error arguments for Exceptions. PR #565
|
20
|
+
- Bump agent to v-1d8917f - commit 737d6b1b8fc9cd2c0564050bb04246d9267dceb7
|
21
|
+
- Only attempt to send queued payloads if we have a successful transmission.
|
22
|
+
|
23
|
+
## 2.9.15
|
24
|
+
- Bump agent to v-690f4b8 - commit cf4f3787395c8524079f3bed3b2c2367296482a9
|
25
|
+
- Validate transmission_interval option.
|
26
|
+
|
27
|
+
## 2.9.14
|
28
|
+
- Support mirrors when downloading the agent & extension. PR #558
|
29
|
+
- Support Que's upcoming 1.0.0 release. PR #557
|
30
|
+
|
31
|
+
## 2.9.13
|
32
|
+
- Bump agent to v-e1c9363
|
33
|
+
- Detect revision from Heroku dynos automatically when Dyno Metadata is
|
34
|
+
turned on.
|
35
|
+
|
36
|
+
## 2.9.12
|
37
|
+
- Bump agent to v-a3e0f83 - commit 3d94dd42645922214fc2f5bc09cfa7c597323198
|
38
|
+
- Better detect zombie/defunct processes on containers and consider the
|
39
|
+
processes dead. This should improve the appsignal-agent start behavior.
|
40
|
+
- Fix Sequel install hook version detection mismatch. PR #553
|
41
|
+
- Improve support for older Sidekiq versions. PR #555
|
42
|
+
|
43
|
+
## 2.9.11
|
44
|
+
- Bump agent to v-a718022
|
45
|
+
- Fix container CPU runtime metrics.
|
46
|
+
See https://github.com/appsignal/probes-rs/pull/38 for more information.
|
47
|
+
- Improve host metrics calculations accuracy for counter metrics.
|
48
|
+
See https://github.com/appsignal/probes-rs/pull/40 for more information.
|
49
|
+
- Support Kernel 4.18+ format of /proc/diskstats file parsing.
|
50
|
+
See https://github.com/appsignal/probes-rs/pull/39 for more information.
|
51
|
+
|
52
|
+
## 2.9.10
|
53
|
+
- Fix Puma minutely probe start where `daemonize` is set to `true`. PR #548
|
54
|
+
|
55
|
+
## 2.9.9
|
56
|
+
- Fix error in the ActiveSupport::Notifications integration when a transaction
|
57
|
+
gets completed during event instrumentation. PR #532
|
58
|
+
- Fix Redis constant load error. PR #543
|
59
|
+
- Add more logging for errors in debug mode. PR #544
|
60
|
+
- Deprecate notify_of_deploy command. PR #545
|
61
|
+
- Always call the block given to `Appsignal.monitor_transaction` and log errors
|
62
|
+
from the helper even when AppSignal is not active. PR #547
|
63
|
+
|
64
|
+
## 2.9.8
|
65
|
+
- Fix Ruby 1.9 compatibility in extension installation. PR #531
|
66
|
+
|
67
|
+
## 2.9.7
|
68
|
+
- Fix minutely probes not being loaded from Rails initializers. PR #528
|
69
|
+
|
70
|
+
## 2.9.6
|
71
|
+
- Print link to diagnose docs on unsuccessful demo command. PR #512
|
72
|
+
- Add support for minutely probe `.dependencies_present?` check. PR #523
|
73
|
+
- Do not activate Sidekiq minutely probe on unsupported Redis gem versions.
|
74
|
+
PR #523.
|
75
|
+
|
76
|
+
## 2.9.5
|
77
|
+
- Improve logging in minutely probes. PR #508
|
78
|
+
- Delay the first minutely probe for a bit, since it might take some
|
79
|
+
time for dependencies to initialize. PR #511
|
80
|
+
|
81
|
+
## 2.9.4
|
82
|
+
- Log error backtraces in minutely probes as debug messages. PR #495
|
83
|
+
- Don't add cluster behavior in Puma single mode. PR #504
|
84
|
+
- Only register ActionView event formatter in Rails. PR #503
|
85
|
+
- Convert Sidekiq latency from seconds to ms. PR #505
|
86
|
+
|
87
|
+
## 2.9.3
|
88
|
+
- Remove GCProbe. PR #501
|
89
|
+
|
90
|
+
## 2.9.2
|
91
|
+
- Fix Puma.stats calls. PR #496
|
92
|
+
- Only send Puma metrics if available. PR #497
|
93
|
+
- Track memory metrics of the current process. PR #499
|
94
|
+
|
95
|
+
## 2.9.1
|
96
|
+
- Fix memory leak in custom metrics key names.
|
97
|
+
Commit 9064e2ccfd19ee05c333d0ecda4deafdd743629e
|
98
|
+
|
99
|
+
## 2.9.0
|
100
|
+
- Fix installations using git source. PR #455
|
101
|
+
- Track installation results in installation report. PR #450
|
102
|
+
- Fix Rails 6 deprecation warnings. PR #460, PR #478, PR #483
|
103
|
+
- Improve error handling in minutely probes mechanism. PR #467
|
104
|
+
- Only allow one minutely probe thread to run at a time. PR #469
|
105
|
+
- Change minutely probes register method to use a key for every probe. PR #473
|
106
|
+
- Send Sidekiq metrics by default. PR #471
|
107
|
+
- Send MongoDB metrics by default. PR #472
|
108
|
+
- Fix Ruby 2.6 deprecation warnings. PR #479
|
109
|
+
- Support blocks for `Appsignal.send_error` to add more metadata to the
|
110
|
+
AppSignal transaction. PR #481
|
111
|
+
- Move instrumentation & metrics helpers to modules. PR #487
|
112
|
+
- Add Puma minutely probe. PR #488
|
113
|
+
- Log invalid EventFormatter registrations as errors. PR #491
|
114
|
+
- Support container CPU host metrics.
|
115
|
+
Commit f2fca1ec5a850cd84fbc8cefe63af8f039ebb155
|
116
|
+
- Support StatsD server in agent.
|
117
|
+
Commit f2fca1ec5a850cd84fbc8cefe63af8f039ebb155
|
118
|
+
- Fix samples being reported for multiple namespaces.
|
119
|
+
Commit f2fca1ec5a850cd84fbc8cefe63af8f039ebb155
|
120
|
+
- Report memory and swap usage in percent using the memory_usage and
|
121
|
+
swap_usage metrics. Commit f2fca1ec5a850cd84fbc8cefe63af8f039ebb155
|
122
|
+
|
123
|
+
## 2.8.4
|
124
|
+
- Log memory usage of agent if high.
|
125
|
+
Commit 46cf3770e13eff9f5fccbf8a4525a8dbfd8eeaad
|
126
|
+
- Fix `Appsignal::Transaction.pause!`. PR #482
|
127
|
+
|
128
|
+
## 2.8.3
|
5
129
|
- Fix multi user permission issue for agent directories and files.
|
6
130
|
Commit ab1b35f850777d5999b41627d75be0b3904bc0a1
|
7
131
|
|
8
|
-
|
132
|
+
## 2.8.2
|
9
133
|
- Remove Bundler requirement from diagnose command. PR #451
|
10
134
|
- Fix Delayed::Job action name reporting for structs. PR #463
|
11
135
|
|
12
|
-
|
136
|
+
## 2.8.1
|
13
137
|
- Fix installation on Ruby 2.6 for libc and musl library builds. PR #453
|
14
138
|
|
15
|
-
|
139
|
+
## 2.8.0
|
16
140
|
- Group extension and agent tests in diagnose output. PR #437
|
17
141
|
- Add diagnose --[no-]send-report option. PR #438
|
18
142
|
- Print deprecation warnings to STDOUT as well. PR #439
|
@@ -27,21 +151,21 @@
|
|
27
151
|
PR #448
|
28
152
|
- Make agent debug logging for disk IO metrics more robust. PR #448
|
29
153
|
|
30
|
-
|
154
|
+
## 2.7.3 Beta
|
31
155
|
- Add user and group context to diagnose report. PR #436
|
32
156
|
- Add user and group context to agent logs. PR #436
|
33
157
|
- Fixes for running with multiple users
|
34
158
|
|
35
|
-
|
159
|
+
## 2.7.2
|
36
160
|
- Change the order of instructions in the install script for Rails. PR #433
|
37
161
|
- Fix linking issues on multi-stage build setups. PR #434
|
38
162
|
|
39
|
-
|
163
|
+
## 2.7.1
|
40
164
|
- Improve error log on unsupported architecture and build combination on
|
41
165
|
install. PR #426
|
42
166
|
- Improve performance when garbage collection profiling is disabled. PR #429
|
43
167
|
|
44
|
-
|
168
|
+
## 2.7.0
|
45
169
|
- Detect Kubernetes containers as containers for `running_in_container`
|
46
170
|
config option. Commit 60822aac24ccc394df073091c64f05096455942d.
|
47
171
|
- Fix in memory logger initialization. PR #416
|
@@ -51,11 +175,11 @@
|
|
51
175
|
- Use doubles values in custom metrics functions. PR #422
|
52
176
|
- Bump agent to e41c3c0. Commit 8056af037f82eda156c5946911012e5c742b5664
|
53
177
|
|
54
|
-
|
178
|
+
## 2.6.1
|
55
179
|
- Remove request_headers warning and use sane default. PR #410
|
56
180
|
- Fix metrics format for internal agent metrics. PR #411
|
57
181
|
|
58
|
-
|
182
|
+
## 2.6.0
|
59
183
|
- Enable frozen strings by default. PR #384
|
60
184
|
- Add `revision` config option. PR #388
|
61
185
|
- Avoid generating unique action names for Padrino. PR #393
|
@@ -67,53 +191,53 @@
|
|
67
191
|
- Rename ParamsSanitizer to HashSanitizer. PR #408
|
68
192
|
- Fix empty action name issue. Commit b292c2c93c8935ab54fc4d16598fa534c9cc9c90
|
69
193
|
|
70
|
-
|
194
|
+
## 2.5.3
|
71
195
|
- Fix Sidekiq action names containing arguments. PR #401
|
72
196
|
|
73
|
-
|
197
|
+
## 2.5.2
|
74
198
|
- Support Sidekiq delay extension for ActiveRecord instances. If using this
|
75
199
|
feature in your app, an update is strongly recommended! PR #387
|
76
200
|
- Improve custom event formatter registration. An event formatter can now be
|
77
201
|
registered in a Rails initializer after AppSignal has been loaded/started.
|
78
202
|
PR #397
|
79
203
|
|
80
|
-
|
204
|
+
## 2.5.1
|
81
205
|
- Improve internal sample storage in agent.
|
82
206
|
Commit 2c8eae26685c7a1517cf2e57b44edd1557a502f2
|
83
207
|
- No longer set _APPSIGNAL_AGENT_VERSION environment variable. PR #385
|
84
208
|
|
85
|
-
|
86
|
-
|
87
|
-
|
88
|
-
|
209
|
+
## 2.5.0
|
210
|
+
- Fix Capistrano config overrides. PR #375
|
211
|
+
- Add JRuby beta support. PR #376
|
212
|
+
- Fix locking issue on diagnose mode run.
|
89
213
|
Commit e6c6de811f8115a73050fc865e89dd4945ddec57
|
90
|
-
|
214
|
+
- Increase stored length of error messages.
|
91
215
|
Commit e6c6de811f8115a73050fc865e89dd4945ddec57
|
92
216
|
|
93
|
-
|
94
|
-
|
217
|
+
## 2.4.3
|
218
|
+
- Store more details for Redis events. PR #374
|
95
219
|
|
96
|
-
|
97
|
-
|
98
|
-
|
220
|
+
## 2.4.2
|
221
|
+
- Store agent architecture rather than platform. PR #367
|
222
|
+
- Improve documentation for `Appsignal.monitor_transaction` better.
|
99
223
|
Commit e53987ba36a79fc8883f2e59322946297ddee773
|
100
|
-
|
224
|
+
- Change log level from info to debug for value comparing failures.
|
101
225
|
Commit ecef28b28edaff46b95f53a916c93021dc763160
|
102
|
-
|
226
|
+
- Collect free memory host metric.
|
103
227
|
Commit ecef28b28edaff46b95f53a916c93021dc763160
|
104
|
-
|
228
|
+
- Fix crashes when Set wasn't required before AppSignal, such as in the CLI.
|
105
229
|
PR #373
|
106
230
|
|
107
|
-
|
108
|
-
|
109
|
-
|
231
|
+
## 2.4.1
|
232
|
+
- Add Que integration. PR #361
|
233
|
+
- Support Sidekiq delayed extension job action names better. Now action names
|
110
234
|
are reported as their class and class method name (`MyClass.method`), rather
|
111
235
|
than `Sidekiq::Extensions::DelayedClass#perform` for all jobs through that
|
112
236
|
extension. PR #362
|
113
|
-
|
114
|
-
|
237
|
+
- Support Sidekiq Enterprise encrypted values. PR #365
|
238
|
+
- Use musl build for older libc systems. PR #366
|
115
239
|
|
116
|
-
|
240
|
+
## 2.4.0
|
117
241
|
- Add separate GNU linux build. PR #351 and
|
118
242
|
Commit d1763f4dcb685608468a73f3192226f60f66b217
|
119
243
|
- Add separate FreeBSD build
|
@@ -129,600 +253,600 @@
|
|
129
253
|
- Revert Sidekiq delayed extension job action names fix.
|
130
254
|
Commit 9b84a098604de5ef5e52645ba7fcb09d84f66eaa
|
131
255
|
|
132
|
-
|
133
|
-
|
256
|
+
## 2.3.7
|
257
|
+
- Support Sidekiq delayed extension job action names better. Now action names
|
134
258
|
are reported as their class and class method name (`MyClass.method`), rather
|
135
259
|
than `Sidekiq::Extensions::DelayedClass#perform` for all jobs through that
|
136
260
|
extension. PR #348
|
137
261
|
|
138
|
-
|
139
|
-
|
140
|
-
|
262
|
+
## 2.3.6
|
263
|
+
- Allow configuration of permissions of working directory. PR #336
|
264
|
+
- Fix locking bug that delayed extension shutdown.
|
141
265
|
Commit 51d90bb1207affc2c88f7cff5035a2c36acf9784
|
142
|
-
|
266
|
+
- Log extension start with app revision if present
|
143
267
|
Commit 51d90bb1207affc2c88f7cff5035a2c36acf9784
|
144
268
|
|
145
|
-
|
269
|
+
## 2.3.5
|
146
270
|
|
147
271
|
Yanked
|
148
272
|
|
149
|
-
|
150
|
-
|
273
|
+
## 2.3.4
|
274
|
+
- Fix naming for ActiveJob integration with DelayedJob. PR #345
|
151
275
|
|
152
|
-
|
153
|
-
|
154
|
-
|
155
|
-
|
156
|
-
|
276
|
+
## 2.3.3
|
277
|
+
- Accept mixed case env variable values for the `true` value. PR #333
|
278
|
+
- Don't record sensitive HTTP_X_AUTH_TOKEN header. PR #334
|
279
|
+
- Support dry run option for Capistrano 3.5.0 and higher. PR #339
|
280
|
+
- Agent and extension update. Improve agent connection handling. Commit
|
157
281
|
e75d2f9b520d46f6cd0266b484b2c26c3bdc8882
|
158
282
|
|
159
|
-
|
160
|
-
|
283
|
+
## 2.3.2
|
284
|
+
- Improve Rake argument handling. Allow for more detailed view of which
|
161
285
|
arguments a tasks receives. PR #328
|
162
286
|
|
163
|
-
|
164
|
-
|
287
|
+
## 2.3.1
|
288
|
+
- Fix ActiveSupport::Notifications hook not supporting non-string names for
|
165
289
|
events. PR #324
|
166
290
|
|
167
|
-
|
168
|
-
|
169
|
-
|
170
|
-
|
291
|
+
## 2.3.0
|
292
|
+
- Fix Shoryuken instrumentation when body is a string. PR #266
|
293
|
+
- Enable ActiveSupport instrumentation at all times. PR #274
|
294
|
+
- Add parameter filtering for background jobs. Automatically uses the AppSignal
|
171
295
|
parameter filtering. PR #280
|
172
|
-
|
173
|
-
|
174
|
-
|
175
|
-
|
176
|
-
|
177
|
-
|
296
|
+
- Improve log messages for transactions. PR #293
|
297
|
+
- Remove thread_safe dependency. PR #294
|
298
|
+
- Add `Transaction#params` attribute for custom parameters. PR #295
|
299
|
+
- Fix queue time on DelayedJob integration. PR #297
|
300
|
+
- Add ActionCable support. PR #309
|
301
|
+
- Finish ActiveSupport notifications events when they would encounter a `raise`
|
178
302
|
or a `throw`. PR #310
|
179
|
-
|
180
|
-
|
303
|
+
- Add `ignore_namespaces` option. PR #312
|
304
|
+
- Truncate lengthy parameter values to 2000 characters.
|
181
305
|
Commit 65de1382f5f453b624781cde6e0544c89fdf89ef and
|
182
306
|
d3ca2a545fb22949f3369692dd57d49b4936c739.
|
183
|
-
|
184
|
-
|
307
|
+
- Disable gracefully on Microsoft Windows. PR #313
|
308
|
+
- Add tags and namespace arguments to `Appsignal.set_error`. PR #317
|
185
309
|
|
186
|
-
|
187
|
-
|
188
|
-
|
310
|
+
## 2.2.1
|
311
|
+
- Fix support for Rails 5.1. PR #286
|
312
|
+
- Fix instrumentation that would report a duration of `0ms` for all DataMapper
|
189
313
|
queries. PR #290
|
190
|
-
|
314
|
+
- Finish events when `Appsignal.instrument` encounters a `raise` or a `throw`.
|
191
315
|
PR #292
|
192
316
|
|
193
|
-
|
194
|
-
|
195
|
-
|
196
|
-
|
317
|
+
## 2.2.0
|
318
|
+
- Support Ruby 2.4 better. PR #234
|
319
|
+
- Initial setup for documenting the Ruby gem's code. PR #243
|
320
|
+
- Move `running_in_container` auto detection to extension for easy reuse.
|
197
321
|
PR #249
|
198
|
-
|
199
|
-
|
322
|
+
- Allow overriding of action and namespace for a transaction. PR #254
|
323
|
+
- Prefix all agent configuration environment variables with an underscore to
|
200
324
|
separate the two usages. PR #258
|
201
|
-
|
325
|
+
- Force agent to run in diagnostic mode even when the user config is set to
|
202
326
|
`active: false`. PR #260
|
203
|
-
|
204
|
-
|
205
|
-
|
206
|
-
|
207
|
-
|
208
|
-
|
209
|
-
|
210
|
-
|
211
|
-
|
212
|
-
|
213
|
-
|
214
|
-
|
327
|
+
- Stub JS error catching endpoint when not active. PR #263
|
328
|
+
- Use better event names for Padrino integration. PR #265
|
329
|
+
- No longer gzip payloads send by the Ruby gem transmitter. PR #269
|
330
|
+
- Send diagnostics data report to AppSignal on request. PR #270
|
331
|
+
- When JS exception endpoint payload is empty return 400 code. PR #271
|
332
|
+
- Remove hardcoded DNS servers from agent and add config option. PR #278
|
333
|
+
|
334
|
+
## 2.1.2
|
335
|
+
- Fix error with Grape request methods defined with symbols. PR #259
|
336
|
+
|
337
|
+
## 2.1.1
|
338
|
+
- Fix DNS issue related to the musl build.
|
215
339
|
Commit 732c877de8faceabe8a977bf80a82a6a89065c4d and
|
216
340
|
84e521d20d4438f7b1dda82d5e9f1f533ae27c4b
|
217
|
-
|
218
|
-
|
341
|
+
- Update benchmark and add load test. PR #248
|
342
|
+
- Fix configuring instrument Redis and Sequel from env. PR #257
|
219
343
|
|
220
|
-
|
221
|
-
|
222
|
-
|
344
|
+
## 2.1.0
|
345
|
+
- Add support for musl based libc (Alpine Linux). PR #229
|
346
|
+
- Implement `Appsignal.is_ignored_error?` and `Appsignal.is_ignored_action?`
|
223
347
|
logic in the AppSignal extension. PR #224
|
224
|
-
|
225
|
-
|
226
|
-
|
227
|
-
|
228
|
-
|
348
|
+
- Deprecate `Appsignal.is_ignored_error?`. PR #224
|
349
|
+
- Deprecate `Appsignal.is_ignored_action?`. PR #224
|
350
|
+
- Enforce a coding styleguide with RuboCop. PR #226
|
351
|
+
- Remove unused `Appsignal.agent` attribute. PR #244
|
352
|
+
- Deprecate unused `Appsignal::AuthCheck` logger argument. PR #245
|
229
353
|
|
230
|
-
|
231
|
-
|
354
|
+
## 2.0.6
|
355
|
+
- Fix `Appsignal::Transaction#record_event` method call. PR #240
|
232
356
|
|
233
|
-
|
234
|
-
|
357
|
+
## 2.0.5
|
358
|
+
- Improved logging for agent connection issues.
|
235
359
|
Commit cdf9d3286d704e22473eb901c839cab4fab45a6f
|
236
|
-
|
360
|
+
- Handle nil request/environments in transactions. PR #231
|
237
361
|
|
238
|
-
|
239
|
-
|
240
|
-
|
241
|
-
|
362
|
+
## 2.0.4
|
363
|
+
- Use consistent log format for both file and STDOUT logs. PR #203
|
364
|
+
- Fix log path in `appsignal diagnose` for Rails applications. PR #218, #222
|
365
|
+
- Change default log path to `./log` rather than project root for all non-Rails
|
242
366
|
applications. PR #222
|
243
|
-
|
367
|
+
- Load the `APPSIGNAL_APP_ENV` environment configuration option consistently
|
244
368
|
for all integrations. PR #204
|
245
|
-
|
369
|
+
- Support the `--environment` option on the `appsignal diagnose` command. PR
|
246
370
|
#214
|
247
|
-
|
248
|
-
|
371
|
+
- Use the real system `/tmp` directory, not a symlink. PR #219
|
372
|
+
- Run the AppSignal agent in diagnose mode in the `appsignal diagnose` command.
|
249
373
|
PR #221
|
250
|
-
|
374
|
+
- Test for directory and file ownership and permissions in the
|
251
375
|
`appsignal diagnose` command. PR #216
|
252
|
-
|
253
|
-
|
376
|
+
- Test if current user is `root` in the `appsignal diagnose` command. PR #215
|
377
|
+
- Output last couple of lines from `appsignal.log` on agent connection
|
254
378
|
failures.
|
255
|
-
|
379
|
+
- Agent will no longer fail to start if no writable log path is found.
|
256
380
|
Commit 8920865f6158229a46ed4bd1cc98d99a849884c0, change in agent.
|
257
|
-
|
381
|
+
- Internal refactoring of the test suite and the `appsignal install` command.
|
258
382
|
PR #200, #205
|
259
383
|
|
260
|
-
|
261
|
-
|
384
|
+
## 2.0.3
|
385
|
+
- Fix JavaScript exception catcher throwing an error on finishing a
|
262
386
|
transaction. PR #210
|
263
387
|
|
264
|
-
|
265
|
-
|
388
|
+
## 2.0.2
|
389
|
+
- Fix Sequel instrumentation overriding existing logic from extensions. PR #209
|
266
390
|
|
267
|
-
|
268
|
-
|
391
|
+
## 2.0.1
|
392
|
+
- Fix configuration load order regression for the `APPSIGNAL_PUSH_API_KEY`
|
269
393
|
environment variable's activation behavior. PR #208
|
270
394
|
|
271
|
-
|
272
|
-
|
273
|
-
|
395
|
+
## 2.0.0
|
396
|
+
- Add `Appsignal.instrument_sql` convenience methods. PR #136
|
397
|
+
- Use `Appsignal.instrument` internally instead of ActiveSupport
|
274
398
|
instrumentation. PR #142
|
275
|
-
|
276
|
-
|
399
|
+
- Override ActiveSupport instrument instead of subscribing. PR #150
|
400
|
+
- Remove required dependency on ActiveSupport. Recommended you use
|
277
401
|
`Appsignal.instrument` if you don't need `ActiveSupport`. PR #150 #142
|
278
|
-
|
279
|
-
|
402
|
+
- Use have_library to link the AppSignal extension `libappsignal`. PR #148
|
403
|
+
- Rename `appsignal_extension.h` to `appsignal.h`.
|
280
404
|
Commit 9ed7c8d83f622d5a79c5c21d352b3360fd7e8113
|
281
|
-
|
282
|
-
|
283
|
-
|
284
|
-
|
405
|
+
- Refactor rescuing of Exception. PR #173
|
406
|
+
- Use GC::Profiler to track garbage collection time. PR #134
|
407
|
+
- Detect if AppSignal is running in a container or Heroku. PR #177 #178
|
408
|
+
- Change configuration load order to load environment settings after
|
285
409
|
`appsignal.yml`. PR #178
|
286
|
-
|
287
|
-
|
288
|
-
|
410
|
+
- Speed up payload generation by letting the extension handle it. PR #175
|
411
|
+
- Improve `appsignal diagnose` formatting and output more data. PR #187
|
412
|
+
- Remove outdated `appsignal:diagnose` rake tasks. Use `appsignal diagnose`
|
289
413
|
instead. PR #193
|
290
|
-
|
291
|
-
|
292
|
-
|
293
|
-
|
414
|
+
- Fix JavaScript exception without names resulting in errors themselves. PR #188
|
415
|
+
- Support namespaces in Grape routes. PR #189
|
416
|
+
- Change STDOUT output to always mention "AppSignal", not "Appsignal". PR #192
|
417
|
+
- `appsignal notify_of_deploy` refactor. `--name` will override any
|
294
418
|
other `name` config. `--environment` is only required if it's not set in the
|
295
419
|
environment. PR #194
|
296
|
-
|
420
|
+
- Allow logging to STDOUT. Available for the Ruby gem and C extension. The
|
297
421
|
`appsignal-agent` process will continue log to file. PR #190
|
298
|
-
|
299
|
-
|
422
|
+
- Remove deprecated methods. PR #191
|
423
|
+
- Send "ruby" implementation name with version number for better identifying
|
300
424
|
different language implementations. PR #198
|
301
|
-
|
425
|
+
- Send demonstration samples to AppSignal using the `appsignal install`
|
302
426
|
command instead of asking the user to start their app. PR #196
|
303
|
-
|
427
|
+
- Add `appsignal demo` command to test the AppSignal demonstration samples
|
304
428
|
instrumentation manually and not just during the installation. PR #199
|
305
429
|
|
306
|
-
|
307
|
-
|
308
|
-
|
309
|
-
|
310
|
-
|
311
|
-
|
312
|
-
|
313
|
-
|
314
|
-
|
315
|
-
|
430
|
+
## 1.3.6
|
431
|
+
- Support blocks arguments on method instrumentation. PR #163
|
432
|
+
- Support `APPSIGNAL_APP_ENV` for Sinatra. PR #164
|
433
|
+
- Remove Sinatra install step from "appsignal install". PR #165
|
434
|
+
- Install Capistrano integration in `Capfile` instead of `deploy.rb`. #166
|
435
|
+
- More robust handing of non-writable log files. PR #160 #158
|
436
|
+
- Cleaner internal exception handling. PR #169 #170 #171 #172 #173
|
437
|
+
- Support for mixed case keywords in sql lexing. appsignal/sql_lexer#8
|
438
|
+
- Support for inserting multiple rows in sql lexing. appsignal/sql_lexer#9
|
439
|
+
- Add session_overview to JS transaction data.
|
316
440
|
Commit af2d365bc124c01d7e9363e8d825404027835765
|
317
441
|
|
318
|
-
|
442
|
+
## 1.3.5
|
319
443
|
|
320
|
-
|
321
|
-
|
322
|
-
|
444
|
+
- Fix SSL certificate config in appsignal-agent. PR #151
|
445
|
+
- Remove mounted_at Sinatra middleware option. Now detected by default. PR #146
|
446
|
+
- Sinatra applications with middleware loading before AppSignal's middleware
|
323
447
|
would crash a request. Fixed in PR #156
|
324
448
|
|
325
|
-
|
326
|
-
|
327
|
-
|
328
|
-
|
329
|
-
|
330
|
-
|
331
|
-
|
332
|
-
|
333
|
-
|
334
|
-
|
335
|
-
|
336
|
-
|
337
|
-
|
338
|
-
|
339
|
-
|
340
|
-
|
341
|
-
|
342
|
-
|
343
|
-
|
344
|
-
|
345
|
-
|
346
|
-
|
347
|
-
|
348
|
-
|
349
|
-
|
350
|
-
|
351
|
-
|
352
|
-
|
353
|
-
|
354
|
-
|
355
|
-
|
356
|
-
|
357
|
-
|
358
|
-
|
359
|
-
|
360
|
-
|
361
|
-
|
362
|
-
|
363
|
-
|
364
|
-
|
365
|
-
|
366
|
-
|
367
|
-
|
368
|
-
|
369
|
-
|
370
|
-
|
371
|
-
|
372
|
-
|
373
|
-
|
374
|
-
|
375
|
-
|
376
|
-
|
377
|
-
|
378
|
-
|
379
|
-
|
380
|
-
|
381
|
-
|
382
|
-
|
383
|
-
|
384
|
-
|
385
|
-
|
386
|
-
|
387
|
-
|
388
|
-
|
389
|
-
|
390
|
-
|
391
|
-
|
392
|
-
|
393
|
-
|
394
|
-
|
395
|
-
|
396
|
-
|
397
|
-
|
398
|
-
|
399
|
-
|
400
|
-
|
401
|
-
|
402
|
-
|
403
|
-
|
404
|
-
|
405
|
-
|
406
|
-
|
407
|
-
|
408
|
-
|
409
|
-
|
410
|
-
|
411
|
-
|
412
|
-
|
413
|
-
|
414
|
-
|
415
|
-
|
416
|
-
|
417
|
-
|
418
|
-
|
419
|
-
|
420
|
-
|
421
|
-
|
422
|
-
|
423
|
-
|
424
|
-
|
449
|
+
## 1.3.4
|
450
|
+
|
451
|
+
- Fix argument order for `record_event` in the AppSignal extension
|
452
|
+
|
453
|
+
## 1.3.3
|
454
|
+
|
455
|
+
- Output AppSignal environment on `appsignal diagnose`
|
456
|
+
- Prevent transaction crashes on Sinatra routes with optional parameters
|
457
|
+
- Listen to `stage` option to Capistrano 2 for automatic environment detection
|
458
|
+
- Add `appsignal_env` option to Capistrano 2 to set a custom environment
|
459
|
+
|
460
|
+
## 1.3.2
|
461
|
+
- Add method to discard a transaction
|
462
|
+
- Run spec suite with warnings, fixes for warnings
|
463
|
+
|
464
|
+
## 1.3.1
|
465
|
+
- Bugfix for problem when requiring config from installer
|
466
|
+
|
467
|
+
## 1.3.0
|
468
|
+
- Host metrics is now enabled by default
|
469
|
+
- Beta of minutely probes including GC metrics
|
470
|
+
- Refactor of param sanitization
|
471
|
+
- Param filtering for non-Rails frameworks
|
472
|
+
- Support for modular Sinatra applications
|
473
|
+
- Add Sinatra middleware to `Sinatra::Base` by default
|
474
|
+
- Allow a new transaction to be forced by sinatra instrumentation
|
475
|
+
- Allow hostname to be set with environment variable
|
476
|
+
- Helpers for easy method instrumentation
|
477
|
+
- `Appsignal.instrument` helper to easily instrument blocks of code
|
478
|
+
- `record_event` method to instrument events without a start hook
|
479
|
+
- `send_params` is now configurable via the environment
|
480
|
+
- Add DataMapper integration
|
481
|
+
- Add webmachine integration
|
482
|
+
- Allow overriding Padrino environment with APPSIGNAL_APP_ENV
|
483
|
+
- Add mkmf.log to diagnose command
|
484
|
+
- Allow for local install with bundler `bundle exec rake install`
|
485
|
+
- Listen to `stage` option to Capistrano 3 for automatic environment detection
|
486
|
+
- Add `appsignal_env` option to Capistrano 3 to set a custom environment
|
487
|
+
|
488
|
+
## 1.2.5
|
489
|
+
- Bugfix in CPU utilization calculation for host metrics
|
490
|
+
|
491
|
+
## 1.2.4
|
492
|
+
- Support for adding a namespace when mounting Sinatra apps in Rails
|
493
|
+
- Support for negative numbers and ILIKE in the sql lexer
|
494
|
+
|
495
|
+
## 1.2.3
|
496
|
+
- Catch nil config for installer and diag
|
497
|
+
- Minor performance improvements
|
498
|
+
- Support for arrays, literal value types and function arguments in sql lexer
|
499
|
+
|
500
|
+
## 1.2.2
|
501
|
+
- Handle out of range numbers in queue lenght and metrics api
|
502
|
+
|
503
|
+
## 1.2.1
|
504
|
+
- Use Dir.pwd in CLI install wizard
|
505
|
+
- Support bignums when setting queue length
|
506
|
+
- Support for Sequel 4.35
|
507
|
+
- Add env option to skip errors in Sinatra
|
508
|
+
- Fix for queue time calculation in Sidekiq (by lucasmazza)
|
509
|
+
|
510
|
+
## 1.2.0
|
511
|
+
- Restart background thread when FD's are closed
|
512
|
+
- Beta version of collecting host metrics (disabled by default)
|
513
|
+
- Hooks for Shuryoken
|
514
|
+
- Don't add errors from env if raise_errors is off for Sinatra
|
515
|
+
|
516
|
+
## 1.1.9
|
517
|
+
- Fix for race condition when creating working dir exactly at the same time
|
518
|
+
- Make diag Rake task resilient to missing config
|
519
|
+
|
520
|
+
## 1.1.8
|
521
|
+
- Require json to fix problem with using from Capistrano
|
522
|
+
|
523
|
+
## 1.1.7
|
524
|
+
- Make logging resilient for closing FD's (daemons gem does this)
|
525
|
+
- Add support for using Resque through ActiveJob
|
526
|
+
- Rescue more expections in json generation
|
527
|
+
|
528
|
+
## 1.1.6
|
529
|
+
- Generic Rack instrumentation middleware
|
530
|
+
- Event formatter for Faraday
|
531
|
+
- Rescue and log errors in transaction complete and fetching params
|
532
|
+
|
533
|
+
## 1.1.5
|
534
|
+
- Support for null in sql sanitization
|
535
|
+
- Add require to deploy.rb if present on installation
|
536
|
+
- Warn when overwriting already existing transaction
|
537
|
+
- Support for x86-linux
|
538
|
+
- Some improvements in debug logging
|
539
|
+
- Check of log file path is writable
|
540
|
+
- Use bundled CA certs when installing agent
|
541
|
+
|
542
|
+
## 1.1.4
|
543
|
+
- Better debug logging for agent issues
|
544
|
+
- Fix for exception with nil messages
|
545
|
+
- Fix for using structs as job params in Delayed Job
|
546
|
+
|
547
|
+
## 1.1.3
|
548
|
+
- Fix for issue where Appsignal.send_exception clears the current
|
425
549
|
transaction if it is present
|
426
|
-
|
550
|
+
- Rails 3.0 compatibility fix
|
427
551
|
|
428
|
-
|
429
|
-
|
430
|
-
|
552
|
+
## 1.1.2
|
553
|
+
- Bug fix in notify of deploy cli
|
554
|
+
- Better support for nil, true and false in sanitization
|
431
555
|
|
432
|
-
|
433
|
-
|
434
|
-
|
435
|
-
|
436
|
-
|
437
|
-
|
556
|
+
## 1.1.1
|
557
|
+
- Collect global metrics for GC durations (in beta, disabled by default)
|
558
|
+
- Collect params from Delayed Job in a reliable way
|
559
|
+
- Collect perams for Delayed Job and Sidekiq when using ActiveJob
|
560
|
+
- Official Grape support
|
561
|
+
- Easier installation using `bundle exec appsignal install`
|
438
562
|
|
439
|
-
|
563
|
+
## 1.1.0
|
440
564
|
Yanked
|
441
565
|
|
442
|
-
|
443
|
-
|
444
|
-
|
445
|
-
|
446
|
-
|
447
|
-
|
448
|
-
|
449
|
-
|
450
|
-
|
451
|
-
|
452
|
-
|
453
|
-
|
454
|
-
|
455
|
-
|
456
|
-
|
457
|
-
|
458
|
-
|
459
|
-
|
460
|
-
|
461
|
-
|
462
|
-
|
463
|
-
|
464
|
-
|
465
|
-
|
466
|
-
|
467
|
-
|
468
|
-
|
469
|
-
|
470
|
-
|
471
|
-
|
472
|
-
|
473
|
-
|
474
|
-
|
475
|
-
|
476
|
-
|
477
|
-
|
478
|
-
|
479
|
-
|
480
|
-
|
481
|
-
|
482
|
-
|
483
|
-
|
484
|
-
|
485
|
-
|
486
|
-
|
487
|
-
|
488
|
-
|
489
|
-
|
490
|
-
|
491
|
-
|
492
|
-
|
493
|
-
|
494
|
-
|
495
|
-
|
496
|
-
|
497
|
-
|
498
|
-
|
499
|
-
|
500
|
-
|
501
|
-
|
502
|
-
|
503
|
-
|
504
|
-
|
505
|
-
|
506
|
-
|
507
|
-
|
508
|
-
|
509
|
-
|
510
|
-
|
511
|
-
|
512
|
-
|
513
|
-
|
514
|
-
|
515
|
-
|
516
|
-
|
517
|
-
|
518
|
-
|
519
|
-
|
520
|
-
|
521
|
-
|
522
|
-
|
523
|
-
|
524
|
-
|
525
|
-
|
526
|
-
|
527
|
-
|
528
|
-
|
529
|
-
|
530
|
-
|
531
|
-
|
532
|
-
|
533
|
-
|
534
|
-
|
535
|
-
|
536
|
-
|
537
|
-
|
538
|
-
|
539
|
-
|
540
|
-
|
541
|
-
|
542
|
-
|
543
|
-
|
544
|
-
|
545
|
-
|
546
|
-
|
547
|
-
|
548
|
-
|
549
|
-
|
566
|
+
## 1.0.7
|
567
|
+
- Another multibyte bugfix in sql sanizitation
|
568
|
+
|
569
|
+
## 1.0.6
|
570
|
+
- Bugfix in sql sanitization when using multibyte utf-8 characters
|
571
|
+
|
572
|
+
## 1.0.5
|
573
|
+
- Improved sql sanitization
|
574
|
+
- Improved mongoid/mongodb sanitization
|
575
|
+
- Minor performance improvements
|
576
|
+
- Better handling for non-utf8 convertable strings
|
577
|
+
- Make gem installable (but not functional) on JRuby
|
578
|
+
|
579
|
+
## 1.0.4
|
580
|
+
- Make working dir configurable using `APPSIGNAL_WORKING_DIR_PATH` or `:working_dir_path`
|
581
|
+
|
582
|
+
## 1.0.3
|
583
|
+
- Fix bug in completing JS transactions
|
584
|
+
- Make Resque integration robust for bigger payloads
|
585
|
+
- Message in logs if agent logging cannot initialize
|
586
|
+
- Call `to_s` on DJ id to see the id when using MongoDB
|
587
|
+
|
588
|
+
## 1.0.2
|
589
|
+
- Bug fix in format of process memory measurements
|
590
|
+
- Event formatter for `instantiation.active_record`
|
591
|
+
- Rake integration file for backwards compatibility
|
592
|
+
- Don't instrument mongo-ruby-driver when transaction is not present
|
593
|
+
- Accept method calls on extension if it's not loaded
|
594
|
+
- Fix for duplicate notifications subscriptions when forking
|
595
|
+
|
596
|
+
## 1.0.1
|
597
|
+
- Fix for bug in gem initialization when using `safe_yaml` gem
|
598
|
+
|
599
|
+
## 1.0.0
|
600
|
+
- New version of event formatting and collection
|
601
|
+
- Use native library and agent
|
602
|
+
- Use API V2
|
603
|
+
- Support for Mongoid 5
|
604
|
+
- Integration into other gems with a hooks system
|
605
|
+
- Lots of minor bug fixes and improvements
|
606
|
+
|
607
|
+
## 0.11.15
|
608
|
+
- Improve Sinatra support
|
609
|
+
|
610
|
+
## 0.11.14
|
611
|
+
- Support ActiveJob wrapped jobs
|
612
|
+
- Improve proxy support
|
613
|
+
- Improve rake support
|
614
|
+
|
615
|
+
## 0.11.13
|
616
|
+
- Add Padrino support
|
617
|
+
- Add Rake task monitoring
|
618
|
+
- Add http proxy support
|
619
|
+
- Configure Net::HTTP to only use TLS
|
620
|
+
- Don't send queue if there is no content
|
621
|
+
- Don't retry transmission when response code is 400 (no content)
|
622
|
+
- Don't start Resque IPC server when AppSignal is not active
|
623
|
+
- Display warning message when attempting to send a non-exception to `send_exception`
|
624
|
+
- Fix capistrano 2 detection
|
625
|
+
- Fix issue with Sinatra integration attempting to attach an exception to a transaction that doesn't exist.
|
626
|
+
|
627
|
+
## 0.11.12
|
628
|
+
- Sanitizer will no longer inspect unknown objects, since implementations of inspect sometimes trigger unexpected behavior.
|
629
|
+
|
630
|
+
## 0.11.11
|
631
|
+
- Reliably get errors in production for Sinatra
|
632
|
+
|
633
|
+
## 0.11.10
|
634
|
+
- Fix for binding bug in exceptions in Resque
|
635
|
+
- Handle invalidly encoded characters in payload
|
636
|
+
|
637
|
+
## 0.11.9
|
638
|
+
- Fix for infinite attempts to transmit if there is no valid api key
|
639
|
+
|
640
|
+
## 0.11.8
|
641
|
+
- Add frontend error catcher
|
642
|
+
- Add background job metadata (queue, priority etc.) to transaction overview
|
643
|
+
- Add APPSIGNAL_APP_ENV variable to Rails config, so you can override the environment
|
644
|
+
- Handle http queue times in microseconds too
|
645
|
+
|
646
|
+
## 0.11.7
|
647
|
+
- Add option to override Job name in Delayed Job
|
648
|
+
|
649
|
+
## 0.11.6
|
650
|
+
- Use `APPSIGNAL_APP_NAME` and `APPSIGNAL_ACTIVE` env vars in config
|
651
|
+
- Better Sinatra support: Use route as action and set session data for Sinatra
|
652
|
+
|
653
|
+
## 0.11.5
|
654
|
+
- Add Sequel gem support (https://github.com/jeremyevans/sequel)
|
655
|
+
|
656
|
+
## 0.11.4
|
657
|
+
- Make `without_instrumentation` thread safe
|
658
|
+
|
659
|
+
## 0.11.3
|
660
|
+
- Support Ruby 1.9 and up instead of 1.9.3 and up
|
661
|
+
|
662
|
+
## 0.11.2
|
663
|
+
- If APP_REVISION environment variable is set, send it with the log entry.
|
664
|
+
|
665
|
+
## 0.11.1
|
666
|
+
- Allow a custom request_class and params_method on Rack instrumentation
|
667
|
+
- Loop through env methods instead of env
|
668
|
+
- Add HTTP_CLIENT_IP to env methods
|
669
|
+
|
670
|
+
## 0.11.0
|
671
|
+
- Improved inter process communication
|
672
|
+
- Retry sending data when the push api is not reachable
|
673
|
+
- Our own event handling to allow for more flexibility and reliability
|
550
674
|
when using a threaded environment
|
551
|
-
|
675
|
+
- Resque officially supported!
|
552
676
|
|
553
|
-
|
554
|
-
|
677
|
+
## 0.10.6
|
678
|
+
- Add config option to skip session data
|
555
679
|
|
556
|
-
|
557
|
-
|
558
|
-
|
680
|
+
## 0.10.5
|
681
|
+
- Don't shutdown in `at_exit`
|
682
|
+
- Debug log about missing name in config
|
559
683
|
|
560
|
-
|
561
|
-
|
684
|
+
## 0.10.4
|
685
|
+
- Add REQUEST_URI and PATH_INFO to env params allowlist
|
562
686
|
|
563
|
-
|
564
|
-
|
565
|
-
|
687
|
+
## 0.10.3
|
688
|
+
- Shut down all operations when agent is not active
|
689
|
+
- Separately rescue OpenSSL::SSL::SSLError
|
566
690
|
|
567
|
-
|
568
|
-
|
691
|
+
## 0.10.2
|
692
|
+
- Bugfix in event payload sanitization
|
569
693
|
|
570
|
-
|
571
|
-
|
694
|
+
## 0.10.1
|
695
|
+
- Bugfix in event payload sanitization
|
572
696
|
|
573
|
-
|
574
|
-
|
575
|
-
|
576
|
-
|
577
|
-
|
578
|
-
|
697
|
+
## 0.10.0
|
698
|
+
- Remove ActiveSupport dependency
|
699
|
+
- Use vendored notifications if ActiveSupport is not present
|
700
|
+
- Update bundled CA certificates
|
701
|
+
- Fix issue where backtrace can be nil
|
702
|
+
- Use Appsignal.monitor_transaction to instrument and log errors for
|
579
703
|
custom actions
|
580
|
-
|
704
|
+
- Add option to ignore a specific action
|
581
705
|
|
582
|
-
|
583
|
-
|
706
|
+
## 0.9.6
|
707
|
+
- Convert to primitives before sending through pipe
|
584
708
|
|
585
|
-
|
709
|
+
## 0.9.5
|
586
710
|
Yanked
|
587
711
|
|
588
|
-
|
589
|
-
|
590
|
-
|
712
|
+
## 0.9.4
|
713
|
+
- Log Rails and Sinatra version
|
714
|
+
- Resubscribe to notifications after fork
|
591
715
|
|
592
|
-
|
593
|
-
|
716
|
+
## 0.9.3
|
717
|
+
- Log if appsignal is not active for an environment
|
594
718
|
|
595
|
-
|
596
|
-
|
597
|
-
|
719
|
+
## 0.9.2
|
720
|
+
- Log Ruby version and platform on startup
|
721
|
+
- Log reason of shutting down agent
|
598
722
|
|
599
|
-
|
600
|
-
|
723
|
+
## 0.9.1
|
724
|
+
- Some debug logging tweaks
|
601
725
|
|
602
|
-
|
603
|
-
|
604
|
-
|
605
|
-
|
606
|
-
|
607
|
-
|
726
|
+
## 0.9.0
|
727
|
+
- Add option to override Capistrano revision
|
728
|
+
- Expanded deploy message in Capistrano
|
729
|
+
- Refactor of usage of Thread.local
|
730
|
+
- Net::HTTP instrumentation
|
731
|
+
- Capistrano 3 support
|
608
732
|
|
609
|
-
|
610
|
-
|
733
|
+
## 0.8.15
|
734
|
+
- Exception logging in agent thread
|
611
735
|
|
612
|
-
|
613
|
-
|
614
|
-
|
736
|
+
## 0.8.14
|
737
|
+
- Few tweaks in logging
|
738
|
+
- Clarify Appsignal::Transaction.complete! code
|
615
739
|
|
616
|
-
|
617
|
-
|
740
|
+
## 0.8.13
|
741
|
+
- Random sleep time before first transmission of queue
|
618
742
|
|
619
|
-
|
620
|
-
|
621
|
-
|
743
|
+
## 0.8.12
|
744
|
+
- Workaround for frozen string in Notification events
|
745
|
+
- Require ActiveSupport::Notifications to be sure it's available
|
622
746
|
|
623
|
-
|
624
|
-
|
747
|
+
## 0.8.11
|
748
|
+
- Skip enqueue, send_exception and add_exception if not active
|
625
749
|
|
626
|
-
|
627
|
-
|
750
|
+
## 0.8.10
|
751
|
+
- Bugfix: Don't pause agent when it's not active
|
628
752
|
|
629
|
-
|
753
|
+
## 0.8.9
|
630
754
|
Yanked
|
631
755
|
|
632
|
-
|
633
|
-
|
634
|
-
|
635
|
-
|
636
|
-
|
637
|
-
|
638
|
-
|
639
|
-
|
640
|
-
|
641
|
-
|
642
|
-
|
643
|
-
|
644
|
-
|
645
|
-
|
646
|
-
|
647
|
-
|
648
|
-
|
649
|
-
|
650
|
-
|
651
|
-
|
652
|
-
|
653
|
-
|
654
|
-
|
655
|
-
|
656
|
-
|
657
|
-
|
658
|
-
|
659
|
-
|
660
|
-
|
661
|
-
|
662
|
-
|
663
|
-
|
664
|
-
|
665
|
-
|
666
|
-
|
667
|
-
|
668
|
-
|
669
|
-
|
670
|
-
|
671
|
-
|
672
|
-
|
673
|
-
|
674
|
-
|
675
|
-
|
676
|
-
|
677
|
-
|
678
|
-
|
679
|
-
|
680
|
-
|
681
|
-
|
682
|
-
|
683
|
-
|
684
|
-
|
685
|
-
|
686
|
-
|
687
|
-
|
688
|
-
|
689
|
-
|
690
|
-
|
691
|
-
|
692
|
-
|
693
|
-
|
694
|
-
|
695
|
-
|
696
|
-
|
697
|
-
|
698
|
-
|
699
|
-
|
700
|
-
|
701
|
-
|
702
|
-
|
703
|
-
|
704
|
-
|
705
|
-
|
706
|
-
|
707
|
-
|
708
|
-
|
709
|
-
|
710
|
-
|
711
|
-
|
712
|
-
|
713
|
-
|
714
|
-
|
715
|
-
|
716
|
-
|
717
|
-
|
718
|
-
|
719
|
-
|
720
|
-
|
721
|
-
|
722
|
-
|
723
|
-
|
724
|
-
|
725
|
-
|
726
|
-
|
727
|
-
|
728
|
-
|
756
|
+
## 0.8.8
|
757
|
+
- Explicitely require securerandom
|
758
|
+
|
759
|
+
## 0.8.7
|
760
|
+
- Dup process action event to avoid threading issue
|
761
|
+
- Rescue failing inspects in param sanitizer
|
762
|
+
- Add option to pause instrumentation
|
763
|
+
|
764
|
+
## 0.8.6
|
765
|
+
- Resque support (beta)
|
766
|
+
- Support tags in Appsignal.send_exception
|
767
|
+
- Alias tag_request to tag_job, for background jobs
|
768
|
+
- Skip sanitization of env if env is nil
|
769
|
+
- Small bugfix in forking logic
|
770
|
+
- Don't send params if send_params is off in config
|
771
|
+
- Remove --repository option in CLI
|
772
|
+
- Name option in appsignal notify_of_deploy CLI
|
773
|
+
- Don't call to_hash on ENV
|
774
|
+
- Get error message in CLI when config is not active
|
775
|
+
|
776
|
+
## 0.8.5
|
777
|
+
- Don't require revision in CLI notify_of_deploy
|
778
|
+
|
779
|
+
## 0.8.4
|
780
|
+
- Skip session sanitize if not a http request
|
781
|
+
- Use appsignal_config in Capistrano as initial config
|
782
|
+
|
783
|
+
## 0.8.3
|
784
|
+
- Restart thread when we've been forked
|
785
|
+
- Only notify of deploy when active in capistrano
|
786
|
+
- Make sure env is a string in config
|
787
|
+
|
788
|
+
## 0.8.2
|
789
|
+
- Bugfix in Delayed Job integration
|
790
|
+
- appsignal prefix when logging to stdout
|
791
|
+
- Log to stdout on Shelly Cloud
|
792
|
+
|
793
|
+
## 0.8.1
|
794
|
+
- Fix in monitoring of queue times
|
795
|
+
|
796
|
+
## 0.8.0
|
797
|
+
- Support for background processors (Delayed Job and Sidekiq)
|
798
|
+
|
799
|
+
## 0.7.1
|
800
|
+
- Better support for forking webservers
|
801
|
+
|
802
|
+
## 0.7.0
|
803
|
+
- Mayor refactor and cleanup
|
804
|
+
- New easier onboarding process
|
805
|
+
- Support for Rack apps, including experimental Sinatra integration
|
806
|
+
- Monitor HTTP queue times
|
807
|
+
- Always log to stdout on Heroku
|
808
|
+
|
809
|
+
## 0.6.7
|
810
|
+
- Send HTTP_X_FORWARDED_FOR env var
|
811
|
+
|
812
|
+
## 0.6.6
|
813
|
+
- Add Appsignal.add_exception
|
814
|
+
|
815
|
+
## 0.6.5
|
816
|
+
- Fix bug where fast requests are tracked with wrong action
|
817
|
+
|
818
|
+
## 0.6.4
|
819
|
+
- More comprehensive debug logging
|
820
|
+
|
821
|
+
## 0.6.3
|
822
|
+
- Use a mutex around access to the aggregator
|
823
|
+
- Bugfix for accessing connection config in Rails 3.0
|
824
|
+
- Add Appsignal.tag_request
|
825
|
+
- Only warn if there are duplicate push keys
|
826
|
+
|
827
|
+
## 0.6.2
|
828
|
+
- Bugfix in backtrace cleaner usage for Rails 4
|
829
|
+
|
830
|
+
## 0.6.1
|
831
|
+
- Bugfix in Capistrano integration
|
832
|
+
|
833
|
+
## 0.6.0
|
834
|
+
- Support for Rails 4
|
835
|
+
- Data that's posted to AppSignal is now gzipped
|
836
|
+
- Add Appsignal.send_exception and Appsignal.listen_for_exception
|
837
|
+
- We now us the Rails backtrace cleaner
|
838
|
+
|
839
|
+
## 0.5.5
|
840
|
+
- Fix minor bug
|
841
|
+
|
842
|
+
## 0.5.4
|
843
|
+
- Debug option in config to get detailed logging
|
844
|
+
|
845
|
+
## 0.5.3
|
846
|
+
- Fix minor bug
|
847
|
+
|
848
|
+
## 0.5.2
|
849
|
+
- General improvements to the Rails generator
|
850
|
+
- Log to STDOUT if writing to log/appsignal.log is not possible (Heroku)
|
851
|
+
- Handle the last transactions before the rails process shuts down
|
852
|
+
- Require 'erb' to enable dynamic config
|