Socket
Socket
Sign inDemoInstall

@aspecto/opentelemetry

Package Overview
Dependencies
189
Maintainers
5
Versions
213
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    @aspecto/opentelemetry

Aspecto auto instrumentation for nodejs applications


Version published
Weekly downloads
1.2K
increased by21.91%
Maintainers
5
Install size
38.8 MB
Created
Weekly downloads
 

Readme

Source

Aspecto OpenTelemetry SDK

Aspecto is an observability platform, powered by OpenTelemetry, that brings R&D teams complete visibility into every interaction, performance issue, and error happening within their distributed services.

Install

npm install @aspecto/opentelemetry

Supported node version: >= 14

Usage

In the root folder create an aspecto.json file with the content {"aspectoAuth" : "-- token goes here --"}.

You can get your token from here

Add this call at the top of your app entry point:

require('@aspecto/opentelemetry')();

// the rest of your main file requires

See below for more configuration options

Configuration

You can configure the package via one or more of the following:

  • options variable. for example: require('@aspecto/opentelemetry')({optionName: optionValue});
    This enables setting config options dynamically.
  • Environment variables
  • Add aspecto.json configuration file to the root directory, next to service's package.json file

Values are evaluated in the following priority:

  1. options object
  2. environment variables
  3. config file
  4. default values
Option NameEnvironment VariableTypeDefaultDescription
disableAspectoDISABLE_ASPECTObooleanfalseDisable aspecto
envNODE_ENVstring-Set environment name manually
aspectoAuthASPECTO_AUTHUUID-Set Aspecto token from code instead of using aspecto.json
serviceNameOTEL_SERVICE_NAMEstringname key in package.jsonSet serviceName manually instead of reading it from package.json. For example: a service that runs in multiple "modes"
serviceVersionOTEL_SERVICE_VERSIONstringversion key in package.jsonSet serviceVersion manually instead of reading it from package.json
samplingRatioASPECTO_SAMPLING_RATIOnumber1.0How many of the traces starting in this service should be sampled. Set to number in range [0.0, 1.0] where 0.0 is no sampling, and 1.0 is sample all. Specific rules set via aspecto app takes precedence
requireConfigForTracesASPECTO_REQUIRE_CONFIG_FOR_TRACESbooleanfalseWhen true, the SDK will not trace anything until remote sampling configuration arrives (few hundreds ms). Can be used to enforce sampling configuration is always applied, with the cost of losing traces generated during service startup.
logger-logger interface-Logger to be used in this tracing library. Common use for debugging logger: console
collectPayloadsASPECTO_COLLECT_PAYLOADSbooleantrueShould Aspecto SDK collect payloads of operations
otlpCollectorEndpointOTEL_EXPORTER_OTLP_TRACES_ENDPOINTstringhttps://otelcol-fast.aspecto.io/v1/traceTarget URL to which the OTLP http exporter is going to send spans
exportBatchSizeASPECTO_EXPORT_BATCH_SIZEnumber100How many spans to batch in a single export to the collector
exportBatchTimeoutMsASPECTO_EXPORT_BATCH_TIMEOUT_MSnumber1000 (1s)Maximum time in ms for batching spans before sending to collector
writeSystemLogs-booleanfalseIf true, emit all log messages from Opentelemetry SDK to supplied logger if present, or to console if missing
customZipkinEndpoint-URLSend all traces to additional Zipkin server for debug
sqsExtractContextPropagationFromPayloadASPECTO_SQS_EXTRACT_CONTEXT_PROPAGATION_FROM_PAYLOADbooleantrueFor aws-sdk instrumentation. Should be true when the service receiveMessages from SQS which is subscribed to SNS and subscription configured with "Raw message delivery": Disabled. Setting to false is a bit more performant as it turns off JSON parse on message payload
extractB3ContextASPECTO_EXTRACT_B3_CONTEXTbooleanfalseSet to true when the service receives requests from another instrumented component that propagate context via B3 protocol multi or single header. For example: Envoy Proxy, Ambassador and Istio
injectB3ContextSingleHeaderASPECTO_INJECT_B3_CONTEXT_SINGLE_HEADERbooleanfalseSet to true when the service send traffic to another instrumented component that propagate context via B3 single header protocol
injectB3ContextMultiHeaderASPECTO_INJECT_B3_CONTEXT_MULTI_HEADERbooleanfalseSet to true when the service send traffic to another instrumented component that propagate context via B3 multi header protocol. For example: Envoy Proxy, Istio

