- 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
40 lines
1.3 KiB
JavaScript
40 lines
1.3 KiB
JavaScript
/*
|
|
* Copyright The OpenTelemetry Authors
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
import { instrumentationScopeId } from '../utils';
|
|
import { ViewRegistry } from '../view/ViewRegistry';
|
|
import { MeterSharedState } from './MeterSharedState';
|
|
import { toAggregation } from '../view/AggregationOption';
|
|
/**
|
|
* An internal record for shared meter provider states.
|
|
*/
|
|
export class MeterProviderSharedState {
|
|
viewRegistry = new ViewRegistry();
|
|
metricCollectors = [];
|
|
meterSharedStates = new Map();
|
|
resource;
|
|
constructor(resource) {
|
|
this.resource = resource;
|
|
}
|
|
getMeterSharedState(instrumentationScope) {
|
|
const id = instrumentationScopeId(instrumentationScope);
|
|
let meterSharedState = this.meterSharedStates.get(id);
|
|
if (meterSharedState == null) {
|
|
meterSharedState = new MeterSharedState(this, instrumentationScope);
|
|
this.meterSharedStates.set(id, meterSharedState);
|
|
}
|
|
return meterSharedState;
|
|
}
|
|
selectAggregations(instrumentType) {
|
|
const result = [];
|
|
for (const collector of this.metricCollectors) {
|
|
result.push([
|
|
collector,
|
|
toAggregation(collector.selectAggregation(instrumentType)),
|
|
]);
|
|
}
|
|
return result;
|
|
}
|
|
}
|
|
//# sourceMappingURL=MeterProviderSharedState.js.map
|