protobuf-nats 0.10.6 → 0.10.7

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: 7761313e59a23ac96ece4459f1f5a681e6f1d9849a9069a5a60cd7a95c866d23
4
- data.tar.gz: 192975bee97ee5d132515158e66f2081970c24071f1d89b73f878e2734736ac0
3
+ metadata.gz: 2b24dc4e6dfe807ddff392c7fdf8187dab743915511c996fb8484dd5d7c61361
4
+ data.tar.gz: d6fa80dcf05264db2520cb0cffb3f60edef7364d491ffaf66c6c1f2d213eb73d
5
5
  SHA512:
6
- metadata.gz: a8cf08359fd214e7590a71e04c208505720f943020b7c4d028b5996734e24d1db0c67d4625f03c74d270f0cbcd2011f5ba673a6126ff7bed255e47a653f260e9
7
- data.tar.gz: 4cf1c1332d8b9fb28e2d2e08fe65e2f205539751f08dde27ce1cb6e9de416ec1d3263ecd85fc6bac8cf44926c1e9758ce2ed75ebb6a4283ed1e75ede6a388587
6
+ metadata.gz: a0b1a723daac8e84fa1e1d5727334790498b267fc8396352e6a68914f1aace2cadf693674a1a253409e21d2d1057fdd9dea69eec416b61bb7318ab4501389aab
7
+ data.tar.gz: 169806eefdc18c2bad9e64a880857c9820d3132178df6b7e4a8744bdd119c7ad649082080e272222c167b15c6f75de855ca7340eda4f36cbf34355da50a6b877
@@ -29,6 +29,12 @@ module Protobuf
29
29
  @server = options.fetch(:server, ::Socket.gethostname)
30
30
  end
31
31
 
32
+ def instrument_thread_pool_sizes
33
+ ::ActiveSupport::Notifications.instrument("server.thread_pool_enqueued_size.protobuf-nats", thread_pool.enqueued_size)
34
+ ::ActiveSupport::Notifications.instrument("server.thread_pool_max_size.protobuf-nats", thread_pool.max_size)
35
+ ::ActiveSupport::Notifications.instrument("server.thread_pool_running_size.protobuf-nats", thread_pool.size)
36
+ end
37
+
32
38
  def max_queue_size
33
39
  ::ENV.fetch("PB_NATS_SERVER_MAX_QUEUE_SIZE", @options[:threads]).to_i
34
40
  end
@@ -56,10 +62,6 @@ module Protobuf
56
62
  ::ActiveSupport::Notifications.instrument("server.thread_pool_execution_delay.protobuf-nats",
57
63
  (processed_at - enqueued_at) * MILLISECOND)
58
64
 
59
- ::ActiveSupport::Notifications.instrument("server.thread_pool_enqueued_size.protobuf-nats", thread_pool.enqueued_size)
60
- ::ActiveSupport::Notifications.instrument("server.thread_pool_max_size.protobuf-nats", thread_pool.max_size)
61
- ::ActiveSupport::Notifications.instrument("server.thread_pool_running_size.protobuf-nats", thread_pool.size)
62
-
63
65
  # Process request.
64
66
  response_data = handle_request(request_data, 'server' => @server)
65
67
  # Publish response.
@@ -209,6 +211,7 @@ module Protobuf
209
211
  loop do
210
212
  break unless @running
211
213
  detect_and_handle_a_pause
214
+ instrument_thread_pool_sizes
212
215
  sleep 1
213
216
  end
214
217
 
@@ -1,5 +1,5 @@
1
1
  module Protobuf
2
2
  module Nats
3
- VERSION = "0.10.6"
3
+ VERSION = "0.10.7"
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: protobuf-nats
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.10.6
4
+ version: 0.10.7
5
5
  platform: ruby
6
6
  authors:
7
7
  - Brandon Dewitt
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2024-08-23 00:00:00.000000000 Z
11
+ date: 2024-08-26 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: activesupport