Skip to main content
Gainsight Inc.

Segment.com Server-side Integration

This article provides an overview of Segment server integration with Gainsight PX.

Overview

Gainsight PX supports integration with Segment.com server. The integration with server allows you to track data without the need to expose data to the front-end layer. This means you can track data with less efforts and without having that data flow through your client’s browser.

The types of data that can be tracked are unlimited and can rely on your server’s endpoint validation. For example, the server events that pass the basic user input validation such as login or form submissions can be tracked. Also, the tenant-level data such as tenant settings can be tracked.

For more information on how to set up Segment.com server-side integration with Gainsight PX, refer to the Configure Segment.com Cloud Destination (Server to Server) article from the Additional Resources section.

Tracking user transactions

SaaS platforms today are built using micro-services as part of implementing a service-oriented architecture. While being a highly scalable architecture, it is also known to be more challenging to track user transactions that tend to be distributed between different services. Server-side tracking allows the tracking code to correlate the user activity across services which can be used to measure API usage, SLA and performance among others.

analytics_qb.PNG

Server-side code example

analytics.enqueue(TrackMessage.builder("Item Purchased")
    .userId("f4ca124298")
    .properties(ImmutableMap.builder()
        .put("revenue", 39.95)
        .put("shipping", "2-day")
        .build()
    )
);