- 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
60 lines
1.8 KiB
JavaScript
60 lines
1.8 KiB
JavaScript
/*
|
|
* Copyright The OpenTelemetry Authors
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
import { globalErrorHandler } from '@opentelemetry/core';
|
|
/**
|
|
* Implementation of the {@link SpanProcessor} that simply forwards all
|
|
* received events to a list of {@link SpanProcessor}s.
|
|
*/
|
|
export class MultiSpanProcessor {
|
|
_spanProcessors;
|
|
constructor(spanProcessors) {
|
|
this._spanProcessors = spanProcessors;
|
|
}
|
|
forceFlush() {
|
|
const promises = [];
|
|
for (const spanProcessor of this._spanProcessors) {
|
|
promises.push(spanProcessor.forceFlush());
|
|
}
|
|
return new Promise(resolve => {
|
|
Promise.all(promises)
|
|
.then(() => {
|
|
resolve();
|
|
})
|
|
.catch(error => {
|
|
globalErrorHandler(error || new Error('MultiSpanProcessor: forceFlush failed'));
|
|
resolve();
|
|
});
|
|
});
|
|
}
|
|
onStart(span, context) {
|
|
for (const spanProcessor of this._spanProcessors) {
|
|
spanProcessor.onStart(span, context);
|
|
}
|
|
}
|
|
onEnding(span) {
|
|
for (const spanProcessor of this._spanProcessors) {
|
|
if (spanProcessor.onEnding) {
|
|
spanProcessor.onEnding(span);
|
|
}
|
|
}
|
|
}
|
|
onEnd(span) {
|
|
for (const spanProcessor of this._spanProcessors) {
|
|
spanProcessor.onEnd(span);
|
|
}
|
|
}
|
|
shutdown() {
|
|
const promises = [];
|
|
for (const spanProcessor of this._spanProcessors) {
|
|
promises.push(spanProcessor.shutdown());
|
|
}
|
|
return new Promise((resolve, reject) => {
|
|
Promise.all(promises).then(() => {
|
|
resolve();
|
|
}, reject);
|
|
});
|
|
}
|
|
}
|
|
//# sourceMappingURL=MultiSpanProcessor.js.map
|