import * as $dara from '@darabonba/typescript'; export declare class QueryMetricByPageRequestFilters extends $dara.Model { /** * @remarks * The key of the filter condition. You must set the key to `pid` or `regionId`. * * @example * pid */ key?: string; /** * @remarks * The value of the filter condition. You must set the value of the `pid` or `regionId` condition. For information about how to obtain the `pid`, see the "Obtain the PID of an application" section. * * @example * xxx@74xxx */ value?: string; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); } export declare class QueryMetricByPageRequest extends $dara.Model { /** * @remarks * The page number. Default value: `1`. * * @example * 1 */ currentPage?: number; /** * @remarks * Custom filter conditions. */ customFilters?: string[]; /** * @remarks * The dimensions of the metric that you want to query. * * @example * ["detector_browser","detector_device"] */ dimensions?: string[]; /** * @remarks * The end of the time range to query. Unit: milliseconds. * * This parameter is required. * * @example * 1667546895000 */ endTime?: number; /** * @remarks * The filter conditions. */ filters?: QueryMetricByPageRequestFilters[]; /** * @remarks * The time interval at which you want to query metric data. Unit: milliseconds. Minimum value: 60000. * * @example * 100000 */ intervalInSec?: number; /** * @remarks * The measures of the metric that you want to query. * * @example * pv */ measures?: string[]; /** * @remarks * The metric that you want to query. You cannot specify a custom metric. For more information, see the "Application monitoring metrics that can be queried" section. * * This parameter is required. * * @example * appstat.host */ metric?: string; /** * @remarks * The order in which measures are sorted. Valid values: * * * `ASC`: ascending order * * `DESC`: descending order * * > If you do not specify the parameter, data is not sorted. * * @example * ASC */ order?: string; /** * @remarks * The dimension for arranging metrics in sequence. For more information, see the supplementary metrics. * * @example * pid */ orderBy?: string; /** * @remarks * This parameter is no longer supported. The number of entries per page. * * @example * 10 */ pageSize?: number; /** * @remarks * The start of the time range to query. Unit: milliseconds. * * This parameter is required. * * @example * 1667287695000 */ startTime?: number; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); }