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.
Files changed (99) hide show
  1. checksums.yaml +4 -4
  2. data/.github/ISSUE_TEMPLATE/bug_report.md +31 -0
  3. data/.github/ISSUE_TEMPLATE/chore.md +14 -0
  4. data/.gitignore +2 -3
  5. data/.rubocop.yml +3 -0
  6. data/.rubocop_todo.yml +7 -16
  7. data/.travis.yml +28 -27
  8. data/CHANGELOG.md +657 -533
  9. data/README.md +31 -3
  10. data/Rakefile +128 -129
  11. data/SUPPORT.md +16 -0
  12. data/appsignal.gemspec +17 -4
  13. data/build_matrix.yml +21 -9
  14. data/ext/Rakefile +23 -17
  15. data/ext/agent.yml +40 -37
  16. data/ext/base.rb +116 -31
  17. data/ext/extconf.rb +34 -28
  18. data/gemfiles/capistrano2.gemfile +5 -0
  19. data/gemfiles/capistrano3.gemfile +5 -0
  20. data/gemfiles/grape.gemfile +5 -0
  21. data/gemfiles/no_dependencies.gemfile +5 -0
  22. data/gemfiles/padrino.gemfile +5 -0
  23. data/gemfiles/que.gemfile +5 -0
  24. data/gemfiles/que_beta.gemfile +10 -0
  25. data/gemfiles/rails-3.2.gemfile +5 -0
  26. data/gemfiles/rails-4.0.gemfile +5 -0
  27. data/gemfiles/rails-4.1.gemfile +5 -0
  28. data/gemfiles/rails-4.2.gemfile +5 -0
  29. data/gemfiles/rails-6.0.gemfile +5 -0
  30. data/gemfiles/resque.gemfile +5 -0
  31. data/lib/appsignal.rb +14 -492
  32. data/lib/appsignal/cli/demo.rb +5 -2
  33. data/lib/appsignal/cli/diagnose.rb +84 -4
  34. data/lib/appsignal/cli/diagnose/paths.rb +0 -5
  35. data/lib/appsignal/cli/diagnose/utils.rb +19 -0
  36. data/lib/appsignal/cli/helpers.rb +6 -0
  37. data/lib/appsignal/cli/install.rb +45 -15
  38. data/lib/appsignal/cli/notify_of_deploy.rb +10 -0
  39. data/lib/appsignal/config.rb +1 -2
  40. data/lib/appsignal/event_formatter.rb +4 -5
  41. data/lib/appsignal/event_formatter/action_view/render_formatter.rb +10 -8
  42. data/lib/appsignal/event_formatter/moped/query_formatter.rb +60 -59
  43. data/lib/appsignal/extension.rb +2 -2
  44. data/lib/appsignal/helpers/instrumentation.rb +494 -0
  45. data/lib/appsignal/helpers/metrics.rb +54 -0
  46. data/lib/appsignal/hooks.rb +11 -8
  47. data/lib/appsignal/hooks/active_support_notifications.rb +2 -5
  48. data/lib/appsignal/hooks/puma.rb +74 -11
  49. data/lib/appsignal/hooks/sequel.rb +1 -1
  50. data/lib/appsignal/hooks/sidekiq.rb +115 -0
  51. data/lib/appsignal/integrations/mongo_ruby_driver.rb +7 -0
  52. data/lib/appsignal/integrations/que.rb +9 -8
  53. data/lib/appsignal/integrations/railtie.rb +2 -1
  54. data/lib/appsignal/marker.rb +2 -3
  55. data/lib/appsignal/minutely.rb +188 -19
  56. data/lib/appsignal/rack/sinatra_instrumentation.rb +1 -1
  57. data/lib/appsignal/system.rb +16 -18
  58. data/lib/appsignal/transaction.rb +8 -0
  59. data/lib/appsignal/utils/rails_helper.rb +20 -0
  60. data/lib/appsignal/version.rb +1 -1
  61. data/lib/puma/plugin/appsignal.rb +26 -0
  62. data/spec/lib/appsignal/cli/diagnose/utils_spec.rb +40 -0
  63. data/spec/lib/appsignal/cli/diagnose_spec.rb +129 -22
  64. data/spec/lib/appsignal/cli/install_spec.rb +57 -8
  65. data/spec/lib/appsignal/cli/notify_of_deploy_spec.rb +10 -0
  66. data/spec/lib/appsignal/config_spec.rb +13 -11
  67. data/spec/lib/appsignal/event_formatter/action_view/render_formatter_spec.rb +38 -28
  68. data/spec/lib/appsignal/event_formatter/moped/query_formatter_spec.rb +6 -0
  69. data/spec/lib/appsignal/event_formatter_spec.rb +168 -69
  70. data/spec/lib/appsignal/hooks/active_support_notifications_spec.rb +104 -25
  71. data/spec/lib/appsignal/hooks/puma_spec.rb +251 -34
  72. data/spec/lib/appsignal/hooks/sidekiq_spec.rb +209 -0
  73. data/spec/lib/appsignal/hooks_spec.rb +4 -0
  74. data/spec/lib/appsignal/integrations/mongo_ruby_driver_spec.rb +24 -1
  75. data/spec/lib/appsignal/minutely_spec.rb +318 -26
  76. data/spec/lib/appsignal/system_spec.rb +0 -35
  77. data/spec/lib/appsignal/transaction_spec.rb +68 -10
  78. data/spec/lib/appsignal/utils/hash_sanitizer_spec.rb +39 -31
  79. data/spec/lib/appsignal/utils/json_spec.rb +7 -3
  80. data/spec/lib/appsignal_spec.rb +98 -22
  81. data/spec/lib/puma/appsignal_spec.rb +91 -0
  82. data/spec/spec_helper.rb +13 -0
  83. data/spec/support/{project_fixture → fixtures/projects/valid}/config/application.rb +0 -0
  84. data/spec/support/{project_fixture → fixtures/projects/valid}/config/appsignal.yml +1 -0
  85. data/spec/support/{project_fixture → fixtures/projects/valid}/config/environments/development.rb +0 -0
  86. data/spec/support/{project_fixture → fixtures/projects/valid}/config/environments/production.rb +0 -0
  87. data/spec/support/{project_fixture → fixtures/projects/valid}/config/environments/test.rb +0 -0
  88. data/spec/support/{project_fixture → fixtures/projects/valid}/log/.gitkeep +0 -0
  89. data/spec/support/helpers/config_helpers.rb +1 -1
  90. data/spec/support/helpers/log_helpers.rb +6 -0
  91. data/spec/support/helpers/wait_for_helper.rb +28 -0
  92. data/spec/support/mocks/mock_probe.rb +11 -0
  93. data/spec/support/stubs/sidekiq/api.rb +4 -0
  94. metadata +43 -31
  95. data/spec/support/fixtures/containers/cgroups/docker +0 -14
  96. data/spec/support/fixtures/containers/cgroups/docker_systemd +0 -8
  97. data/spec/support/fixtures/containers/cgroups/lxc +0 -10
  98. data/spec/support/fixtures/containers/cgroups/no_permission +0 -0
  99. data/spec/support/fixtures/containers/cgroups/none +0 -1
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 18e35e36c20569d76c5e0c0760b1099614accde67e2ae178e22f5f56b9829331
4
- data.tar.gz: bb171143986af96d4f40f29961abfa8812e80297f37ec5a79de9940a2db24249
3
+ metadata.gz: 497a4a7b4a8d6a2d195f7e509a0a270f75e06a244c662d8294ad9f2b41c6401b
4
+ data.tar.gz: e583e62d155c23794a4e29728be90d8d04cb5c92c6f33970c6f97ea0b9a97e89
5
5
  SHA512:
