@opencensus/core
Version:
OpenCensus is a toolkit for collecting application performance and behavior data.
98 lines • 3.51 kB
JavaScript
;
/**
* Copyright 2018, OpenCensus Authors
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
Object.defineProperty(exports, "__esModule", { value: true });
exports.ConsoleStatsExporter = exports.ConsoleExporter = exports.NoopExporter = void 0;
const exporter_buffer_1 = require("./exporter-buffer");
const logger = require("../common/console-logger");
/** Do not send span data */
class NoopExporter {
onStartSpan(span) { }
onEndSpan(span) { }
publish(spans) {
return Promise.resolve();
}
}
exports.NoopExporter = NoopExporter;
/** Format and sends span data to the console. */
class ConsoleExporter {
/**
* Constructs a new ConsoleExporter instance.
* @param config Exporter configuration object to create a console log
* exporter.
*/
constructor(config) {
this.buffer = new exporter_buffer_1.ExporterBuffer(this, config);
this.logger = config.logger || logger.logger();
}
onStartSpan(span) { }
/**
* Event called when a span is ended.
* @param span Ended span.
*/
onEndSpan(span) {
// Add spans of a trace together when root is ended, skip non root spans.
// publish function will extract child spans from root.
if (!span.isRootSpan())
return;
this.buffer.addToBuffer(span);
}
/**
* Sends the spans information to the console.
* @param spans A list of spans to publish.
*/
publish(spans) {
spans.map(span => {
const ROOT_STR = `RootSpan: {traceId: ${span.traceId}, spanId: ${span.id}, name: ${span.name} }`;
const SPANS_STR = span.spans.map(child => [`\t\t{spanId: ${child.id}, name: ${child.name}}`].join('\n'));
const result = [];
result.push(ROOT_STR + '\n\tChildSpans:\n' + `${SPANS_STR.join('\n')}`);
console.log(`${result}`);
});
return Promise.resolve();
}
}
exports.ConsoleExporter = ConsoleExporter;
/** Exporter that receives stats data and shows in the log console. */
class ConsoleStatsExporter {
/**
* Event called when a view is registered
* @param view registered view
*/
onRegisterView(view) {
console.log(`View registered: ${view.name}, Measure registered: ${view.measure.name}`);
}
/**
* Event called when a measurement is recorded
* @param view recorded view from measurement
* @param measurement recorded measurement
* @param tags The tags to which the value is applied
*/
onRecord(views, measurement, tags) {
console.log(`Measurement recorded: ${measurement.measure.name}`);
}
/**
* Starts the Console exporter that polls Metric from Metrics library and
* shows in the log console..
*/
start() {
// TODO(mayurkale): dependency with PR#253.
}
/** Stops the exporter. */
stop() { }
}
exports.ConsoleStatsExporter = ConsoleStatsExporter;
//# sourceMappingURL=console-exporter.js.map