metrixwire 0.2.4 → 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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: ccffdbedd46e0a2d6244abb160a5e926ea6420a2400b59e70d1ac043671dd929
4
- data.tar.gz: cc44b5dde3eaccab5584129ecfa9f51287b51f7b3408baba46630e2aa55a8ac2
3
+ metadata.gz: c701b0416947336c0e7e52a3be6ca9da96210377004ed2300a116cab7704a729
4
+ data.tar.gz: af40199508155f24e9964767f804eaa12ee14b322ffb3c817629e121d72adfe8
5
5
  SHA512:
6
- metadata.gz: 40ac8e808aa64fd7f922f229076b54ab88c0fc83d5b0ce52faabff2cf1f2b093eada348cbe7463f393291df15e49cf3d0bc61d0a0ba4cb7d29107758ec02ca0c
7
- data.tar.gz: 53c2104cfc9f610cb71101a59e2fcb67adb9c92f82c23899127d8769f924f8e9f04d84450aa314880e5b4258c1889c413d22c387af31cdf278cc1bf526e6275d
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: 'http://localhost:3000/ingest', # default (a base URL is accepted; /ingest is appended)
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)
@@ -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 = "http://localhost:3000/ingest"
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
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module MetrixWire
4
- VERSION = "0.2.4"
4
+ VERSION = "0.3.0"
5
5
  end
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.2.4
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-07-29 00:00:00.000000000 Z
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