6
- metadata.gz: 57555a3eeaa49604929d2b3c18147e9a3b25b4fbb26ed70af99750d2d8f34abcafdb4b5c2582b1ee399217a442eae7dbb51af5378bc6f0b55189368eee223256
7
- data.tar.gz: 7c0ce94dcd2b9948d0def579bfc89651496e439b1d62b962867b2805430bc8a036f37d648d1fb19305b99910cd43f59745bff0b53327f11e12e3b6dd419a10ed
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
+ ```
@@ -0,0 +1,14 @@
1
+ ---
2
+ name: Chore
3
+ about: Create an issue for a task that needs to be performed.
4
+ title: ''
5
+ labels: chore
6
+ assignees: ''
7
+
8
+ ---
9
+
10
+ ## TODO
11
+
12
+ - [ ] Tasks that need to be performed
13
+ - [ ] In order
14
+ - [ ] To complete the chore
data/.gitignore CHANGED
@@ -21,15 +21,14 @@ Gemfile.lock
21
21
  gemfiles/*.lock
22
22
  .DS_Store
23
23
  .ruby-version
24
- bundle_and_spec_all_rbenv
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/
@@ -61,6 +61,9 @@ Style/TrailingUnderscoreVariable:
61
61
  Style/Encoding: # For Ruby 1.9 as it doesn't default to UTF-8
62
62
  Enabled: false
63
63
 
64
+ Style/Lambda:
65
+ EnforcedStyle: lambda
66
+
64
67
  Naming/FileName:
65
68
  Exclude:
66
69
  - "ext/Rakefile"
@@ -1,12 +1,12 @@
1
1
  # This configuration was generated by
2
2
  # `rubocop --auto-gen-config`
3
- # on 2018-06-01 17:12:10 +0200 using RuboCop version 0.50.0.
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: 44
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: 523
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: 94
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: 4
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'
@@ -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/bundle
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.log -exec cat {} \;
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.0
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.0
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.0
99
+ - rvm: 2.6.4
102
100
  gemfile: gemfiles/capistrano2.gemfile
103
101
  env: _RUBYGEMS_VERSION=latest _BUNDLER_VERSION=latest
104
- - rvm: 2.6.0
102
+ - rvm: 2.6.4
105
103
  gemfile: gemfiles/capistrano3.gemfile
106
104
  env: _RUBYGEMS_VERSION=latest _BUNDLER_VERSION=latest
107
- - rvm: 2.6.0
105
+ - rvm: 2.6.4
108
106
  gemfile: gemfiles/grape.gemfile
109
107
  env: _RUBYGEMS_VERSION=latest _BUNDLER_VERSION=latest
110
- - rvm: 2.6.0
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.0
111
+ - rvm: 2.6.4
114
112
  gemfile: gemfiles/que.gemfile
115
113
  env: _RUBYGEMS_VERSION=latest _BUNDLER_VERSION=latest
116
- - rvm: 2.6.0
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.0
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.0
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.0
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.0
132
+ - rvm: 2.6.4
129
133
  gemfile: gemfiles/sequel.gemfile
130
134
  env: _RUBYGEMS_VERSION=latest _BUNDLER_VERSION=latest
131
- - rvm: 2.6.0
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.0
138
+ - rvm: 2.6.4
135
139
  gemfile: gemfiles/sinatra.gemfile
136
140
  env: _RUBYGEMS_VERSION=latest _BUNDLER_VERSION=latest
137
- - rvm: 2.6.0
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
@@ -1,18 +1,142 @@
1
- # 2.8.4
2
- - Log memory usage of agent if high
3
-
4
- # 2.8.3
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
- # 2.8.2
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
- # 2.8.1
136
+ ## 2.8.1
13
137
  - Fix installation on Ruby 2.6 for libc and musl library builds. PR #453
14
138
 
15
- # 2.8.0
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
- # 2.7.3 Beta
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
- # 2.7.2
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
- # 2.7.1
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
- # 2.7.0
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
- # 2.6.1
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
- # 2.6.0
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
- # 2.5.3
194
+ ## 2.5.3
71
195
  - Fix Sidekiq action names containing arguments. PR #401
72
196
 
73
- # 2.5.2
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
- # 2.5.1
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
- # 2.5.0
86
- * Fix Capistrano config overrides. PR #375
87
- * Add JRuby beta support. PR #376
88
- * Fix locking issue on diagnose mode run.
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
- * Increase stored length of error messages.
214
+ - Increase stored length of error messages.
91
215
  Commit e6c6de811f8115a73050fc865e89dd4945ddec57
92
216
 
93
- # 2.4.3
94
- * Store more details for Redis events. PR #374
217
+ ## 2.4.3
218
+ - Store more details for Redis events. PR #374
95
219
 
96
- # 2.4.2
97
- * Store agent architecture rather than platform. PR #367
98
- * Improve documentation for `Appsignal.monitor_transaction` better.
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
- * Change log level from info to debug for value comparing failures.
224
+ - Change log level from info to debug for value comparing failures.
101
225
  Commit ecef28b28edaff46b95f53a916c93021dc763160
102
- * Collect free memory host metric.
226
+ - Collect free memory host metric.
103
227
  Commit ecef28b28edaff46b95f53a916c93021dc763160
104
- * Fix crashes when Set wasn't required before AppSignal, such as in the CLI.
228
+ - Fix crashes when Set wasn't required before AppSignal, such as in the CLI.
105
229
  PR #373
106
230
 
107
- # 2.4.1
108
- * Add Que integration. PR #361
109
- * Support Sidekiq delayed extension job action names better. Now action names
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
- * Support Sidekiq Enterprise encrypted values. PR #365
114
- * Use musl build for older libc systems. PR #366
237
+ - Support Sidekiq Enterprise encrypted values. PR #365
238
+ - Use musl build for older libc systems. PR #366
115
239
 
116
- # 2.4.0
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
- # 2.3.7
133
- * Support Sidekiq delayed extension job action names better. Now action names
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
- # 2.3.6
139
- * Allow configuration of permissions of working directory. PR #336
140
- * Fix locking bug that delayed extension shutdown.
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
- * Log extension start with app revision if present
266
+ - Log extension start with app revision if present
143
267
  Commit 51d90bb1207affc2c88f7cff5035a2c36acf9784
144
268
 
145
- # 2.3.5
269
+ ## 2.3.5
146
270
 
147
271
  Yanked
148
272
 
149
- # 2.3.4
150
- * Fix naming for ActiveJob integration with DelayedJob. PR #345
273
+ ## 2.3.4
274
+ - Fix naming for ActiveJob integration with DelayedJob. PR #345
151
275
 
152
- # 2.3.3
153
- * Accept mixed case env variable values for the `true` value. PR #333
154
- * Don't record sensitive HTTP_X_AUTH_TOKEN header. PR #334
155
- * Support dry run option for Capistrano 3.5.0 and higher. PR #339
156
- * Agent and extension update. Improve agent connection handling. Commit
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
- # 2.3.2
160
- * Improve Rake argument handling. Allow for more detailed view of which
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
- # 2.3.1
164
- * Fix ActiveSupport::Notifications hook not supporting non-string names for
287
+ ## 2.3.1
288
+ - Fix ActiveSupport::Notifications hook not supporting non-string names for
165
289
  events. PR #324
166
290
 
167
- # 2.3.0
168
- * Fix Shoryuken instrumentation when body is a string. PR #266
169
- * Enable ActiveSupport instrumentation at all times. PR #274
170
- * Add parameter filtering for background jobs. Automatically uses the AppSignal
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
- * Improve log messages for transactions. PR #293
173
- * Remove thread_safe dependency. PR #294
174
- * Add `Transaction#params` attribute for custom parameters. PR #295
175
- * Fix queue time on DelayedJob integration. PR #297
176
- * Add ActionCable support. PR #309
177
- * Finish ActiveSupport notifications events when they would encounter a `raise`
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
- * Add `ignore_namespaces` option. PR #312
180
- * Truncate lengthy parameter values to 2000 characters.
303
+ - Add `ignore_namespaces` option. PR #312
304
+ - Truncate lengthy parameter values to 2000 characters.
181
305
  Commit 65de1382f5f453b624781cde6e0544c89fdf89ef and
