Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

BasicPerfSampleSeries

import type { BasicPerfSampleSeries } from "https://googleapis.deno.dev/v1/toolresults:v1beta3.ts";

Encapsulates the metadata for basic sample series represented by a line chart

interface BasicPerfSampleSeries {
perfMetricType?:
| "perfMetricTypeUnspecified"
| "memory"
| "cpu"
| "network"
| "graphics";
perfUnit?:
| "perfUnitUnspecified"
| "kibibyte"
| "percent"
| "bytesPerSecond"
| "framesPerSecond"
| "byte";
sampleSeriesLabel?:
| "sampleSeriesTypeUnspecified"
| "memoryRssPrivate"
| "memoryRssShared"
| "memoryRssTotal"
| "memoryTotal"
| "cpuUser"
| "cpuKernel"
| "cpuTotal"
| "ntBytesTransferred"
| "ntBytesReceived"
| "networkSent"
| "networkReceived"
| "graphicsFrameRate";
}

§Properties

§
perfMetricType?: "perfMetricTypeUnspecified" | "memory" | "cpu" | "network" | "graphics"
[src]
§
perfUnit?: "perfUnitUnspecified" | "kibibyte" | "percent" | "bytesPerSecond" | "framesPerSecond" | "byte"
[src]
§
sampleSeriesLabel?: "sampleSeriesTypeUnspecified" | "memoryRssPrivate" | "memoryRssShared" | "memoryRssTotal" | "memoryTotal" | "cpuUser" | "cpuKernel" | "cpuTotal" | "ntBytesTransferred" | "ntBytesReceived" | "networkSent" | "networkReceived" | "graphicsFrameRate"
[src]