From cf3bd9f0a36e6e14f1f6aae71a364d502ff8fc2c Mon Sep 17 00:00:00 2001 From: Alexander Mattoni <5110855+mattoni@users.noreply.github.com> Date: Fri, 2 Jan 2026 16:33:29 +0000 Subject: [PATCH] update configuration definition --- .../EnvironmentMonitoringConfig.yml | 36 ++++++++++++++++++- 1 file changed, 35 insertions(+), 1 deletion(-) diff --git a/components/schemas/environments/EnvironmentMonitoringConfig.yml b/components/schemas/environments/EnvironmentMonitoringConfig.yml index 5156a186..d05fb831 100644 --- a/components/schemas/environments/EnvironmentMonitoringConfig.yml +++ b/components/schemas/environments/EnvironmentMonitoringConfig.yml @@ -3,7 +3,7 @@ type: object description: The configuration for environment monitoring. properties: logs: - description: An object describing the log configuration for the environment. + description: An object describing the log monitoring configuration for the environment. oneOf: - type: object properties: @@ -26,3 +26,37 @@ properties: type: boolean - type: "null" - type: "null" + metrics: + description: An object describing the metrics monitoring configuration for the environment. + oneOf: + - type: object + properties: + endpoint: + description: Configuration options for pushing metrics externally. + oneOf: + - type: object + required: + - url + properties: + url: + description: The destination URL for the metrics. + type: string + - type: "null" + - type: "null" + events: + description: An object describing the events monitoring configuration for the environment. + oneOf: + - type: object + properties: + endpoint: + description: Configuration options for pushing events externally. + oneOf: + - type: object + required: + - url + properties: + url: + description: The destination URL for events. + type: string + - type: "null" + - type: "null"