Skip to content

Commit 9b9ea4b

Browse files
api-clients-generation-pipeline[bot]ci.datadog-api-spec
andauthored
Add link to docs for span search syntax (#1686)
Co-authored-by: ci.datadog-api-spec <[email protected]>
1 parent 93dc1a6 commit 9b9ea4b

File tree

4 files changed

+8
-8
lines changed

4 files changed

+8
-8
lines changed

.apigentools-info

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,13 +4,13 @@
44
"spec_versions": {
55
"v1": {
66
"apigentools_version": "1.6.6",
7-
"regenerated": "2023-09-26 12:21:39.654859",
8-
"spec_repo_commit": "c1694968"
7+
"regenerated": "2023-09-26 14:16:56.606228",
8+
"spec_repo_commit": "0270a00c"
99
},
1010
"v2": {
1111
"apigentools_version": "1.6.6",
12-
"regenerated": "2023-09-26 12:21:39.686082",
13-
"spec_repo_commit": "c1694968"
12+
"regenerated": "2023-09-26 14:16:56.667024",
13+
"spec_repo_commit": "0270a00c"
1414
}
1515
}
1616
}

.generator/schemas/v2/openapi.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15742,7 +15742,7 @@ components:
1574215742
description: The spans filter used to index spans.
1574315743
properties:
1574415744
query:
15745-
description: The search query - following the span search syntax.
15745+
description: The search query - following the [span search syntax](https://docs.datadoghq.com/tracing/trace_explorer/query_syntax/).
1574615746
example: '@http.status_code:200 service:my-service'
1574715747
type: string
1574815748
type: object
@@ -15751,7 +15751,7 @@ components:
1575115751
stored.
1575215752
properties:
1575315753
query:
15754-
description: The search query - following the span search syntax.
15754+
description: The search query - following the [span search syntax](https://docs.datadoghq.com/tracing/trace_explorer/query_syntax/).
1575515755
example: '@http.status_code:200 service:my-service'
1575615756
type: string
1575715757
required:

src/datadog_api_client/v2/model/spans_filter.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ def __init__(self_, query: Union[str, UnsetType] = unset, **kwargs):
2828
"""
2929
The spans filter used to index spans.
3030
31-
:param query: The search query - following the span search syntax.
31+
:param query: The search query - following the `span search syntax <https://docs.datadoghq.com/tracing/trace_explorer/query_syntax/>`_.
3232
:type query: str, optional
3333
"""
3434
if query is not unset:

src/datadog_api_client/v2/model/spans_filter_create.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ def __init__(self_, query: str, **kwargs):
2525
"""
2626
The spans filter. Spans matching this filter will be indexed and stored.
2727
28-
:param query: The search query - following the span search syntax.
28+
:param query: The search query - following the `span search syntax <https://docs.datadoghq.com/tracing/trace_explorer/query_syntax/>`_.
2929
:type query: str
3030
"""
3131
super().__init__(kwargs)

0 commit comments

Comments
 (0)