Socket
Socket
Sign inDemoInstall

@bugsnag/angular-performance

Package Overview
Dependencies
13
Maintainers
9
Versions
4
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    @bugsnag/angular-performance

BugSnag performance monitoring for angular applications


Version published
Weekly downloads
7
decreased by-30%
Maintainers
9
Created
Weekly downloads
 

Changelog

Source

v2.4.0 (2024-03-27)

Added

  • (browser) This release adds experimental trace propagation support. When enabled, by setting propagateTraceContext to true in the networkRequestCallback handler, a traceparent header will be added to the outgoing network request.

Deprecated

  • (react-native) For improved consistency with our error SDK, this release renames the existing navigation plugins and their exported types. The old packages are now marked as deprecated in NPM, but can be used until the next major version of this library. However we recommend renaming any existing references to the new packages straightaway:
    • React Navigation:
      • Rename package import from @bugsnag/react-navigation-performance to @bugsnag/plugin-react-navigation-performance
      • Rename plugin type from ReactNavigationNativePlugin to BugsnagPluginReactNavigationPerformance
    • React Native Navigation:
      • Rename package import from @bugsnag/react-native-navigation-performance to @bugsnag/plugin-react-native-navigation-performance
      • Rename plugin type from ReactNativeNavigationPlugin to BugsnagPluginReactNativeNavigationPerformance

Fixed

  • (plugin-react-navigation) Fix an issue where refs are not forwarded to the NavigationContainer #431

Readme

Source

@bugsnag/angular-performance

An angular integration for BugSnag performance

This integration instruments the Angular router to provide full page load and route change performance metrics.

Usage

import BugsnagPerformance from '@bugsnag/browser-performance';
import { AngularRoutingProvider, bugsnagBootstrapper } from '@bugsnag/angular-performance';

BugsnagPerformance.start({
  apiKey,
  routingProvider: new AngularRoutingProvider(),
})

@NgModule({
  declarations: [
    AppComponent
  ],
  imports: [
    BrowserModule,
    HttpClientModule,
    AppRoutingModule
  ],
  providers: [
    bugsnagBootstrapper,
  ],
  bootstrap: [AppComponent]
})
export class AppModule { }

FAQs

Last updated on 27 Mar 2024

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