Security News
The Risks of Misguided Research in Supply Chain Security
Snyk's use of malicious npm packages for research raises ethical concerns, highlighting risks in public deployment, data exfiltration, and unauthorized testing.
lightstep-opentelemetry-launcher-node
Advanced tools
Lightstep Launcher - a configuration layer OpenTelemetry Node.js
NOTE: This is in beta and is expected to GA in Fall 2020.
Launcher is a configuration layer that chooses default values for configuration options that many OpenTelemetry users want. It provides a single function in each language to simplify discovery of the options and components available to users. The goal of Launcher is to help users that aren't familiar with OpenTelemetry quickly ramp up on what they need to get going and instrument.
npm i lightstep-opentelemetry-launcher-node
Minimal setup
const {
lightstep,
opentelemetry,
} = require('lightstep-opentelemetry-launcher-node');
const sdk = lightstep.configureOpenTelemetry({
accessToken: 'YOUR ACCESS TOKEN',
serviceName: 'locl-ex',
});
sdk.start().then(() => {
const tracer = opentelemetry.trace.getTracer('otel-node-example');
const span = tracer.startSpan('test-span');
span.end();
tracer.getActiveSpanProcessor().shutdown();
});
Config Option | Env Variable | Required | Default |
---|---|---|---|
serviceName | LS_SERVICE_NAME | y | - |
serviceVersion | LS_SERVICE_VERSION | n | unknown |
spanEndpoint | OTEL_EXPORTER_OTLP_SPAN_ENDPOINT | n | https://ingest.lightstep.com:443/api/v2/otel/trace |
metricEndpoint | OTEL_EXPORTER_OTLP_METRIC_ENDPOINT | n | https://ingest.lightstep.com:443/metrics |
accessToken | LS_ACCESS_TOKEN | n | - |
logLevel | OTEL_LOG_LEVEL | n | info |
propagators | OTEL_PROPAGATORS | n | b3 |
resource | OTEL_RESOURCE_ATTRIBUTES | n | - |
metricsHostEnabled | LS_METRICS_HOST_ENABLED | n | true |
In addition the options below, the configureOpenTelemetry
function will take any configuration
options supported by the OpenTelemetry Node SDK package and its return value is a NodeSDK instance.
See the OpenTelemetry Node SDK documentation for more details.
One of the key principles behind putting together Launcher is to make lives of OpenTelemetry users easier, this means that there is no special configuration that requires users to install Launcher in order to use OpenTelemetry. It also means that any users of Launcher can leverage the flexibility of configuring OpenTelemetry as they need.
Another decision we made with launcher is to provide end users with a layer of validation of their configuration. This provides us the ability to give feedback to our users faster, so they can start collecting telemetry sooner.
Start using it today in Go, Java, Javascript and Python and let us know what you think!
Made with @ Lightstep
0.13.0
LS_METRICS_HOST_ENABLED
environment variable,
or the metricsHostEnabled
in-code configuration.FAQs
Lightstep Launcher - a configuration layer OpenTelemetry Node.js
The npm package lightstep-opentelemetry-launcher-node receives a total of 995 weekly downloads. As such, lightstep-opentelemetry-launcher-node popularity was classified as not popular.
We found that lightstep-opentelemetry-launcher-node demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Snyk's use of malicious npm packages for research raises ethical concerns, highlighting risks in public deployment, data exfiltration, and unauthorized testing.
Research
Security News
Socket researchers found several malicious npm packages typosquatting Chalk and Chokidar, targeting Node.js developers with kill switches and data theft.
Security News
pnpm 10 blocks lifecycle scripts by default to improve security, addressing supply chain attack risks but sparking debate over compatibility and workflow changes.