You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
[Atatus](https://www.atatus.com/) provides visibility into the performance of an application and its underlying infrastructure under a single dashboard. This visibility can help businesses identify and diagnose issues, and take corrective action to prevent or resolve application issues.
7
+
8
+
## Getting Started
9
+
Before you start, make sure Atatus supports the source type and connection mode you’ve chosen to implement. You can learn more about [connection modes here](/docs/connections/destinations/#connection-modes).
10
+
11
+
1. From the destinations catalog page in the segment web app, click on **Destinations -> Add Destination**.
12
+
2. Search for "Atatus" in the destination catalog and select Atatus as the destination.
13
+
3. Click on **Configure Atatus**.
14
+
4. Choose which **Data Source** should send data to the Atatus destination and click Next.
15
+
5. Enter the desired destination and click Save. You will be navigated to the settings page where
16
+
you will have to add the API key to start receiving insights.
17
+
6. You can find the API key in your browser project settings.
18
+
7. Enter the **API Key** in the Atatus destination settings in Segment.
19
+
20
+
## Supported Methods
21
+
22
+
### Identify
23
+
If you’re not familiar with the Segment Specs, take a look to understand what the [Identify](https://segment.com/docs/connections/spec/identify/) method does. An example call would look like this:
24
+
25
+
```javascript
26
+
analytics.identify('userid_123', {
27
+
name:"John Doe",
28
+
email:"johndoe@example.com"
29
+
});
30
+
```
31
+
When you call `identify()` method, the Atatus SDK call `atatus.setUser` by passing in the traits you provided. Atatus will map the userId you provide as traits.id with which you can easily track user activity and gain a specific user's performance insights.
0 commit comments