- 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
106 lines
4.9 KiB
JavaScript
106 lines
4.9 KiB
JavaScript
/*
|
|
* Copyright The OpenTelemetry Authors
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
import { createInstrumentDescriptorWithView } from '../InstrumentDescriptor';
|
|
import { Meter } from '../Meter';
|
|
import { AsyncMetricStorage } from './AsyncMetricStorage';
|
|
import { MetricStorageRegistry } from './MetricStorageRegistry';
|
|
import { MultiMetricStorage } from './MultiWritableMetricStorage';
|
|
import { ObservableRegistry } from './ObservableRegistry';
|
|
import { SyncMetricStorage } from './SyncMetricStorage';
|
|
import { createNoopAttributesProcessor } from '../view/AttributesProcessor';
|
|
/**
|
|
* An internal record for shared meter provider states.
|
|
*/
|
|
export class MeterSharedState {
|
|
metricStorageRegistry = new MetricStorageRegistry();
|
|
observableRegistry = new ObservableRegistry();
|
|
meter;
|
|
_meterProviderSharedState;
|
|
_instrumentationScope;
|
|
constructor(meterProviderSharedState, instrumentationScope) {
|
|
this.meter = new Meter(this);
|
|
this._meterProviderSharedState = meterProviderSharedState;
|
|
this._instrumentationScope = instrumentationScope;
|
|
}
|
|
registerMetricStorage(descriptor) {
|
|
const storages = this._registerMetricStorage(descriptor, SyncMetricStorage);
|
|
if (storages.length === 1) {
|
|
return storages[0];
|
|
}
|
|
return new MultiMetricStorage(storages);
|
|
}
|
|
registerAsyncMetricStorage(descriptor) {
|
|
const storages = this._registerMetricStorage(descriptor, AsyncMetricStorage);
|
|
return storages;
|
|
}
|
|
/**
|
|
* @param collector opaque handle of {@link MetricCollector} which initiated the collection.
|
|
* @param collectionTime the HrTime at which the collection was initiated.
|
|
* @param options options for collection.
|
|
* @returns the list of metric data collected.
|
|
*/
|
|
async collect(collector, collectionTime, options) {
|
|
/**
|
|
* 1. Call all observable callbacks first.
|
|
* 2. Collect metric result for the collector.
|
|
*/
|
|
const errors = await this.observableRegistry.observe(collectionTime, options?.timeoutMillis);
|
|
const storages = this.metricStorageRegistry.getStorages(collector);
|
|
// prevent more allocations if there are no storages.
|
|
if (storages.length === 0) {
|
|
return null;
|
|
}
|
|
const metricDataList = [];
|
|
storages.forEach(metricStorage => {
|
|
const metricData = metricStorage.collect(collector, collectionTime);
|
|
if (metricData != null) {
|
|
metricDataList.push(metricData);
|
|
}
|
|
});
|
|
// skip this scope if no data was collected (storage created, but no data observed)
|
|
if (metricDataList.length === 0) {
|
|
return { errors };
|
|
}
|
|
return {
|
|
scopeMetrics: {
|
|
scope: this._instrumentationScope,
|
|
metrics: metricDataList,
|
|
},
|
|
errors,
|
|
};
|
|
}
|
|
_registerMetricStorage(descriptor, MetricStorageType) {
|
|
const views = this._meterProviderSharedState.viewRegistry.findViews(descriptor, this._instrumentationScope);
|
|
let storages = views.map(view => {
|
|
const viewDescriptor = createInstrumentDescriptorWithView(view, descriptor);
|
|
const compatibleStorage = this.metricStorageRegistry.findOrUpdateCompatibleStorage(viewDescriptor);
|
|
if (compatibleStorage != null) {
|
|
return compatibleStorage;
|
|
}
|
|
const aggregator = view.aggregation.createAggregator(viewDescriptor);
|
|
const viewStorage = new MetricStorageType(viewDescriptor, aggregator, view.attributesProcessor, this._meterProviderSharedState.metricCollectors, view.aggregationCardinalityLimit);
|
|
this.metricStorageRegistry.register(viewStorage);
|
|
return viewStorage;
|
|
});
|
|
// Fallback to the per-collector aggregations if no view is configured for the instrument.
|
|
if (storages.length === 0) {
|
|
const perCollectorAggregations = this._meterProviderSharedState.selectAggregations(descriptor.type);
|
|
const collectorStorages = perCollectorAggregations.map(([collector, aggregation]) => {
|
|
const compatibleStorage = this.metricStorageRegistry.findOrUpdateCompatibleCollectorStorage(collector, descriptor);
|
|
if (compatibleStorage != null) {
|
|
return compatibleStorage;
|
|
}
|
|
const aggregator = aggregation.createAggregator(descriptor);
|
|
const cardinalityLimit = collector.selectCardinalityLimit(descriptor.type);
|
|
const storage = new MetricStorageType(descriptor, aggregator, createNoopAttributesProcessor(), [collector], cardinalityLimit);
|
|
this.metricStorageRegistry.registerForCollector(collector, storage);
|
|
return storage;
|
|
});
|
|
storages = storages.concat(collectorStorages);
|
|
}
|
|
return storages;
|
|
}
|
|
}
|
|
//# sourceMappingURL=MeterSharedState.js.map
|