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
4 changes: 2 additions & 2 deletions .generated-info
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{
"spec_repo_commit": "ef70ddf",
"generated": "2025-07-17 17:28:36.058"
"spec_repo_commit": "f2ae7eb",
"generated": "2025-07-17 19:54:51.613"
}
2 changes: 2 additions & 0 deletions .generator/schemas/v2/openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15479,11 +15479,13 @@ components:
enum:
- logs
- rum
- dora
example: logs
type: string
x-enum-varnames:
- LOGS
- RUM
- DORA
EventsGroupBy:
description: A dimension on which to split a query's results.
properties:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,10 +23,11 @@
public class EventsDataSource extends ModelEnum<String> {

private static final Set<String> allowedValues =
new HashSet<String>(Arrays.asList("logs", "rum"));
new HashSet<String>(Arrays.asList("logs", "rum", "dora"));

public static final EventsDataSource LOGS = new EventsDataSource("logs");
public static final EventsDataSource RUM = new EventsDataSource("rum");
public static final EventsDataSource DORA = new EventsDataSource("dora");

EventsDataSource(String value) {
super(value, allowedValues);
Expand Down