182
306
  d3ca2a545fb22949f3369692dd57d49b4936c739.
183
- * Disable gracefully on Microsoft Windows. PR #313
184
- * Add tags and namespace arguments to `Appsignal.set_error`. PR #317
307
+ - Disable gracefully on Microsoft Windows. PR #313
308
+ - Add tags and namespace arguments to `Appsignal.set_error`. PR #317
185
309
 
186
- # 2.2.1
187
- * Fix support for Rails 5.1. PR #286
188
- * Fix instrumentation that would report a duration of `0ms` for all DataMapper
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
- * Finish events when `Appsignal.instrument` encounters a `raise` or a `throw`.
314
+ - Finish events when `Appsignal.instrument` encounters a `raise` or a `throw`.
191
315
  PR #292
192
316
 
193
- # 2.2.0
194
- * Support Ruby 2.4 better. PR #234
195
- * Initial setup for documenting the Ruby gem's code. PR #243
196
- * Move `running_in_container` auto detection to extension for easy reuse.
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
- * Allow overriding of action and namespace for a transaction. PR #254
199
- * Prefix all agent configuration environment variables with an underscore to
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
- * Force agent to run in diagnostic mode even when the user config is set to
325
+ - Force agent to run in diagnostic mode even when the user config is set to
202
326
  `active: false`. PR #260
