mirror of
https://github.com/LukeHagar/plexjs.git
synced 2025-12-06 12:37:46 +00:00
27 lines
1.5 KiB
Markdown
27 lines
1.5 KiB
Markdown
# StatisticsResources
|
|
|
|
## Example Usage
|
|
|
|
```typescript
|
|
import { StatisticsResources } from "@lukehagar/plexjs/sdk/models/operations";
|
|
|
|
let value: StatisticsResources = {
|
|
timespan: 6,
|
|
at: 1718384427,
|
|
hostCpuUtilization: 1.276,
|
|
processCpuUtilization: 0.025,
|
|
hostMemoryUtilization: 17.026,
|
|
processMemoryUtilization: 0.493,
|
|
};
|
|
```
|
|
|
|
## Fields
|
|
|
|
| Field | Type | Required | Description | Example |
|
|
| -------------------------- | -------------------------- | -------------------------- | -------------------------- | -------------------------- |
|
|
| `timespan` | *number* | :heavy_minus_sign: | N/A | 6 |
|
|
| `at` | *number* | :heavy_minus_sign: | N/A | 1718384427 |
|
|
| `hostCpuUtilization` | *number* | :heavy_minus_sign: | N/A | 1.276 |
|
|
| `processCpuUtilization` | *number* | :heavy_minus_sign: | N/A | 0.025 |
|
|
| `hostMemoryUtilization` | *number* | :heavy_minus_sign: | N/A | 17.026 |
|
|
| `processMemoryUtilization` | *number* | :heavy_minus_sign: | N/A | 0.493 | |