tracer: add span kind

Signed-off-by: Vasiliy Tolstov <v.tolstov@unistack.org>
This commit is contained in:
2023-01-18 00:21:18 +03:00
parent 6f17fd891a
commit f59023d741
3 changed files with 76 additions and 3 deletions

View File

@@ -33,4 +33,6 @@ type Span interface {
SetLabels(labels ...interface{})
// AddLabels append the span labels
AddLabels(labels ...interface{})
// Kind returns span kind
Kind() SpanKind
}