203
- * Stub JS error catching endpoint when not active. PR #263
204
- * Use better event names for Padrino integration. PR #265
205
- * No longer gzip payloads send by the Ruby gem transmitter. PR #269
206
- * Send diagnostics data report to AppSignal on request. PR #270
207
- * When JS exception endpoint payload is empty return 400 code. PR #271
208
- * Remove hardcoded DNS servers from agent and add config option. PR #278
209
-
210
- # 2.1.2
211
- * Fix error with Grape request methods defined with symbols. PR #259
212
-
213
- # 2.1.1
214
- * Fix DNS issue related to the musl build.
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
- * Update benchmark and add load test. PR #248
218
- * Fix configuring instrument Redis and Sequel from env. PR #257
341
+ - Update benchmark and add load test. PR #248
342
+ - Fix configuring instrument Redis and Sequel from env. PR #257
219
343
 
220
- # 2.1.0
221
- * Add support for musl based libc (Alpine Linux). PR #229
222
- * Implement `Appsignal.is_ignored_error?` and `Appsignal.is_ignored_action?`
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
- * Deprecate `Appsignal.is_ignored_error?`. PR #224
225
- * Deprecate `Appsignal.is_ignored_action?`. PR #224
226
- * Enforce a coding styleguide with RuboCop. PR #226
227
- * Remove unused `Appsignal.agent` attribute. PR #244
228
- * Deprecate unused `Appsignal::AuthCheck` logger argument. PR #245
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
- # 2.0.6
231
- * Fix `Appsignal::Transaction#record_event` method call. PR #240
354
+ ## 2.0.6
355
+ - Fix `Appsignal::Transaction#record_event` method call. PR #240
232
356
 
233
- # 2.0.5
234
- * Improved logging for agent connection issues.
357
+ ## 2.0.5
358
+ - Improved logging for agent connection issues.
235
359
  Commit cdf9d3286d704e22473eb901c839cab4fab45a6f
236
- * Handle nil request/environments in transactions. PR #231
360
+ - Handle nil request/environments in transactions. PR #231
237
361
 
238
- # 2.0.4
239
- * Use consistent log format for both file and STDOUT logs. PR #203
240
- * Fix log path in `appsignal diagnose` for Rails applications. PR #218, #222
241
- * Change default log path to `./log` rather than project root for all non-Rails
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
- * Load the `APPSIGNAL_APP_ENV` environment configuration option consistently
367
+ - Load the `APPSIGNAL_APP_ENV` environment configuration option consistently
244
368
  for all integrations. PR #204
245
- * Support the `--environment` option on the `appsignal diagnose` command. PR
369
+ - Support the `--environment` option on the `appsignal diagnose` command. PR
246
370
  #214
247
- * Use the real system `/tmp` directory, not a symlink. PR #219
248
- * Run the AppSignal agent in diagnose mode in the `appsignal diagnose` command.
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
- * Test for directory and file ownership and permissions in the
374
+ - Test for directory and file ownership and permissions in the
251
375
  `appsignal diagnose` command. PR #216
