- 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
30 lines
1.5 KiB
TypeScript
30 lines
1.5 KiB
TypeScript
import type { Logger } from '@opentelemetry/api-logs';
|
|
import type { Resource } from '@opentelemetry/resources';
|
|
import type { InstrumentationScope } from '@opentelemetry/core';
|
|
import type { LogRecordProcessor } from '../LogRecordProcessor';
|
|
import type { LogRecordLimits, LoggerConfig, LoggerConfigurator } from '../types';
|
|
/**
|
|
* Default LoggerConfigurator that returns the default config for all loggers
|
|
*/
|
|
export declare const DEFAULT_LOGGER_CONFIGURATOR: LoggerConfigurator;
|
|
export declare class LoggerProviderSharedState {
|
|
readonly loggers: Map<string, Logger>;
|
|
activeProcessor: LogRecordProcessor;
|
|
readonly registeredLogRecordProcessors: LogRecordProcessor[];
|
|
readonly resource: Resource;
|
|
readonly forceFlushTimeoutMillis: number;
|
|
readonly logRecordLimits: Required<LogRecordLimits>;
|
|
readonly processors: LogRecordProcessor[];
|
|
private _loggerConfigurator;
|
|
private _loggerConfigs;
|
|
constructor(resource: Resource, forceFlushTimeoutMillis: number, logRecordLimits: Required<LogRecordLimits>, processors: LogRecordProcessor[], loggerConfigurator?: LoggerConfigurator);
|
|
/**
|
|
* Get the LoggerConfig for a given instrumentation scope.
|
|
* Uses the LoggerConfigurator function to compute the config on first access
|
|
* and caches the result.
|
|
*
|
|
* @experimental This feature is in development as per the OpenTelemetry specification.
|
|
*/
|
|
getLoggerConfig(instrumentationScope: InstrumentationScope): Required<LoggerConfig>;
|
|
}
|
|
//# sourceMappingURL=LoggerProviderSharedState.d.ts.map
|