We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 79e6760 commit 6c7d2dcCopy full SHA for 6c7d2dc
src/dto/metrics.ts
@@ -3,7 +3,7 @@ import { DTO, Json } from '../types.js'
3
4
export const V1Alpha1MetricsBucketValueSchema = z.object({
5
attributes: z.record(z.any()),
6
- start_time_unix_nano: z.number(),
+ start_time_unix_nano: z.number().nullable(),
7
time_unix_nano: z.number(),
8
count: z.number(),
9
bucket_counts: z.array(z.number()),
@@ -21,7 +21,7 @@ export type V1Alpha1MetricsBucketValue = z.infer<
21
22
export const V1Alpha1MetricsCountValueSchema = z.object({
23
24
25
26
value: z.number(),
27
})
0 commit comments