Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "light-process",
"version": "0.7.0",
"version": "0.8.0",
"description": "Lightweight DAG workflow engine for orchestrating code in Docker containers via light-run.",
"main": "dist/index.js",
"exports": {
Expand Down
2 changes: 1 addition & 1 deletion src/instrumentation.ts
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ import { ConsoleSpanExporter, SimpleSpanProcessor, type SpanExporter } from '@op
import { ATTR_SERVICE_NAME, ATTR_SERVICE_VERSION } from '@opentelemetry/semantic-conventions';

const SERVICE_NAME = process.env.OTEL_SERVICE_NAME ?? 'light-process';
const SERVICE_VERSION = process.env.LP_VERSION ?? '0.7.0';
const SERVICE_VERSION = process.env.LP_VERSION ?? '0.8.0';

const debugMode = process.env.LP_OTEL_DEBUG === '1';
const otlpEndpoint = process.env.OTEL_EXPORTER_OTLP_ENDPOINT;
Expand Down
2 changes: 1 addition & 1 deletion src/telemetry.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import { type Attributes, context, type Span, SpanStatusCode, type Tracer, trace
*/

const TRACER_NAME = 'light-process';
const TRACER_VERSION = '0.7.0';
const TRACER_VERSION = '0.8.0';

export const tracer: Tracer = trace.getTracer(TRACER_NAME, TRACER_VERSION);

Expand Down
Loading