(value: number, attributes?: Attributes)
| 269 | function createCaptureMeter(captureId: string): Meter { |
| 270 | const histogram = (name: string, options?: MetricOptions): Histogram => ({ |
| 271 | record(value: number, attributes?: Attributes) { |
| 272 | recordOtelHistogram(captureId, { |
| 273 | name, |
| 274 | value, |
| 275 | attributes, |
| 276 | unit: options?.unit, |
| 277 | }) |
| 278 | }, |
| 279 | }) |
| 280 | return { |
| 281 | createHistogram: histogram, |
nothing calls this directly
no test coverage detected