datadog-statsd-schema 0.1.0 → 0.1.1
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 +11 -3
- data/lib/datadog/statsd/schema/version.rb +1 -1
- metadata +9 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 29e2a130f9456764b4cf8751421172e5c0798c7a4170c1e77dace308efea9649
|
4
|
+
data.tar.gz: 0ada9f736acfc7191017e514496a64e8303a3f9275d2521be3786e832c56b700
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: bd7083dd30216ee6cc3169d6831628485670547670c5afd3b374b0d46293032ab09c9d6af0e23480a3abd58d87c0920c93c29cb5dc34f106b33a2485ac168acd
|
7
|
+
data.tar.gz: 8bbf3a4de656164526a6c8293d806703d868c05efe61a54f78cde3528ebe27e8e93efb0bf3ff23041939ef7b60f256b66b288c0042310d7c3f9ecec686f3ac38
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,13 @@
|
|
1
|
-
|
1
|
+
# Changelog
|
2
2
|
|
3
|
-
## [
|
3
|
+
## [v0.1.0](https://github.com/kigster/datadog-statsd-schema/tree/v0.1.0) (2025-05-31)
|
4
4
|
|
5
|
-
-
|
5
|
+
[Full Changelog](https://github.com/kigster/datadog-statsd-schema/compare/7801d89bbfcfb0286adddec353acf08c0ffc6789...v0.1.0)
|
6
|
+
|
7
|
+
**Merged pull requests:**
|
8
|
+
|
9
|
+
- Using dry-rb to implement the schema [\#1](https://github.com/kigster/datadog-statsd-schema/pull/1) ([kigster](https://github.com/kigster))
|
10
|
+
|
11
|
+
|
12
|
+
|
13
|
+
\* *This Changelog was automatically generated by [github_changelog_generator](https://github.com/github-changelog-generator/github-changelog-generator)*
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: datadog-statsd-schema
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Konstantin Gredeskoul
|
@@ -135,7 +135,12 @@ dependencies:
|
|
135
135
|
- - ">="
|
136
136
|
- !ruby/object:Gem::Version
|
137
137
|
version: '0'
|
138
|
-
description:
|
138
|
+
description: This gem is an adapter for the dogstatsd-ruby gem. Unlike the Datadog::Statsd
|
139
|
+
metric sender, this gem supports pre-declaring schemas defining allowed metrics
|
140
|
+
and their types, the tags that apply to them, and tag values that must be validated
|
141
|
+
before streamed to Datadog. This approach allows for a more robust and consistent
|
142
|
+
way to ensure that metrics follow a well-thought-out naming scheme and are validated
|
143
|
+
before being sent to Datadog.
|
139
144
|
email:
|
140
145
|
- kigster@gmail.com
|
141
146
|
executables:
|
@@ -188,5 +193,6 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
188
193
|
requirements: []
|
189
194
|
rubygems_version: 3.6.6
|
190
195
|
specification_version: 4
|
191
|
-
summary:
|
196
|
+
summary: An adapter or wrapper for Datadog Statsd that allows pre-declaring of metrics,
|
197
|
+
tags and tag values and validating them against the schema.
|
192
198
|
test_files: []
|