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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: bb6a6aae5d3d756626118bbf0215ea4a0fb6701a547d6543966480ef50512b2e
4
- data.tar.gz: 7115508fd6fb2d1945f26472c7d8a9c718fed5c7096cdc037faeeaf1112da822
3
+ metadata.gz: 29e2a130f9456764b4cf8751421172e5c0798c7a4170c1e77dace308efea9649
4
+ data.tar.gz: 0ada9f736acfc7191017e514496a64e8303a3f9275d2521be3786e832c56b700
5
5
  SHA512:
6
- metadata.gz: e826c7e448f1a44ec76eba91b2643f04deb1093a89507a531dd051fc2dac6ace95482c30691295a219d740c217ede37c436d3328a29d256fb0550f53bf412727
7
- data.tar.gz: 673df2c80be0e15af9a09cdd780c96092949ce8b00ad7bb1290d3e61efc1e7d46463ac0011db9b297335c425cf6ba693fcc9b17f1cc0b920dae8d7513a791d21
6
+ metadata.gz: bd7083dd30216ee6cc3169d6831628485670547670c5afd3b374b0d46293032ab09c9d6af0e23480a3abd58d87c0920c93c29cb5dc34f106b33a2485ac168acd
7
+ data.tar.gz: 8bbf3a4de656164526a6c8293d806703d868c05efe61a54f78cde3528ebe27e8e93efb0bf3ff23041939ef7b60f256b66b288c0042310d7c3f9ecec686f3ac38
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
- ## [Unreleased]
1
+ # Changelog
2
2
 
3
- ## [0.1.0] - 2025-05-30
3
+ ## [v0.1.0](https://github.com/kigster/datadog-statsd-schema/tree/v0.1.0) (2025-05-31)
4
4
 
5
- - Initial release
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)*
@@ -3,7 +3,7 @@
3
3
  module Datadog
4
4
  class Statsd
5
5
  module Schema
6
- VERSION = "0.1.0"
6
+ VERSION = "0.1.1"
7
7
  end
8
8
  end
9
9
  end
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.0
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: Datadog Schema for Statsd metrics and Tags
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: Datadog Schema for Statsd metrics and Tags
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: []