Skip to main content

HealthEvent

Properties

NameTypeDescriptionNotes
DetailedMessageStringDescription of the issue[optional]
UuidStringUnique identifier for the health event[optional]
UrlStringOptional URL associated with the issue[optional]
TimestampSystem.DateTimeTime when the event occurred[optional]
LastNotifiedTimeStampSystem.DateTimeLast time notification was sent for this issue[optional]
CpuUtilizationPercentageDecimalCPU usage percentage[optional]
FreeSpacePercentageDecimalFree memory percentage[optional]

Examples

  • Prepare the resource
$HealthEvent = Initialize-V2025HealthEvent  -DetailedMessage CPU utilization is high `
-Uuid 5 `
-Url https://sample.com:80/ `
-Timestamp 2025-03-25T14:46:58.605Z `
-LastNotifiedTimeStamp 2025-08-06T06:53:22.206956Z `
-CpuUtilizationPercentage 80 `
-FreeSpacePercentage 8
  • Convert the resource to JSON
$HealthEvent | ConvertTo-JSON

[Back to top]