1234567891011121314151617181920212223242526272829303132333435363738 |
- package metricdata
- import (
- "time"
- )
- const (
- AttachmentKeySpanContext = "SpanContext"
- )
- type Exemplar struct {
- Value float64
- Timestamp time.Time
- Attachments Attachments
- }
- type Attachments map[string]interface{}
|