mirror of
https://github.com/OneUptime/oneuptime.git
synced 2026-04-06 00:32:12 +02:00
- 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.
14 lines
436 B
TypeScript
14 lines
436 B
TypeScript
import { TelemetryRequest } from "Common/Server/Middleware/TelemetryIngest";
|
|
import TelemetryQueueService, {
|
|
TracesIngestJobData,
|
|
} from "./TelemetryQueueService";
|
|
|
|
// Export the interface for backward compatibility
|
|
export { TracesIngestJobData };
|
|
|
|
export default class TracesQueueService {
|
|
public static async addTraceIngestJob(req: TelemetryRequest): Promise<void> {
|
|
return TelemetryQueueService.addTraceIngestJob(req);
|
|
}
|
|
}
|