puma-plugin-statsd 2.6.0 → 2.7.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +4 -0
- data/README.md +5 -5
- metadata +5 -9
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 292f7468130896e5272f900f694c0b5ea4f3ec5a23060792b97050574a2cde0a
|
|
4
|
+
data.tar.gz: 9626d78779e9b9e1ffd15beb6ab01615d28c3e3e407a8c001962ea02c3ac6311
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 96ec1316a5c2930bcaefd2ae32b1b3e61bd7d2f03cb59dc360b8e8561f659a21b75e4db881d03ddbeada15168f726cc9c66b03c02a7a2a98eb48c37b1d8d8772
|
|
7
|
+
data.tar.gz: 9040b276063fae20ae7be2f610f6c96d2a0e37b6bb2b7e5b74581e7e198629da984817f1315bd1ea4004d3032b041a3a348a44d077441785b53be769c2c82110
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,9 @@
|
|
|
1
1
|
# CHANGELOG
|
|
2
2
|
|
|
3
|
+
## 2.7.0 2025-10-26
|
|
4
|
+
|
|
5
|
+
* Support puma 7 (PR #[65](https://github.com/yob/puma-plugin-statsd/pull/65))
|
|
6
|
+
|
|
3
7
|
## 2.6.0 2023-12-11
|
|
4
8
|
|
|
5
9
|
* New metric: `puma.percent_busy` - The percentage of busy threads calculated as pool capacity relative to max threads (PR #[58](https://github.com/yob/puma-plugin-statsd/pull/58))
|
data/README.md
CHANGED
|
@@ -5,14 +5,14 @@ that puma can provide:
|
|
|
5
5
|
|
|
6
6
|
Gauges:
|
|
7
7
|
|
|
8
|
-
* puma.workers - The number of distinct
|
|
8
|
+
* puma.workers - The number of distinct processes running. In single mode this will be 1, in cluster mode the number of worker processes
|
|
9
9
|
* puma.old_workers - The number of worker processes that are about to be shut down as part of a phased restart. Will normally be 0
|
|
10
10
|
* puma.booted_workers - The number of worker processes that are in a booted state
|
|
11
|
-
* puma.running - The number of worker threads currently running. In quiet times, idle threads may be shutdown, but they'll start back up again when traffic arrives
|
|
12
|
-
* puma.backlog - The number of requests that have made it to a worker but are yet to be processed. This will
|
|
13
|
-
* puma.pool_capacity - The number of idle and
|
|
11
|
+
* puma.running - The number of worker threads currently running. In quiet times, idle threads may be shutdown if the number of threads exceeds the configured minimum, but they'll start back up again when traffic arrives
|
|
12
|
+
* puma.backlog - The number of requests that have made it to a worker but are yet to be processed. This will be zero if queue_requests is disabled, as requests will only queue on the tcp/unix socket in front of the master puma process, but not in the worker thread pool
|
|
13
|
+
* puma.pool_capacity - The number of idle and unspawned worker threads. When this is low/zero, puma is running at full capacity and might need scaling up
|
|
14
14
|
* puma.max_threads - The maximum number of worker threads that might run at one time
|
|
15
|
-
* puma.percent_busy - The percentage of busy threads calculated as
|
|
15
|
+
* puma.percent_busy - The percentage of busy threads, calculated as the percentage of capacity in use relative to the maximum number of threads
|
|
16
16
|
* puma.requests_count - Total number of requests served by this puma since it started
|
|
17
17
|
|
|
18
18
|
Counters:
|
metadata
CHANGED
|
@@ -1,14 +1,13 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: puma-plugin-statsd
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 2.
|
|
4
|
+
version: 2.7.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- James Healy
|
|
8
|
-
autorequire:
|
|
9
8
|
bindir: bin
|
|
10
9
|
cert_chain: []
|
|
11
|
-
date:
|
|
10
|
+
date: 1980-01-02 00:00:00.000000000 Z
|
|
12
11
|
dependencies:
|
|
13
12
|
- !ruby/object:Gem::Dependency
|
|
14
13
|
name: puma
|
|
@@ -19,7 +18,7 @@ dependencies:
|
|
|
19
18
|
version: '5.0'
|
|
20
19
|
- - "<"
|
|
21
20
|
- !ruby/object:Gem::Version
|
|
22
|
-
version: '
|
|
21
|
+
version: '8'
|
|
23
22
|
type: :runtime
|
|
24
23
|
prerelease: false
|
|
25
24
|
version_requirements: !ruby/object:Gem::Requirement
|
|
@@ -29,7 +28,7 @@ dependencies:
|
|
|
29
28
|
version: '5.0'
|
|
30
29
|
- - "<"
|
|
31
30
|
- !ruby/object:Gem::Version
|
|
32
|
-
version: '
|
|
31
|
+
version: '8'
|
|
33
32
|
- !ruby/object:Gem::Dependency
|
|
34
33
|
name: bundler
|
|
35
34
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -100,7 +99,6 @@ dependencies:
|
|
|
100
99
|
- - ">="
|
|
101
100
|
- !ruby/object:Gem::Version
|
|
102
101
|
version: '0'
|
|
103
|
-
description:
|
|
104
102
|
email: james@yob.id.au
|
|
105
103
|
executables:
|
|
106
104
|
- statsd-to-stdout
|
|
@@ -116,7 +114,6 @@ homepage: https://github.com/yob/puma-plugin-statsd
|
|
|
116
114
|
licenses:
|
|
117
115
|
- MIT
|
|
118
116
|
metadata: {}
|
|
119
|
-
post_install_message:
|
|
120
117
|
rdoc_options: []
|
|
121
118
|
require_paths:
|
|
122
119
|
- lib
|
|
@@ -131,8 +128,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
131
128
|
- !ruby/object:Gem::Version
|
|
132
129
|
version: '0'
|
|
133
130
|
requirements: []
|
|
134
|
-
rubygems_version: 3.
|
|
135
|
-
signing_key:
|
|
131
|
+
rubygems_version: 3.6.7
|
|
136
132
|
specification_version: 4
|
|
137
133
|
summary: Send puma metrics to statsd via a background thread
|
|
138
134
|
test_files: []
|