Add utility classes for telemetry: Monitor, StackTrace, and Syslog parsing

- Implemented MonitorUtil for managing monitor secrets and populating them in monitor steps and tests.
- Created StackTraceParser to parse and structure stack traces from various programming languages.
- Developed SyslogParser to handle and parse syslog messages in both RFC 5424 and RFC 3164 formats.
This commit is contained in:
Nawaz Dhandala
2026-04-02 14:04:13 +01:00
parent 69c6b332c1
commit 5f398bdb31
99 changed files with 125 additions and 8756 deletions

View File

@@ -177,8 +177,8 @@ export const AppApiHostname: Hostname = Hostname.fromString(
);
export const OpenTelemetryIngestHostname: Hostname = Hostname.fromString(
`${process.env["SERVER_TELEMETRY_HOSTNAME"] || "localhost"}:${
process.env["TELEMETRY_PORT"] || 80
`${process.env["SERVER_APP_HOSTNAME"] || "localhost"}:${
process.env["APP_PORT"] || 80
}`,
);