@datadog/datadog-api-client
Version:
OpenAPI client for Datadog APIs
79 lines (78 loc) • 2.51 kB
TypeScript
/**
* Unless explicitly stated otherwise all files in this repository are licensed under the Apache-2.0 License.
* This product includes software developed at Datadog (https://www.datadoghq.com/).
* Copyright 2020-Present Datadog, Inc.
*/
import { ApmDependencyStatName } from "./ApmDependencyStatName";
import { ApmDependencyStatsDataSource } from "./ApmDependencyStatsDataSource";
import { AttributeTypeMap } from "../../datadog-api-client-common/util";
/**
* A query for APM dependency statistics between services, such as call latency and error rates.
*/
export declare class ApmDependencyStatsQuery {
/**
* Organization UUIDs to query when using [cross-organization visibility](/account_management/org_settings/cross_org_visibility/). Limited to one organization UUID.
*/
"crossOrgUuids"?: Array<string>;
/**
* A data source for APM dependency statistics queries.
*/
"dataSource": ApmDependencyStatsDataSource;
/**
* The environment to query.
*/
"env": string;
/**
* Determines whether stats for upstream or downstream dependencies should be queried.
*/
"isUpstream"?: boolean;
/**
* The variable name for use in formulas.
*/
"name": string;
/**
* The APM operation name.
*/
"operationName": string;
/**
* The name of the second primary tag used within APM; required when `primary_tag_value` is specified. See https://docs.datadoghq.com/tracing/guide/setting_primary_tags_to_scope/#add-a-second-primary-tag-in-datadog.
*/
"primaryTagName"?: string;
/**
* Filter APM data by the second primary tag. `primary_tag_name` must also be specified.
*/
"primaryTagValue"?: string;
/**
* The resource name to filter by.
*/
"resourceName": string;
/**
* The service name to filter by.
*/
"service": string;
/**
* The APM dependency statistic to query.
*/
"stat": ApmDependencyStatName;
/**
* A container for additional, undeclared properties.
* This is a holder for any undeclared properties as specified with
* the 'additionalProperties' keyword in the OAS document.
*/
"additionalProperties"?: {
[key: string]: any;
};
/**
* @ignore
*/
"_unparsed"?: boolean;
/**
* @ignore
*/
static readonly attributeTypeMap: AttributeTypeMap;
/**
* @ignore
*/
static getAttributeTypeMap(): AttributeTypeMap;
constructor();
}