| 44 | } |
| 45 | |
| 46 | type HistogramBucket struct { |
| 47 | Boundaries int32 |
| 48 | Lower FloatString |
| 49 | Upper FloatString |
| 50 | Count FloatString |
| 51 | } |
| 52 | |
| 53 | func (s HistogramBucket) MarshalJSON() ([]byte, error) { |
| 54 | b, err := json.Marshal(s.Boundaries) |
nothing calls this directly
no outgoing calls
no test coverage detected