honeybadger 5.21.0 → 5.23.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: e746a9e39d4877eded4a48b69d790795996af59c9971279b1f72b09a80260524
4
- data.tar.gz: 1308d295339f52d2db9cc1b6ce39896c231e38c248d565419e330bde3f4cdf1c
3
+ metadata.gz: c39590cf4156c12f42b0f04fbc2f27f76c3583c48fdfc01b30885c0b60e47511
4
+ data.tar.gz: 7b92557df489fe548d5653e9e7c5ea5bac1c87720fc7797821a0758829b00534
5
5
  SHA512:
6
- metadata.gz: c383d2a638d1e11d89d809a86f92427540268a3fecb5748cd662a8e0a2017a9c778d5d0ed094e453566488e54696eb434dc0243d3829ee9b8494c8becc6cb44c
7
- data.tar.gz: 2ffc7ed5a9d72fc47742dbf9c787101bf2ac86593fb08e6095f115379b78efec4a89a41a106d5d23d217ffc5c443d386c81eaa2c19f1dcc7be4f30b73a2112fe
6
+ metadata.gz: aaced28451f474f8e3d53d7e56d97f8a94a8d307da0e15a0e097f065421089486faa04ad8f72d61d2be1d2f04424583aa93c3531bc3d91afc90e1b2700fb1f95
7
+ data.tar.gz: 1c33cc13477a77cd405fce3b84ad3fabea8a84203aaa170f20374c901d402edec6fc5e240c676a41f89be91255b0f60b769f7e3a34380f2f9106b4e0655fb937
data/CHANGELOG.md CHANGED
@@ -1,6 +1,20 @@
1
1
  # Change Log
2
2
 
3
3
 
4
+ ## [5.23.0](https://github.com/honeybadger-io/honeybadger-ruby/compare/v5.22.0...v5.23.0) (2024-11-19)
5
+
6
+
7
+ ### Features
8
+
9
+ * update puma and autotuner plugins ([#644](https://github.com/honeybadger-io/honeybadger-ruby/issues/644)) ([1ed9687](https://github.com/honeybadger-io/honeybadger-ruby/commit/1ed96874c31c0273bc28cb917043f19140fd8204))
10
+
11
+ ## [5.22.0](https://github.com/honeybadger-io/honeybadger-ruby/compare/v5.21.0...v5.22.0) (2024-11-14)
12
+
13
+
14
+ ### Features
15
+
16
+ * only allow for insights to be enabled when public ([#642](https://github.com/honeybadger-io/honeybadger-ruby/issues/642)) ([2d3ab26](https://github.com/honeybadger-io/honeybadger-ruby/commit/2d3ab26ca3673b5b01082d55737bf7907c02e799))
17
+
4
18
  ## [5.21.0](https://github.com/honeybadger-io/honeybadger-ruby/compare/v5.20.1...v5.21.0) (2024-11-14)
5
19
 
6
20
 
@@ -491,6 +491,31 @@ module Honeybadger
491
491
  description: "Number of seconds between registry flushes.",
492
492
  default: 60,
493
493
  type: Integer
494
+ },
495
+ :'puma.insights.events' => {
496
+ description: 'Enable automatic event capturing for Puma stats.',
497
+ default: true,
498
+ type: Boolean
499
+ },
500
+ :'puma.insights.metrics' => {
501
+ description: 'Enable automatic metric data aggregation for Puma stats.',
502
+ default: false,
503
+ type: Boolean
504
+ },
505
+ :'puma.insights.collection_interval' => {
506
+ description: 'The frequency in which the Honeybadger gem will collect Puma stats.',
507
+ default: 1,
508
+ type: Integer
509
+ },
510
+ :'autotuner.insights.events' => {
511
+ description: 'Enable automatic event capturing for Autotuner stats.',
512
+ default: true,
513
+ type: Boolean
514
+ },
515
+ :'autotuner.insights.metrics' => {
516
+ description: 'Enable automatic metric data aggregation for Autotuner stats.',
517
+ default: false,
518
+ type: Boolean
494
519
  }
495
520
  }.freeze
496
521
 
@@ -289,7 +289,7 @@ module Honeybadger
289
289
  end
290
290
 
291
291
  def insights_enabled?
292
- !!self[:'insights.enabled']
292
+ public? && !!self[:'insights.enabled']
293
293
  end
294
294
 
295
295
  def cluster_collection?(name)
@@ -10,17 +10,20 @@ module Honeybadger
10
10
  execution do
11
11
  singleton_class.include(Honeybadger::InstrumentationHelper)
12
12
 
13
- ::Autotuner.enabled = true
14
-
15
13
  ::Autotuner.reporter = proc do |report|
16
14
  Honeybadger.event("report.autotuner", report: report.to_s)
17
15
  end
18
16
 
19
- metric_source 'autotuner'
20
-
21
17
  ::Autotuner.metrics_reporter = proc do |metrics|
22
- metrics.each do |key, val|
23
- gauge key, ->{ val }
18
+ if config.load_plugin_insights_events?(:autotuner)
19
+ Honeybadger.event('stats.autotuner', metrics)
20
+ end
21
+
22
+ if config.load_plugin_insights_metrics?(:autotuner)
23
+ metric_source 'autotuner'
24
+ metrics.each do |key, val|
25
+ gauge key, ->{ val }
26
+ end
24
27
  end
25
28
  end
26
29
  end
@@ -1,4 +1,4 @@
1
1
  module Honeybadger
2
2
  # The current String Honeybadger version.
3
- VERSION = '5.21.0'.freeze
3
+ VERSION = '5.23.0'.freeze
4
4
  end
@@ -12,7 +12,7 @@ module Honeybadger
12
12
  in_background do
13
13
  loop do
14
14
  puma_plugin.record
15
- sleep 1
15
+ sleep [::Honeybadger.config.collection_interval(:puma).to_i, 1].max
16
16
  end
17
17
  end
18
18
  end
@@ -35,8 +35,14 @@ module Honeybadger
35
35
  end
36
36
 
37
37
  def record_puma_stats(stats, context={})
38
- STATS_KEYS.each do |stat|
39
- gauge stat, context, ->{ stats[stat] } if stats[stat]
38
+ if Honeybadger.config.load_plugin_insights_events?(:puma)
39
+ Honeybadger.event('stats.puma', context.merge(stats))
40
+ end
41
+
42
+ if Honeybadger.config.load_plugin_insights_metrics?(:puma)
43
+ STATS_KEYS.each do |stat|
44
+ gauge stat, context, ->{ stats[stat] } if stats[stat]
45
+ end
40
46
  end
41
47
  end
42
48
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: honeybadger
3
3
  version: !ruby/object:Gem::Version
4
- version: 5.21.0
4
+ version: 5.23.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Honeybadger Industries LLC
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2024-11-14 00:00:00.000000000 Z
11
+ date: 2024-11-19 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: logger