Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 5 additions & 2 deletions packages/clients/src/api/cockpit/v1beta1/types.gen.ts
Original file line number Diff line number Diff line change
Expand Up @@ -162,9 +162,12 @@ export type GetCockpitRequest = {
export type GetCockpitMetricsRequest = {
/** Project ID. */
projectId?: string
/** Start date. */
/**
* Start date. Start date, if omited, query will be instant query and End Date
* will be used as query time.
*/
startDate?: Date
/** End date. */
/** End date. End date, if omited set to now. */
endDate?: Date
/** Metric name. */
metricName?: string
Expand Down