metrixwire 0.2.3 → 0.3.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/README.md +1 -1
- data/lib/metrixwire/config.rb +1 -1
- data/lib/metrixwire/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: c701b0416947336c0e7e52a3be6ca9da96210377004ed2300a116cab7704a729
|
|
4
|
+
data.tar.gz: af40199508155f24e9964767f804eaa12ee14b322ffb3c817629e121d72adfe8
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: b2375a56104174e512fe23dee055b9728ac2894597ae4892633f35843d85877ec07c8ed755e32447b0a9dcf6af4deef4df369326c33fc68ae252aa253538079c
|
|
7
|
+
data.tar.gz: 48671d7f28cb2c8383dc0f21421139b041c09a35a25591cdba10e7522a2a830c2ffb68141e002219e7d9e23274e89271939b254a1ada9318a6a785cf8a9b940a
|
data/README.md
CHANGED
|
@@ -62,7 +62,7 @@ Each patch is guarded: if the library or constant isn't present, it's skipped si
|
|
|
62
62
|
```ruby
|
|
63
63
|
MetrixWire.init(
|
|
64
64
|
api_key: 'mw_...', # required (falls back to METRIXWIRE_KEY)
|
|
65
|
-
endpoint: '
|
|
65
|
+
endpoint: 'https://metrixwire.com/ingest', # default (a base URL is accepted; /ingest is appended)
|
|
66
66
|
flush_interval_ms: 5000, # how often batches are sent
|
|
67
67
|
enabled: true, # set to false to disable entirely (or METRIXWIRE_ENABLED=false)
|
|
68
68
|
timeout_ms: 3000, # send timeout (short, non-blocking)
|
data/lib/metrixwire/config.rb
CHANGED
|
@@ -5,7 +5,7 @@ module MetrixWire
|
|
|
5
5
|
# options with ENV fallbacks. Nothing here throws — bad input degrades to a
|
|
6
6
|
# sensible default so instrumentation never breaks the host app.
|
|
7
7
|
class Config
|
|
8
|
-
DEFAULT_ENDPOINT = "
|
|
8
|
+
DEFAULT_ENDPOINT = "https://metrixwire.com/ingest"
|
|
9
9
|
DEFAULT_FLUSH_INTERVAL_MS = 5000
|
|
10
10
|
DEFAULT_TIMEOUT_MS = 3000
|
|
11
11
|
DEFAULT_MAX_BATCH = 20
|
data/lib/metrixwire/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: metrixwire
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.3.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- MetrixWire
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2026-
|
|
11
|
+
date: 2026-09-01 00:00:00.000000000 Z
|
|
12
12
|
dependencies: []
|
|
13
13
|
description: 'Zero-config application performance monitoring for Ruby. Add the gem,
|
|
14
14
|
set METRIXWIRE_KEY, and every request, database query, outbound HTTP call and cache
|