File tree Expand file tree Collapse file tree
src/main/java/com/datadog/api/client/v1/model Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -3257,6 +3257,7 @@ components:
32573257 - incident_analytics
32583258 - product_analytics
32593259 - on_call_events
3260+ - errors
32603261 example: "logs"
32613262 type: string
32623263 x-enum-varnames:
@@ -3273,6 +3274,7 @@ components:
32733274 - INCIDENT_ANALYTICS
32743275 - PRODUCT_ANALYTICS
32753276 - ON_CALL_EVENTS
3277+ - ERRORS
32763278 FormulaAndFunctionMetricAggregation:
32773279 description: The aggregation methods available for metrics queries.
32783280 enum:
Original file line number Diff line number Diff line change @@ -38,7 +38,8 @@ public class FormulaAndFunctionEventsDataSource extends ModelEnum<String> {
3838 "ci_pipelines" ,
3939 "incident_analytics" ,
4040 "product_analytics" ,
41- "on_call_events" ));
41+ "on_call_events" ,
42+ "errors" ));
4243
4344 public static final FormulaAndFunctionEventsDataSource LOGS =
4445 new FormulaAndFunctionEventsDataSource ("logs" );
@@ -66,6 +67,8 @@ public class FormulaAndFunctionEventsDataSource extends ModelEnum<String> {
6667 new FormulaAndFunctionEventsDataSource ("product_analytics" );
6768 public static final FormulaAndFunctionEventsDataSource ON_CALL_EVENTS =
6869 new FormulaAndFunctionEventsDataSource ("on_call_events" );
70+ public static final FormulaAndFunctionEventsDataSource ERRORS =
71+ new FormulaAndFunctionEventsDataSource ("errors" );
6972
7073 FormulaAndFunctionEventsDataSource (String value ) {
7174 super (value , allowedValues );
You can’t perform that action at this time.
0 commit comments