From cacfa49c7cf32e54b59bc6f984d648ea42346516 Mon Sep 17 00:00:00 2001 From: Julia Bardi Date: Thu, 29 Sep 2022 15:14:35 +0200 Subject: [PATCH] added last_checkin_message to FleetServerAgent --- x-pack/plugins/fleet/common/types/models/agent.ts | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/x-pack/plugins/fleet/common/types/models/agent.ts b/x-pack/plugins/fleet/common/types/models/agent.ts index 2cc6ddcb59838..fa54f8c943e27 100644 --- a/x-pack/plugins/fleet/common/types/models/agent.ts +++ b/x-pack/plugins/fleet/common/types/models/agent.ts @@ -230,6 +230,10 @@ export interface FleetServerAgent { * Last checkin status */ last_checkin_status?: 'error' | 'online' | 'degraded' | 'updating'; + /** + * Last checkin message + */ + last_checkin_message?: string; /** * ID of the API key the Elastic Agent uses to authenticate with elasticsearch */