Skip to main content

ManagedClientHealthIndicatorsBody

Health indicator details from the Managed Client

Properties

NameTypeDescriptionNotes
alert_keystrHealth indicator alert key[optional] [readonly]
idstrUnique identifier for the health report[required]
cluster_idstrCluster ID the health report belongs to[required]
api_userstrAPI user ID sending the health data[required]
ccg_etagstrETag value for CCG version control[optional]
ccg_pinstrPIN value for CCG validation[optional]
cookbook_etagstrETag for cookbook version[optional]
hostnamestrHostname of the Managed Client[required]
internal_ipstrInternal IP address of the Managed Client[optional]
last_seenstrEpoch timestamp (in millis) when last seen[optional]
since_seenstrSeconds since last seen[optional]
since_seen_millisstrMilliseconds since last seen[optional]
local_devboolIndicates if this is a local development instance[optional] [default to False]
stacktracestrStacktrace associated with any error, if available[optional]
statestrOptional state value from the client[optional]
statusEnum [ 'NORMAL', 'UNDEFINED', 'WARNING', 'ERROR', 'FAILED' ]Status of the client at the time of report[required]
uuidstrOptional UUID from the client[optional]
productstrProduct type (e.g., idn)[required]
va_versionstrVA version installed on the client[optional]
platform_versionstrVersion of the platform on which VA is running[required]
os_versionstrOperating system version[required]
os_typestrOperating system type[required]
hypervisorstrVirtualization platform used[required]
consolidated_health_indicators_statusEnum [ 'NORMAL', 'WARNING', 'ERROR' ]Consolidated health indicator status[required]
last_notified_ccg_versionstrThe last CCG version for which notification was sent[optional]
deployed_processesstrInformation about deployed processes[optional]
health_indicatorsManagedClientHealthIndicatorsBodyHealthIndicators[required]
}

Example

from sailpoint.v2025.models.managed_client_health_indicators_body import ManagedClientHealthIndicatorsBody

managed_client_health_indicators_body = ManagedClientHealthIndicatorsBody(
alert_key='',
id='9fe8f1cc-2fd2-4675-a8cf-af4b43488ca2',
cluster_id='c2a2139cbc754e42b4279a69ec5f58ec',
api_user='9fe8f1cc-2fd2-4675-a8cf-af4b43488ca2',
ccg_etag='c95e5c4417952dbcc9b4974999ece14e',
ccg_pin='NONE',
cookbook_etag='3018-master-2ce6ac16-20250717124641-3077-master-a101b5fe-20250722162527',
hostname='Testing1',
internal_ip='172.18.54.5',
last_seen='1754465728720',
since_seen='23195',
since_seen_millis='23195',
local_dev=False,
stacktrace='',
state='',
status='NORMAL',
uuid='',
product='idn',
va_version='',
platform_version='2',
os_version='4230.2.1',
os_type='flatcar',
hypervisor='vmware',
consolidated_health_indicators_status='ERROR',
last_notified_ccg_version='1068',
deployed_processes='',
health_indicators=sailpoint.v2025.models.managed_client_health_indicators_body_health_indicators.ManagedClientHealthIndicators_body_health_indicators(
container = sailpoint.v2025.models.health_indicator_category.HealthIndicatorCategory(
errors = [
sailpoint.v2025.models.health_event.HealthEvent(
detailed_message = 'CPU utilization is high',
uuid = '5',
url = 'https://sample.com:80/',
timestamp = '2025-03-25T14:46:58.605Z',
last_notified_time_stamp = '2025-08-06T06:53:22.206956Z',
cpu_utilization_percentage = 80,
free_space_percentage = 8, )
],
warnings = [
sailpoint.v2025.models.health_event.HealthEvent(
detailed_message = 'CPU utilization is high',
uuid = '5',
url = 'https://sample.com:80/',
timestamp = '2025-03-25T14:46:58.605Z',
last_notified_time_stamp = '2025-08-06T06:53:22.206956Z',
cpu_utilization_percentage = 80,
free_space_percentage = 8, )
], ),
memory = sailpoint.v2025.models.health_indicator_category.HealthIndicatorCategory(),
cpu = , )
)

[Back to top]