252
- * Test if current user is `root` in the `appsignal diagnose` command. PR #215
253
- * Output last couple of lines from `appsignal.log` on agent connection
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
- * Agent will no longer fail to start if no writable log path is found.
379
+ - Agent will no longer fail to start if no writable log path is found.
256
380
  Commit 8920865f6158229a46ed4bd1cc98d99a849884c0, change in agent.
257
- * Internal refactoring of the test suite and the `appsignal install` command.
381
+ - Internal refactoring of the test suite and the `appsignal install` command.
258
382
  PR #200, #205
259
383
 
260
- # 2.0.3
261
- * Fix JavaScript exception catcher throwing an error on finishing a
384
+ ## 2.0.3
385
+ - Fix JavaScript exception catcher throwing an error on finishing a
262
386
  transaction. PR #210
263
387
 
264
- # 2.0.2
265
- * Fix Sequel instrumentation overriding existing logic from extensions. PR #209
388
+ ## 2.0.2
389
+ - Fix Sequel instrumentation overriding existing logic from extensions. PR #209
266
390
 
267
- # 2.0.1
268
- * Fix configuration load order regression for the `APPSIGNAL_PUSH_API_KEY`
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
- # 2.0.0
272
- * Add `Appsignal.instrument_sql` convenience methods. PR #136
273
- * Use `Appsignal.instrument` internally instead of ActiveSupport
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
- * Override ActiveSupport instrument instead of subscribing. PR #150
276
- * Remove required dependency on ActiveSupport. Recommended you use
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
- * Use have_library to link the AppSignal extension `libappsignal`. PR #148
279
- * Rename `appsignal_extension.h` to `appsignal.h`.
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
- * Refactor rescuing of Exception. PR #173
282
- * Use GC::Profiler to track garbage collection time. PR #134
283
- * Detect if AppSignal is running in a container or Heroku. PR #177 #178
284
- * Change configuration load order to load environment settings after
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
- * Speed up payload generation by letting the extension handle it. PR #175
287
- * Improve `appsignal diagnose` formatting and output more data. PR #187
288
- * Remove outdated `appsignal:diagnose` rake tasks. Use `appsignal diagnose`
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
- * Fix JavaScript exception without names resulting in errors themselves. PR #188
291
- * Support namespaces in Grape routes. PR #189
292
- * Change STDOUT output to always mention "AppSignal", not "Appsignal". PR #192
293
- * `appsignal notify_of_deploy` refactor. `--name` will override any
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
- * Allow logging to STDOUT. Available for the Ruby gem and C extension. The
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
- * Remove deprecated methods. PR #191
299
- * Send "ruby" implementation name with version number for better identifying
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
- * Send demonstration samples to AppSignal using the `appsignal install`
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
- * Add `appsignal demo` command to test the AppSignal demonstration samples
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
- # 1.3.6
307
- * Support blocks arguments on method instrumentation. PR #163
308
- * Support `APPSIGNAL_APP_ENV` for Sinatra. PR #164
309
- * Remove Sinatra install step from "appsignal install". PR #165
310
- * Install Capistrano integration in `Capfile` instead of `deploy.rb`. #166
311
- * More robust handing of non-writable log files. PR #160 #158
312
- * Cleaner internal exception handling. PR #169 #170 #171 #172 #173
313
- * Support for mixed case keywords in sql lexing. appsignal/sql_lexer#8
314
- * Support for inserting multiple rows in sql lexing. appsignal/sql_lexer#9
315
- * Add session_overview to JS transaction data.
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
- # 1.3.5
442
+ ## 1.3.5
319
443
 
