- Add full Telegram bot functionality with Z.AI API integration
- Implement 4 tools: Bash, FileEdit, WebSearch, Git
- Add 3 agents: Code Reviewer, Architect, DevOps Engineer
- Add 6 skills for common coding tasks
- Add systemd service file for 24/7 operation
- Add nginx configuration for HTTPS webhook
- Add comprehensive documentation
- Implement WebSocket server for real-time updates
- Add logging system with Winston
- Add environment validation
🤖 zCode CLI X - Agentic coder with Z.AI + Telegram integration
101 lines
3.9 KiB
JavaScript
101 lines
3.9 KiB
JavaScript
/*
|
|
* Copyright The OpenTelemetry Authors
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
import { ExportResultCode } from '@opentelemetry/core';
|
|
import { OTLPExporterError } from './types';
|
|
import { createLoggingPartialSuccessResponseHandler } from './logging-response-handler';
|
|
import { diag } from '@opentelemetry/api';
|
|
class OTLPExportDelegate {
|
|
_diagLogger;
|
|
_transport;
|
|
_serializer;
|
|
_responseHandler;
|
|
_promiseQueue;
|
|
_timeout;
|
|
constructor(transport, serializer, responseHandler, promiseQueue, timeout) {
|
|
this._transport = transport;
|
|
this._serializer = serializer;
|
|
this._responseHandler = responseHandler;
|
|
this._promiseQueue = promiseQueue;
|
|
this._timeout = timeout;
|
|
this._diagLogger = diag.createComponentLogger({
|
|
namespace: 'OTLPExportDelegate',
|
|
});
|
|
}
|
|
export(internalRepresentation, resultCallback) {
|
|
this._diagLogger.debug('items to be sent', internalRepresentation);
|
|
// don't do any work if too many exports are in progress.
|
|
if (this._promiseQueue.hasReachedLimit()) {
|
|
resultCallback({
|
|
code: ExportResultCode.FAILED,
|
|
error: new Error('Concurrent export limit reached'),
|
|
});
|
|
return;
|
|
}
|
|
const serializedRequest = this._serializer.serializeRequest(internalRepresentation);
|
|
if (serializedRequest == null) {
|
|
resultCallback({
|
|
code: ExportResultCode.FAILED,
|
|
error: new Error('Nothing to send'),
|
|
});
|
|
return;
|
|
}
|
|
this._promiseQueue.pushPromise(this._transport.send(serializedRequest, this._timeout).then(response => {
|
|
if (response.status === 'success') {
|
|
if (response.data != null) {
|
|
try {
|
|
this._responseHandler.handleResponse(this._serializer.deserializeResponse(response.data));
|
|
}
|
|
catch (e) {
|
|
this._diagLogger.warn('Export succeeded but could not deserialize response - is the response specification compliant?', e, response.data);
|
|
}
|
|
}
|
|
// No matter the response, we can consider the export still successful.
|
|
resultCallback({
|
|
code: ExportResultCode.SUCCESS,
|
|
});
|
|
return;
|
|
}
|
|
else if (response.status === 'failure' && response.error) {
|
|
resultCallback({
|
|
code: ExportResultCode.FAILED,
|
|
error: response.error,
|
|
});
|
|
return;
|
|
}
|
|
else if (response.status === 'retryable') {
|
|
resultCallback({
|
|
code: ExportResultCode.FAILED,
|
|
error: response.error ??
|
|
new OTLPExporterError('Export failed with retryable status'),
|
|
});
|
|
}
|
|
else {
|
|
resultCallback({
|
|
code: ExportResultCode.FAILED,
|
|
error: new OTLPExporterError('Export failed with unknown error'),
|
|
});
|
|
}
|
|
}, reason => resultCallback({
|
|
code: ExportResultCode.FAILED,
|
|
error: reason,
|
|
})));
|
|
}
|
|
forceFlush() {
|
|
return this._promiseQueue.awaitAll();
|
|
}
|
|
async shutdown() {
|
|
this._diagLogger.debug('shutdown started');
|
|
await this.forceFlush();
|
|
this._transport.shutdown();
|
|
}
|
|
}
|
|
/**
|
|
* Creates a generic delegate for OTLP exports which only contains parts of the OTLP export that are shared across all
|
|
* signals.
|
|
*/
|
|
export function createOtlpExportDelegate(components, settings) {
|
|
return new OTLPExportDelegate(components.transport, components.serializer, createLoggingPartialSuccessResponseHandler(), components.promiseHandler, settings.timeout);
|
|
}
|
|
//# sourceMappingURL=otlp-export-delegate.js.map
|