SetAttributes sets kv as attributes of the span.
(kv ...attribute.KeyValue)
| 109 | |
| 110 | // SetAttributes sets kv as attributes of the span. |
| 111 | func (s *Span) SetAttributes(kv ...attribute.KeyValue) { |
| 112 | s.otelSpan.SetAttributes(kv...) |
| 113 | } |
| 114 | |
| 115 | const spanDelimiter = "." |
| 116 |
no outgoing calls
no test coverage detected