Skip to content

Commit d84eb53

Browse files
committed
updated title and description
1 parent ba67ec2 commit d84eb53

1 file changed

Lines changed: 5 additions & 4 deletions

File tree

x-pack/plugins/fleet/common/settings/agent_policy_settings.ts

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -108,22 +108,23 @@ export const AGENT_POLICY_ADVANCED_SETTINGS: SettingsConfig[] = [
108108
name: 'agent_monitoring_http',
109109
},
110110
title: i18n.translate('xpack.fleet.settings.agentPolicyAdvanced.agentMonitoringHttpTitle', {
111-
defaultMessage: 'Agent HTTP monitoring',
111+
defaultMessage: 'HTTP monitoring endpoint',
112112
}),
113113
description: i18n.translate(
114114
'xpack.fleet.settings.agentPolicyAdvanced.agentMonitoringHttpDescription',
115115
{
116-
defaultMessage: 'Agent HTTP monitoring settings',
116+
defaultMessage:
117+
'Enables a liveness HTTP endpoint that returns the overall health of Elastic Agent. This can be used by Kubernetes to restart the container, for example',
117118
}
118119
),
119120
learnMoreLink:
120121
'https://www.elastic.co/guide/en/fleet/current/enable-custom-policy-settings.html#override-default-monitoring-port',
121122
schema: z
122123
.object({
123-
enabled: z.boolean().describe('Enabled').default(false),
124+
// enabled: z.boolean().describe('Enabled').default(false),
124125
host: z.string().describe('Host').default('localhost'),
125126
port: z.number().describe('Port').min(0).max(65353).default(6791),
126-
'buffer.enabled': z.boolean().describe('Buffer Enabled').default(false),
127+
// 'buffer.enabled': z.boolean().describe('Buffer Enabled').default(false),
127128
})
128129
.default({}),
129130
},

0 commit comments

Comments
 (0)