hephaestus 0.8.9 → 0.8.9.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 +4 -0
- data/config/initializers/opentelemetry.rb +2 -1
- data/lib/hephaestus/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: '085d3ae69e129e0f5769fafce288c0d43f9b0640f7dde6ca1c5bc8c507c3bcd2'
|
|
4
|
+
data.tar.gz: 8d5158c385a786e0de16c7a8250c97b86b448825b8e32f77b28f2a8d2811409e
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 3f6329563ecada841d5d688714ab898a6cbc9927771cf339c271bae44cb34d16bc32546e84ad7145062efc36c74fcb3f44bd56cffbede200017523fc5d6f0674
|
|
7
|
+
data.tar.gz: dd8231ec41c8e45aacf35ea8ea14ed422228c1f348aaaf690c6b64243bf999c4002abdb6168104cbc8832ee34ccee20643f48849dac89e4de846fcfdc7ac93e2
|
data/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,7 @@
|
|
|
1
|
+
# [v0.8.9.2] - 10-12-2024
|
|
2
|
+
**Full Changelog**: https://github.com/yettoapp/hephaestus/compare/v0.8.9.1...v0.8.9.2
|
|
3
|
+
# [v0.8.9.1] - 10-12-2024
|
|
4
|
+
**Full Changelog**: https://github.com/yettoapp/hephaestus/compare/v0.8.9...v0.8.9.1
|
|
1
5
|
# [v0.8.9] - 10-12-2024
|
|
2
6
|
## What's Changed
|
|
3
7
|
* Point OpenTelemetry to internal service by @gjtorikian in https://github.com/yettoapp/hephaestus/pull/86
|
|
@@ -7,6 +7,7 @@ return if defined?(Rails::Console)
|
|
|
7
7
|
|
|
8
8
|
# establish the environment for OTEL
|
|
9
9
|
ENV["OTEL_EXPORTER_OTLP_ENDPOINT"] = "http://service-otelcol-#{Rails.env}.internal:4318"
|
|
10
|
+
ENV["OTEL_EXPORTER_OTLP_HEADERS"] = "x-honeycomb-dataset=plug-#{plug_shortname}-#{Rails.env}"
|
|
10
11
|
ENV["OTEL_SERVICE_NAME"] = "plug-#{plug_shortname}-#{Rails.env}"
|
|
11
12
|
|
|
12
13
|
require "opentelemetry/sdk"
|
|
@@ -37,7 +38,7 @@ OpenTelemetry::SDK.configure do |c|
|
|
|
37
38
|
c.use("OpenTelemetry::Instrumentation::Rails")
|
|
38
39
|
c.use("OpenTelemetry::Instrumentation::RestClient")
|
|
39
40
|
|
|
40
|
-
if
|
|
41
|
+
if productionish?
|
|
41
42
|
c.add_span_processor(
|
|
42
43
|
OpenTelemetry::SDK::Trace::Export::BatchSpanProcessor.new(
|
|
43
44
|
OpenTelemetry::Exporter::OTLP::Exporter.new,
|
data/lib/hephaestus/version.rb
CHANGED