Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add link to event search syntax docs #2840

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
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": "2024-12-13 16:09:37.316335",
"spec_repo_commit": "936a5463"
"regenerated": "2024-12-13 17:55:07.078663",
"spec_repo_commit": "74a8f1e2"
},
"v2": {
"apigentools_version": "1.6.6",
"regenerated": "2024-12-13 16:09:37.335531",
"spec_repo_commit": "936a5463"
"regenerated": "2024-12-13 17:55:07.098128",
"spec_repo_commit": "74a8f1e2"
}
}
}
2 changes: 1 addition & 1 deletion .generator/schemas/v2/openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10106,7 +10106,7 @@ components:
type: string
query:
default: '*'
description: The search query following the event search syntax.
description: The search query following the [event search syntax](https://docs.datadoghq.com/service_management/events/explorer/searching).
example: service:web* AND @http.status_code:[200 TO 299]
type: string
to:
Expand Down
2 changes: 1 addition & 1 deletion api/datadogV2/model_events_query_filter.go
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ import (
type EventsQueryFilter struct {
// The minimum time for the requested events. Supports date math and regular timestamps in milliseconds.
From *string `json:"from,omitempty"`
// The search query following the event search syntax.
// The search query following the [event search syntax](https://docs.datadoghq.com/service_management/events/explorer/searching).
Query *string `json:"query,omitempty"`
// The maximum time for the requested events. Supports date math and regular timestamps in milliseconds.
To *string `json:"to,omitempty"`
Expand Down
Loading