320
- * Fix SSL certificate config in appsignal-agent. PR #151
321
- * Remove mounted_at Sinatra middleware option. Now detected by default. PR #146
322
- * Sinatra applications with middleware loading before AppSignal's middleware
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
- # 1.3.4
326
-
327
- * Fix argument order for `record_event` in the AppSignal extension
328
-
329
- # 1.3.3
330
-
331
- * Output AppSignal environment on `appsignal diagnose`
332
- * Prevent transaction crashes on Sinatra routes with optional parameters
333
- * Listen to `stage` option to Capistrano 2 for automatic environment detection
334
- * Add `appsignal_env` option to Capistrano 2 to set a custom environment
335
-
336
- # 1.3.2
337
- * Add method to discard a transaction
338
- * Run spec suite with warnings, fixes for warnings
339
-
340
- # 1.3.1
341
- * Bugfix for problem when requiring config from installer
342
-
343
- # 1.3.0
344
- * Host metrics is now enabled by default
345
- * Beta of minutely probes including GC metrics
346
- * Refactor of param sanitization
347
- * Param filtering for non-Rails frameworks
348
- * Support for modular Sinatra applications
349
- * Add Sinatra middleware to `Sinatra::Base` by default
350
- * Allow a new transaction to be forced by sinatra instrumentation
351
- * Allow hostname to be set with environment variable
352
- * Helpers for easy method instrumentation
353
- * `Appsignal.instrument` helper to easily instrument blocks of code
354
- * `record_event` method to instrument events without a start hook
355
- * `send_params` is now configurable via the environment
356
- * Add DataMapper integration
357
- * Add webmachine integration
358
- * Allow overriding Padrino environment with APPSIGNAL_APP_ENV
359
- * Add mkmf.log to diagnose command
360
- * Allow for local install with bundler `bundle exec rake install`
361
- * Listen to `stage` option to Capistrano 3 for automatic environment detection
362
- * Add `appsignal_env` option to Capistrano 3 to set a custom environment
363
-
364
- # 1.2.5
365
- * Bugfix in CPU utilization calculation for host metrics
366
-
367
- # 1.2.4
368
- * Support for adding a namespace when mounting Sinatra apps in Rails
369
- * Support for negative numbers and ILIKE in the sql lexer
370
-
371
- # 1.2.3
372
- * Catch nil config for installer and diag
373
- * Minor performance improvements
374
- * Support for arrays, literal value types and function arguments in sql lexer
375
-
376
- # 1.2.2
377
- * Handle out of range numbers in queue lenght and metrics api
378
-
379
- # 1.2.1
380
- * Use Dir.pwd in CLI install wizard
381
- * Support bignums when setting queue length
382
- * Support for Sequel 4.35
383
- * Add env option to skip errors in Sinatra
384
- * Fix for queue time calculation in Sidekiq (by lucasmazza)
385
-
386
- # 1.2.0
387
- * Restart background thread when FD's are closed
388
- * Beta version of collecting host metrics (disabled by default)
389
- * Hooks for Shuryoken
390
- * Don't add errors from env if raise_errors is off for Sinatra
391
-
392
- # 1.1.9
393
- * Fix for race condition when creating working dir exactly at the same time
394
- * Make diag Rake task resilient to missing config
395
-
396
- # 1.1.8
397
- * Require json to fix problem with using from Capistrano
398
-
399
- # 1.1.7
400
- * Make logging resilient for closing FD's (daemons gem does this)
401
- * Add support for using Resque through ActiveJob
402
- * Rescue more expections in json generation
403
-
404
- # 1.1.6
405
- * Generic Rack instrumentation middleware
406
- * Event formatter for Faraday
407
- * Rescue and log errors in transaction complete and fetching params
408
-
409
- # 1.1.5
410
- * Support for null in sql sanitization
411
- * Add require to deploy.rb if present on installation
412
- * Warn when overwriting already existing transaction
413
- * Support for x86-linux
414
- * Some improvements in debug logging
415
- * Check of log file path is writable
416
- * Use bundled CA certs when installing agent
417
-
418
- # 1.1.4
419
- * Better debug logging for agent issues
420
- * Fix for exception with nil messages
421
- * Fix for using structs as job params in Delayed Job
422
-
423
- # 1.1.3
424
- * Fix for issue where Appsignal.send_exception clears the current
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
- * Rails 3.0 compatibility fix
550
+ - Rails 3.0 compatibility fix
427
551
 
428
- # 1.1.2
429
- * Bug fix in notify of deploy cli
430
- * Better support for nil, true and false in sanitization
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
- # 1.1.1
433
- * Collect global metrics for GC durations (in beta, disabled by default)
434
- * Collect params from Delayed Job in a reliable way
435
- * Collect perams for Delayed Job and Sidekiq when using ActiveJob
436
- * Official Grape support
437
- * Easier installation using `bundle exec appsignal install`
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
- # 1.1.0
563
+ ## 1.1.0
440
564
  Yanked
441
565
 
