![require(esm) Backported to Node.js 20, Paving the Way for ESM-Only Packages](https://cdn.sanity.io/images/cgdhsj6q/production/be8ab80c8efa5907bc341c6fefe9aa20d239d890-1600x1097.png?w=400&fit=max&auto=format)
Security News
require(esm) Backported to Node.js 20, Paving the Way for ESM-Only Packages
require(esm) backported to Node.js 20, easing the transition to ESM-only packages and reducing complexity for developers as Node 18 nears end-of-life.
@kth/appinsights
Advanced tools
A wrapper for the applicationinsights package.
This is intended for a standard use-case only. If your app needs more options, please use the core package instead.
Applicationinsights works by injecting code that captures telemetry from the application. To get full tracking, this package should be initialized as soon as possible in the code.
import { KthAppinsights } from '@kth/appinsights'
KthAppinsights.init({ name: 'app-name' })
Options
type appinsightOptions = {
name?: string // Optional. Name of the application
samplingPercentage?: number // Optional. Reduce the amount of telemetry collected
}
The if name
is passed in the options, it will be used to set "Cloud role name" and "Cloud role instance".
If a request has the user-agent
header set, it will be saved in the custom property user_agent
.
Bynyan messages (used by @kth/log) will be desctructured, and only the "msg" field kept, as all other information is duplicated on native data fields.
Example:
{ name: "my-app", level: 30, msg: "the important part" }
will be reduced to just "the important part"
.
Used to reduce the amount of telemetry collected, primary used to reduce cost.
Enable with option samplingPercentage
. Default is 100% = everything is collected.
This is not intended to be used on all agenda jobs. Only use ut when there is an actuall need.
A helper that groups all events in a agenda-jobb in a tracable operation.
Example:
const { AppinsightsUtils } = require('@kth/appinsights')
agenda.define('operation_name', AppinsightsUtils.agendaRequestWrapper('operation_name', jobFunction))
FAQs
Wrapper module for applicationinsights
The npm package @kth/appinsights receives a total of 752 weekly downloads. As such, @kth/appinsights popularity was classified as not popular.
We found that @kth/appinsights demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 8 open source maintainers 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
require(esm) backported to Node.js 20, easing the transition to ESM-only packages and reducing complexity for developers as Node 18 nears end-of-life.
Security News
PyPI now supports iOS and Android wheels, making it easier for Python developers to distribute mobile packages.
Security News
Create React App is officially deprecated due to React 19 issues and lack of maintenance—developers should switch to Vite or other modern alternatives.