1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155
|
// Copyright 2024 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
/**
* @fileoverview External interfaces used by chrome://healthd-internals.
*
* See chromeos/ash/services/cros_healthd/public/mojom/cros_healthd_probe.mojom
* for more details.
*/
/**
* `getHealthdTelemetryInfo` battery result.
*/
export interface HealthdApiBatteryResult {
currentNow: number;
voltageNow: number;
chargeNow: number;
}
/**
* `getHealthdTelemetryInfo` battery result.
*/
export interface HealthdApiCpuResult {
architecture: string;
numTotalThreads: string;
physicalCpus: HealthdApiPhysicalCpuResult[];
temperatureChannels: HealthdApiTemperatureChannelResult[];
}
export interface HealthdApiPhysicalCpuResult {
modelName?: string;
logicalCpus: HealthdApiLogicalCpuResult[];
}
export interface HealthdApiLogicalCpuResult {
coreId: string;
frequency: HealthdApiCpuScalingFrequencyKhz;
executionTime: HealthdApiCpuExecutionTimeUserHz;
}
export interface HealthdApiCpuScalingFrequencyKhz {
current: string;
max: string;
}
export interface HealthdApiCpuExecutionTimeUserHz {
user: string;
system: string;
idle: string;
}
export interface HealthdApiTemperatureChannelResult {
label?: string;
temperatureCelsius: number;
}
/**
* `getHealthdTelemetryInfo` fan result.
*/
export interface HealthdApiFanResult {
speedRpm: string;
}
/**
* `getHealthdTelemetryInfo` memory result.
*/
export interface HealthdApiMemoryResult {
availableMemoryKib: string;
freeMemoryKib: string;
totalMemoryKib: string;
buffersKib?: string;
pageCacheKib?: string;
sharedMemoryKib?: string;
activeMemoryKib?: string;
inactiveMemoryKib?: string;
totalSwapMemoryKib?: string;
freeSwapMemoryKib?: string;
cachedSwapMemoryKib?: string;
totalSlabMemoryKib?: string;
reclaimableSlabMemoryKib?: string;
unreclaimableSlabMemoryKib?: string;
}
/**
* `getHealthdTelemetryInfo` thermal result.
*/
export interface HealthdApiThermalResult {
name: string;
source: string;
temperatureCelsius: number;
}
/**
* `getHealthdTelemetryInfo` api result.
*/
export interface HealthdApiTelemetryResult {
battery?: HealthdApiBatteryResult;
cpu: HealthdApiCpuResult;
fans: HealthdApiFanResult[];
memory: HealthdApiMemoryResult;
thermals: HealthdApiThermalResult[];
}
/**
* `getHealthdProcessInfo` api result.
*/
export interface HealthdApiProcessResult {
processes: HealthdApiProcessInfo[];
}
/**
* Detailed process info. See `ProcessInfo` in
* chromeos/ash/services/cros_healthd/public/mojom/cros_healthd_probe.mojom
* for more details.
*/
export interface HealthdApiProcessInfo {
command: string;
userId: string;
priority: number;
nice: number;
uptimeTicks: string;
state: string;
residentMemoryKib: string;
readSystemCallsCount: string;
writeSystemCallsCount: string;
name?: string;
parentProcessId: string;
processGroupId: string;
threadsNumber: string;
processId: string;
}
/**
* `getHealthdInternalsFeatureFlag` api result.
*/
export interface HealthdInternalsFeatureFlagResult {
tabsDisplayed: boolean;
}
/**
* `getCrosSystemInfo` api result.
*/
export interface CrosSystemResult {
zram?: SystemZramInfo;
}
/**
* `getCrosSystemInfo` zram result.
*/
export interface SystemZramInfo {
totalUsedMemory: string;
originalDataSize: string;
compressedDataSize: string;
}
|