442
- # 1.0.7
443
- * Another multibyte bugfix in sql sanizitation
444
-
445
- # 1.0.6
446
- * Bugfix in sql sanitization when using multibyte utf-8 characters
447
-
448
- # 1.0.5
449
- * Improved sql sanitization
450
- * Improved mongoid/mongodb sanitization
451
- * Minor performance improvements
452
- * Better handling for non-utf8 convertable strings
453
- * Make gem installable (but not functional) on JRuby
454
-
455
- # 1.0.4
456
- * Make working dir configurable using `APPSIGNAL_WORKING_DIR_PATH` or `:working_dir_path`
457
-
458
- # 1.0.3
459
- * Fix bug in completing JS transactions
460
- * Make Resque integration robust for bigger payloads
461
- * Message in logs if agent logging cannot initialize
462
- * Call `to_s` on DJ id to see the id when using MongoDB
463
-
464
- # 1.0.2
465
- * Bug fix in format of process memory measurements
466
- * Event formatter for `instantiation.active_record`
467
- * Rake integration file for backwards compatibility
468
- * Don't instrument mongo-ruby-driver when transaction is not present
469
- * Accept method calls on extension if it's not loaded
470
- * Fix for duplicate notifications subscriptions when forking
471
-
472
- # 1.0.1
473
- * Fix for bug in gem initialization when using `safe_yaml` gem
474
-
475
- # 1.0.0
476
- * New version of event formatting and collection
477
- * Use native library and agent
478
- * Use API V2
479
- * Support for Mongoid 5
480
- * Integration into other gems with a hooks system
481
- * Lots of minor bug fixes and improvements
482
-
483
- # 0.11.15
484
- * Improve Sinatra support
485
-
486
- # 0.11.14
487
- * Support ActiveJob wrapped jobs
488
- * Improve proxy support
489
- * Improve rake support
490
-
491
- # 0.11.13
492
- * Add Padrino support
493
- * Add Rake task monitoring
494
- * Add http proxy support
495
- * Configure Net::HTTP to only use TLS
496
- * Don't send queue if there is no content
497
- * Don't retry transmission when response code is 400 (no content)
498
- * Don't start Resque IPC server when AppSignal is not active
499
- * Display warning message when attempting to send a non-exception to `send_exception`
500
- * Fix capistrano 2 detection
501
- * Fix issue with Sinatra integration attempting to attach an exception to a transaction that doesn't exist.
502
-
503
- # 0.11.12
504
- * Sanitizer will no longer inspect unknown objects, since implementations of inspect sometimes trigger unexpected behavior.
505
-
506
- # 0.11.11
507
- * Reliably get errors in production for Sinatra
508
-
509
- # 0.11.10
510
- * Fix for binding bug in exceptions in Resque
511
- * Handle invalidly encoded characters in payload
512
-
513
- # 0.11.9
514
- * Fix for infinite attempts to transmit if there is no valid api key
515
-
516
- # 0.11.8
517
- * Add frontend error catcher
518
- * Add background job metadata (queue, priority etc.) to transaction overview
519
- * Add APPSIGNAL_APP_ENV variable to Rails config, so you can override the environment
520
- * Handle http queue times in microseconds too
521
-
522
- # 0.11.7
523
- * Add option to override Job name in Delayed Job
524
-
525
- # 0.11.6
526
- * Use `APPSIGNAL_APP_NAME` and `APPSIGNAL_ACTIVE` env vars in config
527
- * Better Sinatra support: Use route as action and set session data for Sinatra
528
-
529
- # 0.11.5
530
- * Add Sequel gem support (https://github.com/jeremyevans/sequel)
531
-
532
- # 0.11.4
533
- * Make `without_instrumentation` thread safe
534
-
535
- # 0.11.3
536
- * Support Ruby 1.9 and up instead of 1.9.3 and up
537
-
538
- # 0.11.2
539
- * If APP_REVISION environment variable is set, send it with the log entry.
540
-
541
- # 0.11.1
542
- * Allow a custom request_class and params_method on Rack instrumentation
543
- * Loop through env methods instead of env
544
- * Add HTTP_CLIENT_IP to env methods
545
-
546
- # 0.11.0
547
- * Improved inter process communication
548
- * Retry sending data when the push api is not reachable
549
- * Our own event handling to allow for more flexibility and reliability
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
- * Resque officially supported!
675
+ - Resque officially supported!
552
676
 
553
- # 0.10.6
554
- * Add config option to skip session data
677
+ ## 0.10.6
678
+ - Add config option to skip session data
555
679
 
556
- # 0.10.5
557
- * Don't shutdown in `at_exit`
558
- * Debug log about missing name in config
680
+ ## 0.10.5
681
+ - Don't shutdown in `at_exit`
682
+ - Debug log about missing name in config
559
683
 
560
- # 0.10.4
561
- * Add REQUEST_URI and PATH_INFO to env params allowlist
684
+ ## 0.10.4
685
+ - Add REQUEST_URI and PATH_INFO to env params allowlist
562
686
 
563
- # 0.10.3
564
- * Shut down all operations when agent is not active
565
- * Separately rescue OpenSSL::SSL::SSLError
687
+ ## 0.10.3
688
+ - Shut down all operations when agent is not active
689
+ - Separately rescue OpenSSL::SSL::SSLError
566
690
 
567
- # 0.10.2
568
- * Bugfix in event payload sanitization
691
+ ## 0.10.2
692
+ - Bugfix in event payload sanitization
569
693
 
570
- # 0.10.1
571
- * Bugfix in event payload sanitization
694
+ ## 0.10.1
695
+ - Bugfix in event payload sanitization
572
696
 
573
- # 0.10.0
574
- * Remove ActiveSupport dependency
575
- * Use vendored notifications if ActiveSupport is not present
576
- * Update bundled CA certificates
577
- * Fix issue where backtrace can be nil
578
- * Use Appsignal.monitor_transaction to instrument and log errors for
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
- * Add option to ignore a specific action
704
+ - Add option to ignore a specific action
581
705
 
582
- # 0.9.6
583
- * Convert to primitives before sending through pipe
706
+ ## 0.9.6
707
+ - Convert to primitives before sending through pipe
584
708
 
585
- # 0.9.5
709
+ ## 0.9.5
586
710
  Yanked
587
711
 
588
- # 0.9.4
589
- * Log Rails and Sinatra version
590
- * Resubscribe to notifications after fork
712
+ ## 0.9.4
713
+ - Log Rails and Sinatra version
714
+ - Resubscribe to notifications after fork
591
715
 
592
- # 0.9.3
593
- * Log if appsignal is not active for an environment
716
+ ## 0.9.3
717
+ - Log if appsignal is not active for an environment
594
718
 
595
- # 0.9.2
596
- * Log Ruby version and platform on startup
597
- * Log reason of shutting down agent
719
+ ## 0.9.2
720
+ - Log Ruby version and platform on startup
721
+ - Log reason of shutting down agent
598
722
 
599
- # 0.9.1
600
- * Some debug logging tweaks
723
+ ## 0.9.1
724
+ - Some debug logging tweaks
601
725
 
602
- # 0.9.0
603
- * Add option to override Capistrano revision
604
- * Expanded deploy message in Capistrano
605
- * Refactor of usage of Thread.local
606
- * Net::HTTP instrumentation
607
- * Capistrano 3 support
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
- # 0.8.15
610
- * Exception logging in agent thread
733
+ ## 0.8.15
734
+ - Exception logging in agent thread
611
735
 
612
- # 0.8.14
613
- * Few tweaks in logging
614
- * Clarify Appsignal::Transaction.complete! code
736
+ ## 0.8.14
737
+ - Few tweaks in logging
738
+ - Clarify Appsignal::Transaction.complete! code
615
739
 
616
- # 0.8.13
617
- * Random sleep time before first transmission of queue
740
+ ## 0.8.13
741
+ - Random sleep time before first transmission of queue
618
742
 
619
- # 0.8.12
620
- * Workaround for frozen string in Notification events
621
- * Require ActiveSupport::Notifications to be sure it's available
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
- # 0.8.11
624
- * Skip enqueue, send_exception and add_exception if not active
747
+ ## 0.8.11
748
+ - Skip enqueue, send_exception and add_exception if not active
625
749
 
626
- # 0.8.10
627
- * Bugfix: Don't pause agent when it's not active
750
+ ## 0.8.10
751
+ - Bugfix: Don't pause agent when it's not active
628
752
 
629
- # 0.8.9
753
+ ## 0.8.9
630
754
  Yanked
631
755
 
632
- # 0.8.8
633
- * Explicitely require securerandom
634
-
635
- # 0.8.7
636
- * Dup process action event to avoid threading issue
637
- * Rescue failing inspects in param sanitizer
638
- * Add option to pause instrumentation
639
-
640
- # 0.8.6
641
- * Resque support (beta)
642
- * Support tags in Appsignal.send_exception
643
- * Alias tag_request to tag_job, for background jobs
644
- * Skip sanitization of env if env is nil
645
- * Small bugfix in forking logic
646
- * Don't send params if send_params is off in config
647
- * Remove --repository option in CLI
648
- * Name option in appsignal notify_of_deploy CLI
649
- * Don't call to_hash on ENV
650
- * Get error message in CLI when config is not active
651
-
652
- # 0.8.5
653
- * Don't require revision in CLI notify_of_deploy
654
-
655
- # 0.8.4
656
- * Skip session sanitize if not a http request
657
- * Use appsignal_config in Capistrano as initial config
658
-
659
- # 0.8.3
660
- * Restart thread when we've been forked
661
- * Only notify of deploy when active in capistrano
662
- * Make sure env is a string in config
663
-
664
- # 0.8.2
665
- * Bugfix in Delayed Job integration
666
- * appsignal prefix when logging to stdout
667
- * Log to stdout on Shelly Cloud
668
-
669
- # 0.8.1
670
- * Fix in monitoring of queue times
671
-
672
- # 0.8.0
673
- * Support for background processors (Delayed Job and Sidekiq)
674
-
675
- # 0.7.1
676
- * Better support for forking webservers
677
-
678
- # 0.7.0
679
- * Mayor refactor and cleanup
680
- * New easier onboarding process
681
- * Support for Rack apps, including experimental Sinatra integration
682
- * Monitor HTTP queue times
683
- * Always log to stdout on Heroku
684
-
685
- # 0.6.7
686
- * Send HTTP_X_FORWARDED_FOR env var
687
-
688
- # 0.6.6
689
- * Add Appsignal.add_exception
690
-
691
- # 0.6.5
692
- * Fix bug where fast requests are tracked with wrong action
693
-
694
- # 0.6.4
695
- * More comprehensive debug logging
696
-
697
- # 0.6.3
698
- * Use a mutex around access to the aggregator
699
- * Bugfix for accessing connection config in Rails 3.0
700
- * Add Appsignal.tag_request
701
- * Only warn if there are duplicate push keys
702
-
703
- # 0.6.2
704
- * Bugfix in backtrace cleaner usage for Rails 4
705
-
706
- # 0.6.1
707
- * Bugfix in Capistrano integration
708
-
709
- # 0.6.0
710
- * Support for Rails 4
711
- * Data that's posted to AppSignal is now gzipped
712
- * Add Appsignal.send_exception and Appsignal.listen_for_exception
713
- * We now us the Rails backtrace cleaner
714
-
715
- # 0.5.5
716
- * Fix minor bug
717
-
718
- # 0.5.4
719
- * Debug option in config to get detailed logging
720
-
721
- # 0.5.3
722
- * Fix minor bug
723
-
724
- # 0.5.2
725
- * General improvements to the Rails generator
726
- * Log to STDOUT if writing to log/appsignal.log is not possible (Heroku)
727
- * Handle the last transactions before the rails process shuts down
728
- * Require 'erb' to enable dynamic config
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