address feedback

This commit is contained in:
Dinesh Yeduguru 2025-03-06 10:15:25 -08:00 committed by Ashwin Bharambe
parent 3a82b57a26
commit 7073efede5
3 changed files with 41 additions and 524 deletions

View file

@ -229,7 +229,7 @@ class MetricLabel(BaseModel):
@json_schema_type
class MetricDataPoint(BaseModel):
timestamp: datetime
timestamp: int
value: float
@ -295,7 +295,7 @@ class Telemetry(Protocol):
metric_name: str,
start_time: int,
end_time: int | None = None,
step: str | None = "1d",
granularity: str | None = "1d",
query_type: MetricQueryType = MetricQueryType.RANGE,
label_matchers: list[MetricLabelMatcher] | None = None,
) -> GetMetricsResponse: ...