Send Spans Manually

Background

"Span" is the name of the data structure representing an interesting operation in your app.
Aspecto will automatically collect spans for operations created by popular packages that perform IO (such as http, messaging systems, databases, etc).
Manual spans are used if you need to trace an operation in a code you wrote, or when using a package that does not provide an automatic tracing.

Example

To create a Manual Span for a function run, you need to wrap it in a trace call like this:

import { trace } from '@aspecto/opentelemetry'; // ES import
const { trace } = require('@aspecto/opentelemetry'); // CommonJS require

trace(
    // All options are optional
    {
        name: '** optional name for the operation **',
        metadata: {
            'metadata.key.for.the.operation': 'you can attach custom metadata to the operation',
        },
        type: 'Type of Operation',
    },
    () => {
        // your code which you want to trace
    }
);

Add span attributes manually

You can add attributes to your spans for more visibility.
Attributes can be added to a span at any time before the span is finished:

import { setAttribute, setAttributes } from '@aspecto/opentelemetry';

// add a single attribute
const result = setAttribute('foo', 'bar');

// add multiple attributes
const result = setAttributes({ foo: 'bar' });

// result will be true in case of success

(*) All keys will get a prefix of 'aspecto.extra'.

Correlate Logs with Traces

A common use case for the Trace Search tool is to see the related trace while inspecting a log event.
To do this, you must attach an active traceId to your logs.

Example

Use the getContext method, exposed from our package, to attach traceId to your logs:

const { getContext } = require('@aspecto/opentelemetry');

console.log('Something happened!', { traceId: getContext().traceId })});

Live Stream Traces

Live Stream Traces captures all payloads and traces for a specific host/instance. You can access it by clicking the link from the service output:

=====================================================================================================================================
|                                                                                                                                   |
| 🕵️‍♀️ See the live stream tracing at https://app.aspecto.io/app/live-stream-traces/sessions?instanceId=14243e72-14dc-4255-87af-ef846b247578   |
|                                                                                                                                   |
=====================================================================================================================================

You only need to click the link once to see traces from all the microservices, that are running on your environment. Also this link is valid for a limited period of time (couple of days, but it may change in the future). If you don't see trace from some microservice (or none of them), please click the newly-generated link.

FaaS

AWS Lambda

Aspecto supports instrumenting AWS lambdas.
To do so, set up Aspecto as you'd usually do, and extract the returned lambda utility:

const { lambda } = require('@aspecto/opentelemetry')();

Next, wrap your function handler definition with the returned utility.

Example:

// Before
module.exports.myCallbackHandler = (event, context, callback) => { ... };
module.exports.myAsyncHandler = async (event, context) => { ... };

// After
module.exports.myCallbackHandler = lambda((event, context, callback) => { ... });
module.exports.myAsyncHandler = lambda(async (event, context) => { ... });

Notice: if your lambda is not deployed with a package.json file, make sure to provide the serviceName option when initializing Aspecto.

Google Cloud Function

Aspecto supports instrumenting GCF with http trigger.
To do so, set up Aspecto as you'd usually do, and extract the gcf utility:

const { gcf } = require('@aspecto/opentelemetry')();

Next, wrap your function handler definition with the returned utility. Example:

// Before
exports.myEndpoint = (req, res) => { ... };

// After
exports.myEndpoint = gcf((req, res) => { ... });

Test Frameworks

Mocha

To instrument your test with aspecto using mocha version 8.0.0 and above, register mocha plugin as instructed below. In this mode, token (and other configuration) can be set only via aspecto.json config file or environment variables.

With CLI
mocha --require @aspecto/opentelemetry/mocha
With Mocha Config in package.json
  "mocha": {
    "require": [
      "@aspecto/opentelemetry/mocha"
    ]
  }
Config File
{
    "require": [
        "@aspecto/opentelemetry/mocha"
    ]
}

Keywords

FAQs

Last updated on 17 Oct 2023

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.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc