Skip to content

Commit 66168ec

Browse files
author
ci.datadog-api-spec
committed
Regenerate client from commit 3c0d9e0 of spec repo
1 parent 168be19 commit 66168ec

File tree

31 files changed

+1606
-385
lines changed

31 files changed

+1606
-385
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.4.1.dev11",
7-
"regenerated": "2021-09-10 14:42:44.740290",
8-
"spec_repo_commit": "028f995"
7+
"regenerated": "2021-09-10 21:15:03.929342",
8+
"spec_repo_commit": "3c0d9e0"
99
},
1010
"v2": {
1111
"apigentools_version": "1.4.1.dev11",
12-
"regenerated": "2021-09-10 14:43:16.637676",
13-
"spec_repo_commit": "028f995"
12+
"regenerated": "2021-09-10 21:15:38.408581",
13+
"spec_repo_commit": "3c0d9e0"
1414
}
1515
}
1616
}

api/v1/datadog/.openapi-generator/FILES

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -126,6 +126,9 @@ docs/EventStreamWidgetDefinitionType.md
126126
docs/EventTimelineWidgetDefinition.md
127127
docs/EventTimelineWidgetDefinitionType.md
128128
docs/EventsApi.md
129+
docs/FormulaAndFunctionApmDependencyStatsDataSource.md
130+
docs/FormulaAndFunctionApmDependencyStatsDataSourceStat.md
131+
docs/FormulaAndFunctionApmDependencyStatsQueryDefinition.md
129132
docs/FormulaAndFunctionEventAggregation.md
130133
docs/FormulaAndFunctionEventQueryDefinition.md
131134
docs/FormulaAndFunctionEventQueryDefinitionCompute.md
@@ -760,6 +763,9 @@ model_event_stream_widget_definition.go
760763
model_event_stream_widget_definition_type.go
761764
model_event_timeline_widget_definition.go
762765
model_event_timeline_widget_definition_type.go
766+
model_formula_and_function_apm_dependency_stats_data_source.go
767+
model_formula_and_function_apm_dependency_stats_data_source_stat.go
768+
model_formula_and_function_apm_dependency_stats_query_definition.go
763769
model_formula_and_function_event_aggregation.go
764770
model_formula_and_function_event_query_definition.go
765771
model_formula_and_function_event_query_definition_compute.go

api/v1/datadog/README.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -368,6 +368,9 @@ Class | Method | HTTP request | Description
368368
- [EventStreamWidgetDefinitionType](docs/EventStreamWidgetDefinitionType.md)
369369
- [EventTimelineWidgetDefinition](docs/EventTimelineWidgetDefinition.md)
370370
- [EventTimelineWidgetDefinitionType](docs/EventTimelineWidgetDefinitionType.md)
371+
- [FormulaAndFunctionApmDependencyStatsDataSource](docs/FormulaAndFunctionApmDependencyStatsDataSource.md)
372+
- [FormulaAndFunctionApmDependencyStatsDataSourceStat](docs/FormulaAndFunctionApmDependencyStatsDataSourceStat.md)
373+
- [FormulaAndFunctionApmDependencyStatsQueryDefinition](docs/FormulaAndFunctionApmDependencyStatsQueryDefinition.md)
371374
- [FormulaAndFunctionEventAggregation](docs/FormulaAndFunctionEventAggregation.md)
372375
- [FormulaAndFunctionEventQueryDefinition](docs/FormulaAndFunctionEventQueryDefinition.md)
373376
- [FormulaAndFunctionEventQueryDefinitionCompute](docs/FormulaAndFunctionEventQueryDefinitionCompute.md)

api/v1/datadog/api/openapi.yaml

Lines changed: 77 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13025,6 +13025,82 @@ components:
1302513025
type: string
1302613026
x-enum-varnames:
1302713027
- EVENT_TIMELINE
13028+
FormulaAndFunctionApmDependencyStatsDataSource:
13029+
description: Data source for APM dependency stats queries.
13030+
enum:
13031+
- apm_dependency_stats
13032+
example: apm_dependency_stats
13033+
type: string
13034+
x-enum-varnames:
13035+
- APM_DEPENDENCY_STATS
13036+
FormulaAndFunctionApmDependencyStatsDataSourceStat:
13037+
description: APM statistic.
13038+
enum:
13039+
- avg_duration
13040+
- avg_root_duration
13041+
- avg_spans_per_trace
13042+
- error_rate
13043+
- pct_exec_time
13044+
- pct_of_traces
13045+
- total_traces_count
13046+
example: avg_duration
13047+
type: string
13048+
x-enum-varnames:
13049+
- AVG_DURATION
13050+
- AVG_ROOT_DURATION
13051+
- AVG_SPANS_PER_TRACE
13052+
- ERROR_RATE
13053+
- PCT_EXEC_TIME
13054+
- PCT_OF_TRACES
13055+
- TOTAL_TRACES_COUNT
13056+
FormulaAndFunctionApmDependencyStatsQueryDefinition:
13057+
description: A formula and functions APM dependency stats query.
13058+
properties:
13059+
data_source:
13060+
$ref: '#/components/schemas/FormulaAndFunctionApmDependencyStatsDataSource'
13061+
env:
13062+
description: APM environment.
13063+
example: staging
13064+
type: string
13065+
is_upstream:
13066+
description: Determines whether stats for upstream or downstream dependencies
13067+
should be queried.
13068+
example: false
13069+
type: boolean
13070+
name:
13071+
description: Name of query to use in formulas.
13072+
example: query_errors
13073+
type: string
13074+
operation_name:
13075+
description: Name of operation on service.
13076+
example: cassandra.query
13077+
type: string
13078+
primary_tag_name:
13079+
description: APM tag.
13080+
example: datacenter
13081+
type: string
13082+
primary_tag_value:
13083+
description: APM tag value.
13084+
example: staging
13085+
type: string
13086+
resource_name:
13087+
description: APM resource.
13088+
example: DELETE FROM foo WHERE baz = ?
13089+
type: string
13090+
service:
13091+
description: APM service.
13092+
example: cassandra
13093+
type: string
13094+
stat:
13095+
$ref: '#/components/schemas/FormulaAndFunctionApmDependencyStatsDataSourceStat'
13096+
required:
13097+
- data_source
13098+
- env
13099+
- operation_name
13100+
- resource_name
13101+
- service
13102+
- stat
13103+
type: object
1302813104
FormulaAndFunctionEventAggregation:
1302913105
description: Aggregation methods for event platform queries.
1303013106
enum:
@@ -13235,6 +13311,7 @@ components:
1323513311
- $ref: '#/components/schemas/FormulaAndFunctionMetricQueryDefinition'
1323613312
- $ref: '#/components/schemas/FormulaAndFunctionEventQueryDefinition'
1323713313
- $ref: '#/components/schemas/FormulaAndFunctionProcessQueryDefinition'
13314+
- $ref: '#/components/schemas/FormulaAndFunctionApmDependencyStatsQueryDefinition'
1323813315
type: object
1323913316
FormulaAndFunctionResponseFormat:
1324013317
description: Timeseries or Scalar response. **This feature is currently in beta.**
Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
# FormulaAndFunctionApmDependencyStatsDataSource
2+
3+
## Enum
4+
5+
6+
* `APM_DEPENDENCY_STATS` (value: `"apm_dependency_stats"`)
7+
8+
9+
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
10+
11+
Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
# FormulaAndFunctionApmDependencyStatsDataSourceStat
2+
3+
## Enum
4+
5+
6+
* `AVG_DURATION` (value: `"avg_duration"`)
7+
8+
* `AVG_ROOT_DURATION` (value: `"avg_root_duration"`)
9+
10+
* `AVG_SPANS_PER_TRACE` (value: `"avg_spans_per_trace"`)
11+
12+
* `ERROR_RATE` (value: `"error_rate"`)
13+
14+
* `PCT_EXEC_TIME` (value: `"pct_exec_time"`)
15+
16+
* `PCT_OF_TRACES` (value: `"pct_of_traces"`)
17+
18+
* `TOTAL_TRACES_COUNT` (value: `"total_traces_count"`)
19+
20+
21+
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
22+
23+

0 commit comments

Comments
 (0)