ObservabilityMetricData
import type { ObservabilityMetricData } from "https://googleapis.deno.dev/v1/redis:v1.ts";
interface ObservabilityMetricData {
aggregationType?:
| "AGGREGATION_TYPE_UNSPECIFIED"
| "PEAK"
| "P99"
| "P95"
| "CURRENT";
metricType?:
| "METRIC_TYPE_UNSPECIFIED"
| "CPU_UTILIZATION"
| "MEMORY_UTILIZATION"
| "NETWORK_CONNECTIONS"
| "STORAGE_UTILIZATION"
| "STORAGE_USED_BYTES"
| "NODE_COUNT"
| "MEMORY_USED_BYTES"
| "PROCESSING_UNIT_COUNT";
observationTime?: Date;
resourceName?: string;
value?: TypedValue;
}§Properties
§
aggregationType?: "AGGREGATION_TYPE_UNSPECIFIED" | "PEAK" | "P99" | "P95" | "CURRENT"
[src]Required. Type of aggregation performed on the metric.
§
metricType?: "METRIC_TYPE_UNSPECIFIED" | "CPU_UTILIZATION" | "MEMORY_UTILIZATION" | "NETWORK_CONNECTIONS" | "STORAGE_UTILIZATION" | "STORAGE_USED_BYTES" | "NODE_COUNT" | "MEMORY_USED_BYTES" | "PROCESSING_UNIT_COUNT"
[src]Required. Type of metric like CPU, Memory, etc.
§
resourceName?: string
[src]Required. Database resource name associated with the signal. Resource name to follow CAIS resource_name format as noted here go/condor-common-datamodel
§
value?: TypedValue
[src]Required. Value of the metric type.