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 @@ -3303,6 +3303,7 @@ components:
33033303 - product_analytics
33043304 - on_call_events
33053305 - errors
3306+ - llm_observability
33063307 example: "logs"
33073308 type: string
33083309 x-enum-varnames:
@@ -3320,6 +3321,7 @@ components:
33203321 - PRODUCT_ANALYTICS
33213322 - ON_CALL_EVENTS
33223323 - ERRORS
3324+ - LLM_OBSERVABILITY
33233325 FormulaAndFunctionMetricAggregation:
33243326 description: The aggregation methods available for metrics queries.
33253327 enum:
Original file line number Diff line number Diff line change @@ -39,7 +39,8 @@ public class FormulaAndFunctionEventsDataSource extends ModelEnum<String> {
3939 "incident_analytics" ,
4040 "product_analytics" ,
4141 "on_call_events" ,
42- "errors" ));
42+ "errors" ,
43+ "llm_observability" ));
4344
4445 public static final FormulaAndFunctionEventsDataSource LOGS =
4546 new FormulaAndFunctionEventsDataSource ("logs" );
@@ -69,6 +70,8 @@ public class FormulaAndFunctionEventsDataSource extends ModelEnum<String> {
6970 new FormulaAndFunctionEventsDataSource ("on_call_events" );
7071 public static final FormulaAndFunctionEventsDataSource ERRORS =
7172 new FormulaAndFunctionEventsDataSource ("errors" );
73+ public static final FormulaAndFunctionEventsDataSource LLM_OBSERVABILITY =
74+ new FormulaAndFunctionEventsDataSource ("llm_observability" );
7275
7376 FormulaAndFunctionEventsDataSource (String value ) {
7477 super (value , allowedValues );
You can’t perform that action at this time.
0 commit comments