Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Validate instrument names when creating them #4210

Merged
merged 19 commits into from
Jun 9, 2023
Merged
Show file tree
Hide file tree
Changes from 12 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.htm

- Starting from `v1.21.0` of semantic conventions, `go.opentelemetry.io/otel/semconv/{version}/httpconv` and `go.opentelemetry.io/otel/semconv/{version}/netconv` packages will no longer be published. (#4145)
- Log duplicate instrument conflict at a warning level instead of info in `go.opentelemetry.io/otel/sdk/metric`. (#4202)
- Reject the creation of new instruments if their name doesn't pass regexp validation. (#4210)
dmathieu marked this conversation as resolved.
Show resolved Hide resolved

## [1.16.0/0.39.0] 2023-05-18

Expand Down
2 changes: 1 addition & 1 deletion exporters/prometheus/exporter_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -154,7 +154,7 @@ func TestPrometheusExporter(t *testing.T) {
gauge.Add(ctx, 100, opt)

counter, err := meter.Float64Counter("0invalid.counter.name", otelmetric.WithDescription("a counter with an invalid name"))
require.NoError(t, err)
require.Equal(t, err, metric.ErrInvalidInstrumentName)
counter.Add(ctx, 100, opt)

histogram, err := meter.Float64Histogram("invalid.hist.name", otelmetric.WithDescription("a histogram with an invalid name"))
Expand Down
68 changes: 52 additions & 16 deletions sdk/metric/meter.go
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@
"context"
"errors"
"fmt"
"regexp"

"go.opentelemetry.io/otel/internal/global"
"go.opentelemetry.io/otel/metric"
Expand All @@ -26,6 +27,14 @@
"go.opentelemetry.io/otel/sdk/metric/internal"
)

var (
instrumentNameRe = regexp.MustCompile(`^([A-Za-z]){1}([A-Za-z0-9\_\-\.]){0,62}$`)

// ErrInvalidInstrumentName indicates the created instrument has an invalid name.
// Valid names must consist of 63 or fewer characters including alphanumeric, _, ., -, and start with a letter.
ErrInvalidInstrumentName = errors.New("invalid instrument name")
dmathieu marked this conversation as resolved.
Show resolved Hide resolved
)

// meter handles the creation and coordination of all metric instruments. A
// meter represents a single instrumentation scope; all metric telemetry
// produced by an instrumentation scope will use metric instruments from a
Expand Down Expand Up @@ -91,11 +100,11 @@
const kind = InstrumentKindObservableCounter
p := int64ObservProvider{m.int64IP}
inst, err := p.lookup(kind, name, cfg.Description(), cfg.Unit())
if err != nil {
if err != nil && err != ErrInvalidInstrumentName {
return nil, err
}
p.registerCallbacks(inst, cfg.Callbacks())
return inst, nil
return inst, err
}

// Int64ObservableUpDownCounter returns a new instrument identified by name and
Expand All @@ -106,11 +115,11 @@
const kind = InstrumentKindObservableUpDownCounter
p := int64ObservProvider{m.int64IP}
inst, err := p.lookup(kind, name, cfg.Description(), cfg.Unit())
if err != nil {
if err != nil && err != ErrInvalidInstrumentName {
return nil, err
}
p.registerCallbacks(inst, cfg.Callbacks())
return inst, nil
return inst, err
}

// Int64ObservableGauge returns a new instrument identified by name and
Expand All @@ -121,11 +130,11 @@
const kind = InstrumentKindObservableGauge
p := int64ObservProvider{m.int64IP}
inst, err := p.lookup(kind, name, cfg.Description(), cfg.Unit())
if err != nil {
if err != nil && err != ErrInvalidInstrumentName {
return nil, err
}
p.registerCallbacks(inst, cfg.Callbacks())
return inst, nil
return inst, err
}

// Float64Counter returns a new instrument identified by name and configured
Expand Down Expand Up @@ -163,11 +172,11 @@
const kind = InstrumentKindObservableCounter
p := float64ObservProvider{m.float64IP}
inst, err := p.lookup(kind, name, cfg.Description(), cfg.Unit())
if err != nil {
if err != nil && err != ErrInvalidInstrumentName {
return nil, err
}
p.registerCallbacks(inst, cfg.Callbacks())
return inst, nil
return inst, err
}

// Float64ObservableUpDownCounter returns a new instrument identified by name
Expand All @@ -178,11 +187,11 @@
const kind = InstrumentKindObservableUpDownCounter
p := float64ObservProvider{m.float64IP}
inst, err := p.lookup(kind, name, cfg.Description(), cfg.Unit())
if err != nil {
if err != nil && err != ErrInvalidInstrumentName {
return nil, err
}
p.registerCallbacks(inst, cfg.Callbacks())
return inst, nil
return inst, err
}

// Float64ObservableGauge returns a new instrument identified by name and
Expand All @@ -193,11 +202,18 @@
const kind = InstrumentKindObservableGauge
p := float64ObservProvider{m.float64IP}
inst, err := p.lookup(kind, name, cfg.Description(), cfg.Unit())
if err != nil {
if err != nil && err != ErrInvalidInstrumentName {
return nil, err
}
p.registerCallbacks(inst, cfg.Callbacks())
return inst, nil
return inst, err
}

func validateInstrumentName(name string) error {
if !instrumentNameRe.MatchString(name) {
return ErrInvalidInstrumentName
}
return nil
}
dmathieu marked this conversation as resolved.
Show resolved Hide resolved

// RegisterCallback registers f to be called each collection cycle so it will
Expand Down Expand Up @@ -392,7 +408,12 @@
// lookup returns the resolved instrumentImpl.
func (p *int64InstProvider) lookup(kind InstrumentKind, name, desc, u string) (*int64Inst, error) {
aggs, err := p.aggs(kind, name, desc, u)
return &int64Inst{aggregators: aggs}, err
inst := &int64Inst{aggregators: aggs}
if err != nil {
return inst, err
}

Check warning on line 414 in sdk/metric/meter.go

View check run for this annotation

Codecov / codecov/patch

sdk/metric/meter.go#L413-L414

Added lines #L413 - L414 were not covered by tests

return inst, validateInstrumentName(name)
}

// float64InstProvider provides float64 OpenTelemetry instruments.
Expand Down Expand Up @@ -420,14 +441,24 @@
// lookup returns the resolved instrumentImpl.
func (p *float64InstProvider) lookup(kind InstrumentKind, name, desc, u string) (*float64Inst, error) {
aggs, err := p.aggs(kind, name, desc, u)
return &float64Inst{aggregators: aggs}, err
inst := &float64Inst{aggregators: aggs}
if err != nil {
return inst, err
}

Check warning on line 447 in sdk/metric/meter.go

View check run for this annotation

Codecov / codecov/patch

sdk/metric/meter.go#L446-L447

Added lines #L446 - L447 were not covered by tests

return inst, validateInstrumentName(name)
}

type int64ObservProvider struct{ *int64InstProvider }

func (p int64ObservProvider) lookup(kind InstrumentKind, name, desc, u string) (int64Observable, error) {
aggs, err := p.aggs(kind, name, desc, u)
return newInt64Observable(p.scope, kind, name, desc, u, aggs), err
inst := newInt64Observable(p.scope, kind, name, desc, u, aggs)
if err != nil {
return inst, err
}

Check warning on line 459 in sdk/metric/meter.go

View check run for this annotation

Codecov / codecov/patch

sdk/metric/meter.go#L458-L459

Added lines #L458 - L459 were not covered by tests

return inst, validateInstrumentName(name)
}

func (p int64ObservProvider) registerCallbacks(inst int64Observable, cBacks []metric.Int64Callback) {
Expand Down Expand Up @@ -460,7 +491,12 @@

func (p float64ObservProvider) lookup(kind InstrumentKind, name, desc, u string) (float64Observable, error) {
aggs, err := p.aggs(kind, name, desc, u)
return newFloat64Observable(p.scope, kind, name, desc, u, aggs), err
inst := newFloat64Observable(p.scope, kind, name, desc, u, aggs)
if err != nil {
return inst, err
}

Check warning on line 497 in sdk/metric/meter.go

View check run for this annotation

Codecov / codecov/patch

sdk/metric/meter.go#L496-L497

Added lines #L496 - L497 were not covered by tests

return inst, validateInstrumentName(name)
}

func (p float64ObservProvider) registerCallbacks(inst float64Observable, cBacks []metric.Float64Callback) {
Expand Down
Loading