Variable getMonitorInformationResponseSchemaConst
getMonitorInformationResponseSchema: ZodObject<
{
data: ZodArray<
ZodObject<
{
available_aggregate_functions: ZodArray<
ZodEnum<
{
avg: "avg";
increase: "increase";
max: "max";
min: "min";
rate: "rate";
sum: "sum";
},
>,
>;
dimensions: ZodArray<
ZodObject<
{
dimension_label: ZodString;
label: ZodString;
values: ZodArray<ZodString>;
},
$strip,
>,
>;
is_alertable: ZodBoolean;
label: ZodString;
metric: ZodString;
metric_type: ZodEnum<
{
counter: "counter";
gauge: "gauge";
histogram: "histogram";
summary: "summary";
},
>;
scrape_interval: ZodString;
unit: ZodEnum<
{
"%": "%";
bps: "bps";
Bps: "Bps";
Bytes: "Bytes";
GB: "GB";
IOPS: "IOPS";
KB: "KB";
MB: "MB";
msec: "msec";
OPS: "OPS";
percentile: "percentile";
rate: "rate";
ratio: "ratio";
sec: "sec";
},
>;
},
$strip,
>,
>;
page: ZodInt;
pages: ZodInt;
results: ZodInt;
},
$strip,
> = ...
Returns a paginated list of metric information.