mirror of
https://github.com/ceph/ceph-csi.git
synced 2025-06-14 18:53:35 +00:00
.github
actions
api
assets
charts
cmd
deploy
docs
e2e
examples
internal
scripts
tools
troubleshooting
vendor
github.com
go.opentelemetry.io
contrib
otel
attribute
codes
exporters
internal
metric
global
number
registry
doc.go
registry.go
LICENSE
config.go
doc.go
instrumentkind_string.go
metric.go
metric_instrument.go
metric_noop.go
metric_sdkapi.go
propagation
sdk
semconv
trace
unit
.gitignore
.gitmodules
.golangci.yml
CHANGELOG.md
CODEOWNERS
CONTRIBUTING.md
LICENSE
Makefile
README.md
RELEASING.md
VERSIONING.md
doc.go
error_handler.go
get_main_pkgs.sh
handler.go
pre_release.sh
propagation.go
tag.sh
trace.go
verify_examples.sh
version.go
proto
go.uber.org
golang.org
gomodules.xyz
google.golang.org
gopkg.in
k8s.io
sigs.k8s.io
modules.txt
.commitlintrc.yml
.gitignore
.mergify.yml
.pre-commit-config.yaml
LICENSE
Makefile
README.md
build.env
deploy.sh
go.mod
go.sum
25 lines
1.0 KiB
Go
25 lines
1.0 KiB
Go
![]() |
// Copyright The OpenTelemetry Authors
|
||
|
//
|
||
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
||
|
// you may not use this file except in compliance with the License.
|
||
|
// You may obtain a copy of the License at
|
||
|
//
|
||
|
// http://www.apache.org/licenses/LICENSE-2.0
|
||
|
//
|
||
|
// Unless required by applicable law or agreed to in writing, software
|
||
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
||
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||
|
// See the License for the specific language governing permissions and
|
||
|
// limitations under the License.
|
||
|
|
||
|
/*
|
||
|
Package registry provides a non-standalone implementation of
|
||
|
MeterProvider that adds uniqueness checking for instrument descriptors
|
||
|
on top of other MeterProvider it wraps.
|
||
|
|
||
|
This package is currently in a pre-GA phase. Backwards incompatible changes
|
||
|
may be introduced in subsequent minor version releases as we work to track the
|
||
|
evolving OpenTelemetry specification and user feedback.
|
||
|
*/
|
||
|
package registry // import "go.opentelemetry.io/otel/metric/registry"
|