(
options: {
readonly name: string
readonly maxAge: Duration.DurationInput
readonly maxSize: number
readonly error: number
readonly quantiles: ReadonlyArray<number>
readonly description?: string | undefined
}
)
| 264 | |
| 265 | /** @internal */ |
| 266 | export const summary = ( |
| 267 | options: { |
| 268 | readonly name: string |
| 269 | readonly maxAge: Duration.DurationInput |
| 270 | readonly maxSize: number |
| 271 | readonly error: number |
| 272 | readonly quantiles: ReadonlyArray<number> |
| 273 | readonly description?: string | undefined |
| 274 | } |
| 275 | ): Metric.Metric.Summary<number> => withNow(summaryTimestamp(options)) |
| 276 | |
| 277 | /** @internal */ |
| 278 | export const summaryTimestamp = ( |
nothing calls this directly
no test coverage detected