wide_events 0.1.1 → 0.1.2
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 +7 -1
- data/README.md +4 -0
- data/lib/wide_event/version.rb +1 -1
- metadata +3 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 2c53fd3a4d33b817af708d0675bfa0b8047e2487a354d62cfb9e3c915b9c3472
|
|
4
|
+
data.tar.gz: 747298c60ca63d3a90db33abbf69d430e20a67d5037f79dcbf6d018ab5c86cb4
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: d54b65bd07d6294109efb49020299da91aeb040000c42841a175f1b7af3e7fb5a6989971fee3fae5a57f8c0d2c5692572cd08bd4fb978c5798cb7ce9ce98783f
|
|
7
|
+
data.tar.gz: e2a3a0d2d6400b1c1cd951c3f6c71c059ecc0cd2b67342beba43901a8ca30929b98ecafe5cab47994e0c3a5153b9773f186670a73ef7eb13894fff40bd9055f3
|
data/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,12 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
-
##
|
|
3
|
+
## v0.1.2 (2026-08-03)
|
|
4
|
+
|
|
5
|
+
- README "In production" section and `docs/production-example.md`: an
|
|
6
|
+
anonymized composite event, instrumentation patterns, and standing
|
|
7
|
+
queries from the production app the gem was extracted from.
|
|
8
|
+
|
|
9
|
+
## v0.1.1 (2026-08-03)
|
|
4
10
|
|
|
5
11
|
- The install generator wires `WideEvent::TestHelper` into
|
|
6
12
|
`test/test_helper.rb` (or prints manual instructions when the file
|
data/README.md
CHANGED
|
@@ -216,6 +216,10 @@ WHERE SpanAttributes['main'] = 'true'
|
|
|
216
216
|
GROUP BY controller ORDER BY p50_ms DESC LIMIT 15
|
|
217
217
|
```
|
|
218
218
|
|
|
219
|
+
## In production
|
|
220
|
+
|
|
221
|
+
Wide Events was extracted from a multi-tenant Rails app subject to healthcare privacy rules, where it runs in staging and production today: one row per request and job execution, exported over OTLP into self-hosted ClickStack. A request that runs a hybrid search and drafts a reply with an LLM still lands as one event, carrying the account, the feature flags evaluated, search quality (semantic hits kept, top cosine similarity), the model, tokens, latency, and cost, the Postgres query count, and an error slug for anything rescued along the way. [docs/production-example.md](docs/production-example.md) shows a full anonymized event, the instrumentation patterns behind it, and two standing queries taken from that deployment.
|
|
222
|
+
|
|
219
223
|
## Conventions
|
|
220
224
|
|
|
221
225
|
Flat keys, dot namespaces, snake_case leaves. Durations end in `_duration_ms`, counts in `_count`, booleans read as assertions, timestamps serialize to RFC 3339. Opaque ids are fine; names, emails, and request params are not, and anything that could quote user input is flagged `pii: review` in the registry.
|
data/lib/wide_event/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: wide_events
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.1.
|
|
4
|
+
version: 0.1.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Adam Miribyan
|
|
@@ -81,6 +81,8 @@ metadata:
|
|
|
81
81
|
homepage_uri: https://github.com/adammiribyan/wide_events
|
|
82
82
|
source_code_uri: https://github.com/adammiribyan/wide_events
|
|
83
83
|
changelog_uri: https://github.com/adammiribyan/wide_events/blob/main/CHANGELOG.md
|
|
84
|
+
bug_tracker_uri: https://github.com/adammiribyan/wide_events/issues
|
|
85
|
+
documentation_uri: https://rubydoc.info/gems/wide_events
|
|
84
86
|
rubygems_mfa_required: 'true'
|
|
85
87
|
rdoc_options: []
|
|
86
88
|
require_paths:
|