mirror of
https://github.com/containers/podman.git
synced 2025-12-02 19:28:58 +08:00
build(deps): bump github.com/uber/jaeger-client-go
Bumps [github.com/uber/jaeger-client-go](https://github.com/uber/jaeger-client-go) from 2.20.1+incompatible to 2.22.1+incompatible. - [Release notes](https://github.com/uber/jaeger-client-go/releases) - [Changelog](https://github.com/jaegertracing/jaeger-client-go/blob/master/CHANGELOG.md) - [Commits](https://github.com/uber/jaeger-client-go/compare/v2.20.1...v2.22.1) Signed-off-by: dependabot-preview[bot] <support@dependabot.com> Signed-off-by: Matthew Heon <mheon@redhat.com>
This commit is contained in:
committed by
Matthew Heon
parent
ac3a6b80b0
commit
fd36a33dc3
25
vendor/github.com/uber/jaeger-client-go/internal/reporterstats/stats.go
generated
vendored
Normal file
25
vendor/github.com/uber/jaeger-client-go/internal/reporterstats/stats.go
generated
vendored
Normal file
@@ -0,0 +1,25 @@
|
||||
// Copyright (c) 2020 The Jaeger 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 reporterstats
|
||||
|
||||
// ReporterStats exposes some metrics from the RemoteReporter.
|
||||
type ReporterStats interface {
|
||||
SpansDroppedFromQueue() int64
|
||||
}
|
||||
|
||||
// Receiver can be implemented by a Transport to be given ReporterStats.
|
||||
type Receiver interface {
|
||||
SetReporterStats(ReporterStats)
|
||||
}
|
||||
Reference in New Issue
Block a user