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 #430

Closed
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:25.555961",
"spec_repo_commit": "936a5463"
"regenerated": "2024-12-13 17:54:59.574153",
"spec_repo_commit": "74a8f1e2"
},
"v2": {
"apigentools_version": "1.6.6",
"regenerated": "2024-12-13 16:09:25.575458",
"spec_repo_commit": "936a5463"
"regenerated": "2024-12-13 17:54:59.592674",
"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 src/datadogV2/model/model_events_query_filter.rs
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ pub struct EventsQueryFilter {
/// The minimum time for the requested events. Supports date math and regular timestamps in milliseconds.
#[serde(rename = "from")]
pub from: Option<String>,
/// 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>).
#[serde(rename = "query")]
pub query: Option<String>,
/// The maximum time for the requested events. Supports date math and regular timestamps in milliseconds.
Expand Down
Loading