import * as $dara from '@darabonba/typescript'; export declare class SearchTracesResponseBodyTraceInfos extends $dara.Model { /** * @remarks * The amount of time consumed by the trace. Unit: milliseconds. * * @example * 6 */ duration?: number; /** * @remarks * The name of the traced span. * * @example * get*** */ operationName?: string; /** * @remarks * The IP address of the host where the application resides. * * @example * ``172.20.**.**`` */ serviceIp?: string; /** * @remarks * The name of the application. * * @example * arms-k8s-demo-subcomponent */ serviceName?: string; /** * @remarks * Span ID. You can get it from the **Trace Explorer** page of the ARMS console. * * @example * be3d6dcf5750e*** */ spanID?: string; /** * @remarks * The timestamp. * * @example * 1595174436993 */ timestamp?: number; /** * @remarks * The trace ID. * * @example * ac1400a115951744369937024d**** */ traceID?: string; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); } export declare class SearchTracesResponseBody extends $dara.Model { /** * @remarks * The request ID. * * @example * 4C518054-852F-4023-ABC1-4AF95FF7**** */ requestId?: string; /** * @remarks * The details of the returned traces. */ traceInfos?: SearchTracesResponseBodyTraceInfos[]; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); }