WithAttributes 设置初始属性
(attrs ...Attribute)
| 92 | |
| 93 | // WithAttributes 设置初始属性 |
| 94 | func WithAttributes(attrs ...Attribute) SpanOption { |
| 95 | return func(c *SpanConfig) { |
| 96 | c.Attributes = append(c.Attributes, attrs...) |
| 97 | } |
| 98 | } |
| 99 | |
| 100 | // WithTimestamp 设置开始时间 |
| 101 | func WithTimestamp(t time.Time) SpanOption { |
no outgoing calls
no test coverage detected