Source File
kind.go
Belonging Package
go.opentelemetry.io/otel/api/metric
package metric
func ( Kind) () bool {
switch {
case CounterKind, UpDownCounterKind, ValueRecorderKind:
return true
}
return false
}
func ( Kind) () bool {
return !.Synchronous()
}
func ( Kind) () bool {
switch {
case CounterKind, UpDownCounterKind, SumObserverKind, UpDownSumObserverKind:
return true
}
return false
}
func ( Kind) () bool {
switch {
case CounterKind, SumObserverKind:
return true
}
return false
}
func ( Kind) () bool {
return .Adding() && .Asynchronous()
![]() |
The pages are generated with Golds v0.3.2-preview. (GOOS=darwin GOARCH=amd64) Golds is a Go 101 project developed by Tapir Liu. PR and bug reports are welcome and can be submitted to the issue list. Please follow @Go100and1 (reachable from the left QR code) to get the latest news of Golds. |