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
8 changes: 4 additions & 4 deletions .apigentools-info
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,13 @@
"spec_versions": {
"v1": {
"apigentools_version": "1.6.6",
"regenerated": "2025-01-15 09:47:01.573287",
"spec_repo_commit": "21b02fc5"
"regenerated": "2025-01-15 18:03:24.194069",
"spec_repo_commit": "e54847a1"
},
"v2": {
"apigentools_version": "1.6.6",
"regenerated": "2025-01-15 09:47:01.588355",
"spec_repo_commit": "21b02fc5"
"regenerated": "2025-01-15 18:03:24.208877",
"spec_repo_commit": "e54847a1"
}
}
}
2 changes: 0 additions & 2 deletions .generator/schemas/v1/openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6918,7 +6918,6 @@ components:
- spans
- database_queries
- network
- cost
example: rum
type: string
x-enum-varnames:
Expand All @@ -6931,7 +6930,6 @@ components:
- SPANS
- DATABASE_QUERIES
- NETWORK
- COST
MonitorFormulaAndFunctionQueryDefinition:
description: A formula and function query.
oneOf:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -36,8 +36,7 @@ public class MonitorFormulaAndFunctionEventsDataSource extends ModelEnum<String>
"logs",
"spans",
"database_queries",
"network",
"cost"));
"network"));

public static final MonitorFormulaAndFunctionEventsDataSource RUM =
new MonitorFormulaAndFunctionEventsDataSource("rum");
Expand All @@ -57,8 +56,6 @@ public class MonitorFormulaAndFunctionEventsDataSource extends ModelEnum<String>
new MonitorFormulaAndFunctionEventsDataSource("database_queries");
public static final MonitorFormulaAndFunctionEventsDataSource NETWORK =
new MonitorFormulaAndFunctionEventsDataSource("network");
public static final MonitorFormulaAndFunctionEventsDataSource COST =
new MonitorFormulaAndFunctionEventsDataSource("cost");

MonitorFormulaAndFunctionEventsDataSource(String value) {
super(value, allowedValues);
Expand Down
Loading