@bull-board/metrics 9.9.0 → 9.10.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.
Files changed (2) hide show
  1. package/README.md +2 -0
  2. package/package.json +2 -2
package/README.md CHANGED
@@ -68,6 +68,8 @@ Standalone keys are untagged and unchanged, so nothing moves for an existing dep
68
68
 
69
69
  Latency sampling reads BullMQ's own keys through the same connection, so your queues need the hash-tagged prefix BullMQ already asks for in cluster mode (`new Queue(name, { prefix: '{bull}' })`). Without it the sampler's pipelines span slots; it swallows that error, so pass `onLatencyError` to see it.
70
70
 
71
+ The CLI and the Docker image reach a cluster with `--cluster`, where `--history` works the same way.
72
+
71
73
  ## Job latency
72
74
 
73
75
  Alongside the completed/failed counters, the recorder tracks two histograms per queue: wait time (`processedOn - timestamp`, how long a job sat before a worker picked it up) and run time (`finishedOn - processedOn`, how long the handler took). They diagnose different problems, so they're kept separate rather than combined into one number.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bull-board/metrics",
3
- "version": "9.9.0",
3
+ "version": "9.10.0",
4
4
  "description": "Opt-in long-retention historical job metrics recorder and provider for bull-board.",
5
5
  "keywords": [
6
6
  "bull",
@@ -32,7 +32,7 @@
32
32
  "test": "jest"
33
33
  },
34
34
  "dependencies": {
35
- "@bull-board/api": "9.9.0"
35
+ "@bull-board/api": "9.10.0"
36
36
  },
37
37
  "devDependencies": {
38
38
  "@types/jest": "^30.0.0",