npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

@gyizerhq/loopback4_tracing

v0.1.0

Published

LoopBack 4 Tracing Component

Downloads

68

Readme

loopback4-tracing

Actions Status Coverage Status

Latest version License Downloads Total Downloads

LoopBack 4 Tracing Component

Contents

Prerequisites

Some modules need to be installed as peer dependencies with at least a certain version.

@loopback/core  >=2.14.0
@loopback/rest  >=9.1.2

Installation

npm install loopback4-tracing

Initialize tracing

Before loading any application code it is required to initialize tracing. This is usually done at the top of the index.js or index.ts file.

require("loopback4-tracing").init({/* config */});

or in TypeScript it is also possible to do

import { initializeTracing } from "loopback4-tracing";

initializeTracing({/* config */});

Bind the component

This will add the tracing interceptor and observer to the application. The interceptor will create method invocation spans and the observer is required to gracefully shutdown the tracer provider and exporters when the application is stopped.

import { TracingBindings, TracingComponent } from "loopback4-tracing";

export class MyApplication extends BootMixin(
    ServiceMixin(RepositoryMixin(RestApplication))
) {
    constructor(options?: ApplicationConfig) {
        super(options);

        this.component(TracingComponent);
    }
}

Usage

The module provides a lot of auto instrumentations by default but is also possible to create custom spans in your code.

Trace decorator

The easiest way create custom spans is by using the decorator which can be added to any method.

import { trace } from "loopback4-tracing";

class ExampleService {
    constructor() {}

    @trace()
    exampleMethod() {
        // do some work
    }
}

The decorator will wrap the method into a span which will use the method name as span name by default. It is also possible to use a custom span name by setting the operation name in the decorator options.

@trace({ operationName: "customName" })

Create custom span

The first step is get the tracer of the service either by using dependency injection

import { Tracer, TracingBindings } from "loopback4-tracing";

class ExampleService {
    constructor(
        @inject(TracingBindings.TRACER)
        private tracer: Tracer
    ) {}

    exampleMethod() {
        const span = this.tracer.startSpan("exampleMethod");

        // do some work

        span.end();
    }
}

or by directly importing the tracer

import { tracer } from "loopback4-tracing";

function exampleFunction() {
    const span = tracer.startSpan("exampleFunction");

    // do some work

    span.end();
}

Get active span

In some cases it might not be desired to create a new span but instead get the active span to add additional events and attributes to it.

import { getActiveSpan } from "loopback4-tracing";

function exampleFunction() {
    const span = getActiveSpan();

    span.addEvent("some event");

    span.setAttribute("custom.attribute", "some value");
}

Configuration

Most of the time it is not recommended to change the default configuration but there are some cases where it makes sense, for example to enable / disable default instrumentations provided by the module such as http.

The module can be configured by providing custom values in the init function or by using environment variables which will have highest priority.

Note: By default tracing is not enabled. The recommended approach is to enable tracing by setting the environment variable TRACING_ENABLED=true and to only enable it if the collected traces are analyzed.

Configuration parameters

| Parameter | Environment Variable | Description | Default | Type | | --------------------------- | ------------------------------------ | ------------------------------------ | ------------- | --------------------- | | enabled | TRACING_ENABLED | Enable tracing | false | boolean | | serviceName | TRACING_SERVICE_NAME | Name of service | pkg.name | string | | serviceVersion | TRACING_SERVICE_VERSION | Version of service | pkg.version | string | | propagationFormat | TRACING_PROPAGATION_FORMAT | Propagation format | "jaeger" | "jaeger" \| "w3c" | | setRequestId | TRACING_SET_REQUEST_ID | Set request id in error and response | true | boolean | | jaeger.enabled | TRACING_JAEGER_ENABLED | Enable jaeger exporter | true | boolean | | jaeger.host | TRACING_JAEGER_HOST | Jaeger host | "localhost" | string | | jaeger.port | TRACING_JAEGER_PORT | Jaeger port | 6832 | number | | jaeger.endpoint | TRACING_JAEGER_ENDPOINT | Jaeger traces endpoint | undefined | string | | jaeger.spanProcessor.type | TRACING_JAEGER_SPAN_PROCESSOR | Jaeger span processor type | "batch" | "simple" \| "batch" | | console.enabled | TRACING_CONSOLE_ENABLED | Enable console exporter | false | boolean | | diagnostics.enabled | TRACING_DIAGNOSTICS_ENABLED | Enable diagnostics logger | false | boolean | | diagnostics.logLevel | TRACING_DIAGNOSTICS_LOG_LEVEL | Log level of diag logger | 9999 | DiagLogLevel | | methodInvocations.enabled | TRACING_METHOD_INVOCATIONS_ENABLED | Enable method invocation spans | true | boolean | | http.enabled | TRACING_HTTP_ENABLED | Enable http instrumentation | true | boolean |

For further details about possible configuration options, see tracing options.

Note: Some values can not be configured by using environment variables but instead need to be provided to the init function.

Example

For an example on how to create custom spans see tracing interceptor and for more information, please read the opentelemetry tracing documentation.

Debug

To enable debug logs set the DEBUG environment variable to loopback:tracing:*, see Setting debug strings for further details.

Related resources

Contributing

contributions welcome

License

This project is licensed under the MIT license. See the LICENSE file for more info.