Skip to content
Merged
Show file tree
Hide file tree
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
2 changes: 2 additions & 0 deletions .generator/schemas/v1/openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2884,6 +2884,7 @@ components:
- ci_pipelines
- incident_analytics
- product_analytics
- on_call_events
example: logs
type: string
x-enum-varnames:
Expand All @@ -2899,6 +2900,7 @@ components:
- CI_PIPELINES
- INCIDENT_ANALYTICS
- PRODUCT_ANALYTICS
- ON_CALL_EVENTS
FormulaAndFunctionMetricAggregation:
description: The aggregation methods available for metrics queries.
enum:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ export type FormulaAndFunctionEventsDataSource =
| typeof CI_PIPELINES
| typeof INCIDENT_ANALYTICS
| typeof PRODUCT_ANALYTICS
| typeof ON_CALL_EVENTS
| UnparsedObject;
export const LOGS = "logs";
export const SPANS = "spans";
Expand All @@ -29,3 +30,4 @@ export const CI_TESTS = "ci_tests";
export const CI_PIPELINES = "ci_pipelines";
export const INCIDENT_ANALYTICS = "incident_analytics";
export const PRODUCT_ANALYTICS = "product_analytics";
export const ON_CALL_EVENTS = "on_call_events";
1 change: 1 addition & 0 deletions services/dashboards/src/v1/models/TypingInfo.ts
Original file line number Diff line number Diff line change
Expand Up @@ -235,6 +235,7 @@ export const TypingInfo: ModelTypingInfo = {
"ci_pipelines",
"incident_analytics",
"product_analytics",
"on_call_events",
],
FormulaAndFunctionMetricAggregation: [
"avg",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ export type FormulaAndFunctionEventsDataSource =
| typeof CI_PIPELINES
| typeof INCIDENT_ANALYTICS
| typeof PRODUCT_ANALYTICS
| typeof ON_CALL_EVENTS
| UnparsedObject;
export const LOGS = "logs";
export const SPANS = "spans";
Expand All @@ -29,3 +30,4 @@ export const CI_TESTS = "ci_tests";
export const CI_PIPELINES = "ci_pipelines";
export const INCIDENT_ANALYTICS = "incident_analytics";
export const PRODUCT_ANALYTICS = "product_analytics";
export const ON_CALL_EVENTS = "on_call_events";
1 change: 1 addition & 0 deletions services/notebooks/src/v1/models/TypingInfo.ts
Original file line number Diff line number Diff line change
Expand Up @@ -145,6 +145,7 @@ export const TypingInfo: ModelTypingInfo = {
"ci_pipelines",
"incident_analytics",
"product_analytics",
"on_call_events",
],
FormulaAndFunctionMetricAggregation: [
"avg",
Expand Down
Loading