How to install Uniform Insights

Uniform Insights is a standalone capability provided by Uniform that is distributed as an official integration on top our platform.

First step is to add this integration to your project, but before we get started, there are two pre-requisites.

Pre-requisites

  1. You must be an team admin in your Uniform team to install this integration.
  2. Your Uniform account manager has already enabled this integration for your project.
  1. Go to your project and select Integrations from the main menu.

  2. Find Uniform Insights in the list of available integrations under the Analytics category.

    insights-integration-list
    Uniform Insights integration in the list of available integrations
  3. Click on the integration and then click the Add to project button.

  4. Specify your desired Endpoint from the dropdown menu and the Read Access Key provided by your Uniform account manager and click Save.

    insights-settings
    Insights integration settings

Congratulations! You've successfully added the Uniform Insights to your project. The last step is to configure the Insights plugin for the Uniform Context tracker.

Uniform Context tracker has a plugin system that allows you to add custom behavior to the tracker. For example, sending events about A/B testing and Personalization to any destination. Uniform Insights is using the same infrastructure to send event data to the Insights ingestion endpoint.

Once the event data is collected, it is available within your project UI in seconds.

In order to instument your web application to send data to the Insights ingestion endpoint, you need to add a special Insights plugin for the Uniform Context tracker.

This one-time configuration requires a simple code change in your application.

  1. First, you will need the endpoint URL, which you can grab from the integration settings page by copying the value from the Endpoint field.

    endpoint-url-copy
    Copy your endpoint URL from the integration settings page
  2. Next, you will need the API key to be able to push events to the Insights ingestion endpoint. This is a different key from the one you need for the Read API. Your Uniform account manager can provide you with the API key.

    Front-end framework specifics

    The example below is for Next.js, but similar apply for other front-end frameworks. If you are using a different framework, and in doubt on how to do this, please reach out to us at support@uniform.dev.

  3. Add the following environment variables to your project:

    .env
    # insert the endpoint URL you just copied into your clipboard from the settings page UNIFORM_INSIGHTS_ENDPOINT = 'your endpoint url' # insert the API key provided by your Uniform account manager UNIFORM_INSIGHTS_KEY = 'your api key'
  4. Find the implementation of your createUniformContext inside your web application. This is where all Uniform Context plugins are registered.

    Typically, it looks something like this:

    createUniformContext.ts
    export default function createUniformContext(manifest, serverContext) { const plugins = [enableContextDevTools()] return new Context({ defaultConsent: true, manifest, transitionStore: new NextCookieTransitionDataStore({ serverContext, }), plugins: plugins, }) }
  5. Import enableUniformInsights from the @uniformdev/context package and add it to the list of plugins (ensure that this is activated client-side).

    createUniformContext.ts
    import { enableUniformInsights } from '@uniformdev/context' // ... export default function createUniformContext(manifest, serverContext) { const plugins = [enableContextDevTools()] // adding the insights plugin client-side only if (typeof window !== 'undefined' && window.document) { plugins.push( // running against a local endpoint, will use edge middleware to rewrite to the actual endpoint enableUniformInsights({ endpoint: { type: 'proxy', path: '/api/insights-proxy', }, }) ) } return new Context({ defaultConsent: true, manifest, transitionStore: new NextCookieTransitionDataStore({ serverContext }), plugins: plugins, }) }
  6. Add a proxy route to your Next.js application to rewrite the path to the Insights ingestion endpoint.

    /api/insights-proxy.ts
    import { NextApiRequest, NextApiResponse } from 'next' export default async function handler(req: NextApiRequest, res: NextApiResponse) { const destination = new URL(process.env.UNIFORM_INSIGHTS_ENDPOINT!) destination.pathname = '/v0/events' destination.searchParams.set('name', 'analytics_events') const response = await fetch(destination.toString(), { method: 'POST', headers: { Authorization: `Bearer ${process.env.UNIFORM_INSIGHTS_KEY}`, }, body: JSON.stringify(req.body), }) const json = await response.json() res.status(response.status).json(json) }

Why proxy?

The purpose of not exposing your write API key as well as the ingestion endpoint running on another domain is to prevent ad blockers from blocking the events.

If everything is working, you should see your sent to /api/insights-proxy in the network tab of your favorite browser dev tool. It's expected to see 202 status code for each event sent with the following response body:

event-send-success
Verify your events are being sent