(
options: {
readonly name: string
readonly maxAge: Duration.DurationInput
readonly maxSize: number
readonly error: number
readonly quantiles: ReadonlyArray<number>
readonly description?: string | undefined
}
)
| 276 | |
| 277 | /** @internal */ |
| 278 | export const summaryTimestamp = ( |
| 279 | options: { |
| 280 | readonly name: string |
| 281 | readonly maxAge: Duration.DurationInput |
| 282 | readonly maxSize: number |
| 283 | readonly error: number |
| 284 | readonly quantiles: ReadonlyArray<number> |
| 285 | readonly description?: string | undefined |
| 286 | } |
| 287 | ): Metric.Metric.Summary<readonly [value: number, timestamp: number]> => fromMetricKey(metricKey.summary(options)) |
| 288 | |
| 289 | /** @internal */ |
| 290 | export const tagged = dual< |
no test coverage detected