Directory

← Back

LogRocket Integration

Integrates LogRocket with your Vaadin application.

Author

Contributors

Rating

Disclaimer: The LogRocket trademarks, logos, and brand names are the property of LogRocket, Inc.

This description applies for version 3.1.0. For older versions, please see GitHub.

Usage

  1. Include the dependency in your project.
<dependency>
  <groupId>org.vaadin.addons.oliveryasuna</groupId>
  <artifactId>vaadin-logrocket-integration</artifactId>
  <version>3.1.0</version>
</dependency>
  1. Set your LogRocket app ID.

Set the LOGROCKET_APP_ID environment variable to your LogRocket app ID.

Alternatively, you can set it directly in the configuration. Read more here.

  1. Add the LogRocket script to your page.

One way to do so is by adding it to index.html:

public class LogRocketBootstrapper implements VaadinServiceInitListener, IndexHtmlRequestListener, UIInitListener {
  @Override
  public void serviceInit(final ServiceInitEvent event) {
    event.addIndexHtmlRequestListener(this);
    event.getSource().addUIInitListener(this);
  }

  @Override
  public void modifyIndexHtmlResponse(final IndexHtmlResponse response) {
    final Document document = response.getDocument();

    final Element scriptElement = document.createElement("script");
    scriptElement.attr("src", "https://cdn.lr-in-prod.com/LogRocket.min.js");
    scriptElement.attr("crossorigin", "anonymous");

    document.head().appendChild(scriptElement);
  }

  @Override
  public void uiInit(final UIInitEvent event) {
    LogRocketConfiguration.getInstance(logRocketConfiguration -> LogRocket.init(event.getUI(), logRocketConfiguration.getAppId()));
  }
}

Alternatively, you can enable autoInit in the configuration. Read more here.

  1. Identify your users.

Use one of the identify methods in the class LogRocket to identify your users.

For example:

public void onAuthenticate(final User user) {
  LogRocket.identify(user.getId(), user.getName(), user.getEmail());
}

Configuration

To override the default configuration, create a file name vaadin-logrocket.properties in src/main/resources.

Property Description Default
autoInit Automatically initialize LogRocket for new UIs. false
logrocket.appId LogRocket app ID. ${LOGROCKET_APP_ID}

Alternatively, you can implement your own configuration loader by implementing the interface AddonConfigurationLoader and loading it with SPI.

License

This repository and its contents are licensed by BSD 3-Clause.

In other words, feel free to use this in your projects, but please give credits to its author(s).

Sponsoring

If you like my work and want to support it, please consider sponsoring me. It's how I make the time to code great things!

Links

Compatibility

(Loading compatibility data...)

Was this helpful? Need more help?
Leave a comment or a question below. You can also join the chat on Discord or ask questions on StackOverflow.

Version

Released
2023-01-14
Maturity
STABLE
License
BSD 3-clause "New" or "Revised" License

Compatibility

Framework
Vaadin 15+
Browser
Firefox
Opera
Safari
Google Chrome
iOS Browser
Internet Explorer
Microsoft Edge
Online