-
Notifications
You must be signed in to change notification settings - Fork 251
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* feat: add gauge * Update metrics_api/lib/opentelemetry/metrics/instrument/gauge.rb Co-authored-by: Kayla Reopelle <87386821+kaylareopelle@users.noreply.github.com> * Update metrics_api/lib/opentelemetry/metrics/instrument/gauge.rb Co-authored-by: Kayla Reopelle <87386821+kaylareopelle@users.noreply.github.com> * Update metrics_api/lib/opentelemetry/metrics/instrument/gauge.rb Co-authored-by: Kayla Reopelle <87386821+kaylareopelle@users.noreply.github.com> * Update metrics_sdk/lib/opentelemetry/sdk/metrics/instrument/gauge.rb Co-authored-by: Kayla Reopelle <87386821+kaylareopelle@users.noreply.github.com> * Update metrics_sdk/lib/opentelemetry/sdk/metrics/instrument/gauge.rb Co-authored-by: Kayla Reopelle <87386821+kaylareopelle@users.noreply.github.com> * Update metrics_sdk/lib/opentelemetry/sdk/metrics/instrument/gauge.rb Co-authored-by: Kayla Reopelle <87386821+kaylareopelle@users.noreply.github.com> * Update metrics_sdk/lib/opentelemetry/sdk/metrics/instrument/gauge.rb Co-authored-by: Kayla Reopelle <87386821+kaylareopelle@users.noreply.github.com> * create gauge api doc * change aggr to last value and update test * Update metrics_sdk/lib/opentelemetry/sdk/metrics/instrument/gauge.rb Co-authored-by: Kayla Reopelle <87386821+kaylareopelle@users.noreply.github.com> * update test name --------- Co-authored-by: Kayla Reopelle <87386821+kaylareopelle@users.noreply.github.com>
- Loading branch information
1 parent
8c7d016
commit bb51595
Showing
9 changed files
with
155 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
# frozen_string_literal: true | ||
|
||
# Copyright The OpenTelemetry Authors | ||
# | ||
# SPDX-License-Identifier: Apache-2.0 | ||
|
||
module OpenTelemetry | ||
module Metrics | ||
module Instrument | ||
# No-op implementation of Gauge. | ||
class Gauge | ||
# Record the current value for the Gauge | ||
# | ||
# @param [Numeric] amount The current absolute value. | ||
# @param [Hash{String => String, Numeric, Boolean, Array<String, Numeric, Boolean>}] attributes | ||
# Values must be non-nil and (array of) string, boolean or numeric type. | ||
# Array values must not contain nil elements and all elements must be of | ||
# the same basic type (string, numeric, boolean). | ||
def record(amount, attributes: {}); end | ||
end | ||
end | ||
end | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
47 changes: 47 additions & 0 deletions
47
metrics_sdk/lib/opentelemetry/sdk/metrics/instrument/gauge.rb
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,47 @@ | ||
# frozen_string_literal: true | ||
|
||
# Copyright The OpenTelemetry Authors | ||
# | ||
# SPDX-License-Identifier: Apache-2.0 | ||
|
||
module OpenTelemetry | ||
module SDK | ||
module Metrics | ||
module Instrument | ||
# {Gauge} is the SDK implementation of {OpenTelemetry::Metrics::Gauge}. | ||
class Gauge < OpenTelemetry::SDK::Metrics::Instrument::SynchronousInstrument | ||
# Returns the instrument kind as a Symbol | ||
# | ||
# @return [Symbol] | ||
def instrument_kind | ||
:gauge | ||
end | ||
|
||
# Record the absolute value of the Gauge. | ||
# | ||
# @param [numeric] value The current absolute value. | ||
# @param [Hash{String => String, Numeric, Boolean, Array<String, Numeric, Boolean>}] attributes | ||
# Values must be non-nil and (array of) string, boolean or numeric type. | ||
# Array values must not contain nil elements and all elements must be of | ||
# the same basic type (string, numeric, boolean). | ||
def record(value, attributes: {}) | ||
# TODO: When the metrics SDK stabilizes and is merged into the main SDK, | ||
# we can leverage the SDK Internal validation classes to enforce this: | ||
# https://github.com/open-telemetry/opentelemetry-ruby/blob/6bec625ef49004f364457c26263df421526b60d6/sdk/lib/opentelemetry/sdk/internal.rb#L47 | ||
update(value, attributes) | ||
nil | ||
rescue StandardError => e | ||
OpenTelemetry.handle_error(exception: e) | ||
nil | ||
end | ||
|
||
private | ||
|
||
def default_aggregation | ||
OpenTelemetry::SDK::Metrics::Aggregation::LastValue.new | ||
end | ||
end | ||
end | ||
end | ||
end | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
58 changes: 58 additions & 0 deletions
58
metrics_sdk/test/opentelemetry/sdk/metrics/instrument/gauge_test.rb
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,58 @@ | ||
# frozen_string_literal: true | ||
|
||
# Copyright The OpenTelemetry Authors | ||
# | ||
# SPDX-License-Identifier: Apache-2.0 | ||
|
||
require 'test_helper' | ||
|
||
describe OpenTelemetry::SDK::Metrics::Instrument::Gauge do | ||
let(:metric_exporter) { OpenTelemetry::SDK::Metrics::Export::InMemoryMetricPullExporter.new } | ||
let(:meter) { OpenTelemetry.meter_provider.meter('test') } | ||
let(:gauge) { meter.create_gauge('gauge', unit: 'smidgen', description: 'a small amount of something') } | ||
|
||
before do | ||
reset_metrics_sdk | ||
OpenTelemetry::SDK.configure | ||
OpenTelemetry.meter_provider.add_metric_reader(metric_exporter) | ||
end | ||
|
||
it 'gauge should count -2' do | ||
gauge.record(-2, attributes: { 'foo' => 'bar' }) | ||
metric_exporter.pull | ||
last_snapshot = metric_exporter.metric_snapshots | ||
|
||
_(last_snapshot[0].name).must_equal('gauge') | ||
_(last_snapshot[0].unit).must_equal('smidgen') | ||
_(last_snapshot[0].description).must_equal('a small amount of something') | ||
_(last_snapshot[0].instrumentation_scope.name).must_equal('test') | ||
_(last_snapshot[0].data_points[0].attributes).must_equal('foo' => 'bar') | ||
_(last_snapshot[0].data_points[0].value).must_equal(-2) | ||
_(last_snapshot[0].aggregation_temporality).must_equal(:delta) | ||
end | ||
|
||
it 'gauge should count 1 for last recording' do | ||
gauge.record(-2, attributes: { 'foo' => 'bar' }) | ||
gauge.record(1, attributes: { 'foo' => 'bar' }) | ||
metric_exporter.pull | ||
last_snapshot = metric_exporter.metric_snapshots | ||
|
||
_(last_snapshot.size).must_equal(1) | ||
_(last_snapshot[0].data_points.size).must_equal(1) | ||
_(last_snapshot[0].data_points[0].value).must_equal(1) | ||
end | ||
|
||
it 'separate gauge should record their own last value' do | ||
gauge.record(-2, attributes: { 'foo' => 'bar' }) | ||
gauge.record(1, attributes: { 'foo' => 'bar' }) | ||
gauge2 = meter.create_gauge('gauge2', unit: 'smidgen', description: 'a small amount of something') | ||
gauge2.record(10, attributes: {}) | ||
|
||
metric_exporter.pull | ||
last_snapshot = metric_exporter.metric_snapshots | ||
|
||
_(last_snapshot.size).must_equal(2) | ||
_(last_snapshot[0].data_points[0].value).must_equal(1) | ||
_(last_snapshot[1].data_points[0].value).must_equal(10) | ||
end | ||
end |