tracer: add labels method

Signed-off-by: Vasiliy Tolstov <v.tolstov@unistack.org>
This commit is contained in:
2022-12-24 19:20:22 +03:00
parent b48faa3b2b
commit a81649d2a2
2 changed files with 6 additions and 0 deletions

View File

@@ -31,4 +31,6 @@ type Span interface {
SetName(name string)
// SetLabels set the span labels
SetLabels(labels ...interface{})
// AddLabels append the span labels
AddLabels(labels ...interface{})
}