mirror of
https://github.com/argoproj/argo-cd
synced 2026-04-22 01:17:16 +00:00
16 lines
232 B
Go
16 lines
232 B
Go
package tracing
|
|
|
|
/*
|
|
Poor Mans OpenTracing.
|
|
|
|
Standardizes logging of operation duration.
|
|
*/
|
|
|
|
type Tracer interface {
|
|
StartSpan(operationName string) Span
|
|
}
|
|
|
|
type Span interface {
|
|
SetBaggageItem(key string, value any)
|
|
Finish()
|
|
}
|