Skip to content

Commit 6cc951e

Browse files
authored
Merge pull request #6229 from randallkanna/metricstory/destination
adds destination docs for MetricStory
2 parents b019737 + 9d2b47d commit 6cc951e

File tree

1 file changed

+43
-0
lines changed
  • src/connections/destinations/catalog/metricstory

1 file changed

+43
-0
lines changed
Lines changed: 43 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,43 @@
1+
---
2+
title: MetricStory Destination
3+
id: 65e8b496eec9c40dbccbf749
4+
beta: true
5+
---
6+
7+
[MetricStory](https://www.metricstory.ai){:target="_blank”} lets you run AI on your product analytics, create and generate charts, and analyze data in minutes.
8+
9+
MetricStoryAI maintains this destination. For any issues with the destination, contact the [MetricStory support team]([email protected]).
10+
11+
## Getting started
12+
1. From the Destination catalog page in the Segment app, search for MetricStory.
13+
2. Select and click **Add Destination**.
14+
3. Select an existing source to connect to.
15+
4. Go to the [API Keys](https://www.metricstory.ai/account/apikeys){:target="_blank"} page in MetricStory.ai.
16+
5. Copy your API key
17+
6. Enter the API key in the destination settings in Segment.
18+
19+
## Supported methods
20+
MetricStory supports the following methods, as specified in the [Segment Spec](/docs/connections/spec).
21+
22+
### Page
23+
The Page method triggers a call to Segment's `page` method which lets users query drop off in the funnel.
24+
25+
```js
26+
analytics.page()
27+
```
28+
29+
### Identify
30+
The Identify call identifies users for tracking purposes within MetricStory. MetricStory uses this data to group users together in cohorts, track individual user data, and more.
31+
32+
```js
33+
analytics.identify('userId123', {
34+
35+
});
36+
```
37+
38+
### Track
39+
MetricStory uses this data to understand how users are interacting with apps and lets users query data with AI through the events.
40+
41+
```js
42+
analytics.track('Login Button Clicked')
43+
```

0 commit comments

Comments
 (0)