diff --git a/web/html/src/manager/admin/config/monitoring-admin.tsx b/web/html/src/manager/admin/config/monitoring-admin.tsx index 527f568b2c8f..b0d29b02e4a2 100644 --- a/web/html/src/manager/admin/config/monitoring-admin.tsx +++ b/web/html/src/manager/admin/config/monitoring-admin.tsx @@ -156,22 +156,27 @@ const HelpPanel = (props: HelpPanelProps) => {

{t("Server Monitoring")}

- {t("The server uses ")} - - {t("Prometheus")} - - {t(" exporters to expose metrics about your environment.")} + {t("The server uses Prometheus exporters to expose metrics about your environment.", { + link: (str: string) => ( + + {str} + + ), + })}

- {t("Refer to the ")} - - {t("documentation")} - - {t(" to learn how to consume these metrics.")} + {t("Refer to the documentation to learn how to consume these metrics.", { + link: (str: string) => ( + + {str} + + ), + })}

);