If you wish to add any of your favorite monitoring or analytics tool on to your website or mobile application, use Segment. It also collects, cleans, and stores your customer data for you in a very organized way.

It is now easy to integrate Atatus with Segment by following the steps below.

  1. Get a Segment account.

    You can create a new account if you do not have one already.

  2. Enable the Atatus integration

    Go to Atatus integration on Segment to enable into your account.

  3. Enter your Atatus API key on Segment to start monitoring and you are all set.

Setting advanced configurations

If you want to add any extra setting to Atatus, you can use a ready callback so that you can get guaranteed access to the Atatus object.

copy
icon/buttons/copy
analytics.ready(function(){
    window.atatus.setVersion('1.0.0');
    window.atatus.setTags(['production', 'paid_user']);
    window.atatus.setCustomData({
        name: "John Doe",
        plan: "premium",
        beta_access: true
    });
    window.atatus.setHashRoutes(true);
});