Skip to content

Commit 6f70071

Browse files
author
markzegarelli
committed
round 3
1 parent 0f4325d commit 6f70071

File tree

198 files changed

+600
-600
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

198 files changed

+600
-600
lines changed

lychee.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ headers = []
5050
### Exclusions
5151
###
5252
# Exclude URLs from checking (supports regex)
53-
exclude = ['https://segment.zendesk.com','(example-service)','(redacted)','(foo)','http://dl.bintray.com/swrve-inc/android','https://ajs.cd.segment.com/analytics.js/v1/','http://0.0.0.0:4000','https://api.segment.io/v1/', 'https://segment.com/docs/assets/docs.bundle.js','https://www.linkedin.com', 'https://segment.com/jobs/', 'https://segment.com/press/', 'https://github.com/segmentio', 'https://unpkg.com/@segment/[email protected]/standalone/consent-manager.js', '(segment.com)', '(segmentapis.com)', '(example.com)', '(schema.org)','(maxcdn)', '(your-org-name)', '(mywebsite)']
53+
exclude = ['(acme.com)','(webhooks.company.com)','(your-webhook-url)','https://segment.zendesk.com','(example-service)','(redacted)','(foo)','http://dl.bintray.com/swrve-inc/android','https://ajs.cd.segment.com/analytics.js/v1/','http://0.0.0.0:4000','https://api.segment.io/v1/', 'https://segment.com/docs/assets/docs.bundle.js','https://www.linkedin.com', 'https://segment.com/jobs/', 'https://segment.com/press/', 'https://github.com/segmentio', 'https://unpkg.com/@segment/[email protected]/standalone/consent-manager.js', '(segment.com)', '(segmentapis.com)', '(example.com)', '(schema.org)','(maxcdn)', '(your-org-name)', '(mywebsite)']
5454

5555
# Exclude URLs contained in a file from checking
5656
exclude_file = []

src/connections/destinations/catalog/activecampaign/index.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ This destination is maintained by ActiveCampaign. For any issues with the destin
1919

2020
## Page
2121

22-
If you're not familiar with the Segment Specs, take a look to understand what the [Page method](https://segment.com/docs/connections/spec/page/) does. An example call would look like:
22+
If you're not familiar with the Segment Specs, take a look to understand what the [Page method](/docs/connections/spec/page/) does. An example call would look like:
2323

2424
```js
2525
analytics.page();
@@ -32,7 +32,7 @@ When you call `page`, we will send that event to ActiveCampaign as a `site track
3232

3333
## Identify
3434

35-
If you're not familiar with the Segment Specs, take a look to understand what the [Identify method](https://segment.com/docs/connections/spec/identify/) does. An example call would look like:
35+
If you're not familiar with the Segment Specs, take a look to understand what the [Identify method](/docs/connections/spec/identify/) does. An example call would look like:
3636

3737
```js
3838
analytics.identify('ze8rt1u89', {
@@ -119,7 +119,7 @@ analytics.identify('ze8rt1u89', {
119119
```
120120
## Track
121121

122-
If you're not familiar with the Segment Specs, take a look to understand what the [Track method](https://segment.com/docs/connections/spec/track/) does. An example call would look like:
122+
If you're not familiar with the Segment Specs, take a look to understand what the [Track method](/docs/connections/spec/track/) does. An example call would look like:
123123

124124
```js
125125
analytics.track('Clicked a button', {

src/connections/destinations/catalog/adquick/index.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ This destination is maintained by AdQuick. For any issues with the destination,
2121

2222
## Page
2323

24-
If you're not familiar with the Segment Specs, take a look to understand what the [Page method](https://segment.com/docs/connections/spec/page/) does. An example call would look like:
24+
If you're not familiar with the Segment Specs, take a look to understand what the [Page method](/docs/connections/spec/page/) does. An example call would look like:
2525

2626
```
2727
analytics.page()
@@ -32,7 +32,7 @@ Page calls will be sent to AdQuick as a `pageview`.
3232

3333
## Screen
3434

35-
If you're not familiar with the Segment Specs, take a look to understand what the [Screen method](https://segment.com/docs/connections/spec/screen/) does. An example call would look like:
35+
If you're not familiar with the Segment Specs, take a look to understand what the [Screen method](/docs/connections/spec/screen/) does. An example call would look like:
3636

3737
```
3838
[[SEGAnalytics sharedAnalytics] screen:@"Home"];
@@ -43,7 +43,7 @@ Screen calls will be sent to AdQuick as a `screenview`.
4343

4444
## Identify
4545

46-
If you're not familiar with the Segment Specs, take a look to understand what the [Identify method](https://segment.com/docs/connections/spec/identify/) does. An example call would look like:
46+
If you're not familiar with the Segment Specs, take a look to understand what the [Identify method](/docs/connections/spec/identify/) does. An example call would look like:
4747

4848
```
4949
analytics.identify('userId123', {
@@ -56,7 +56,7 @@ Identify calls will be sent to AdQuick as an `identify` event.
5656

5757
## Track
5858

59-
If you're not familiar with the Segment Specs, take a look to understand what the [Track method](https://segment.com/docs/connections/spec/track/) does. An example call would look like:
59+
If you're not familiar with the Segment Specs, take a look to understand what the [Track method](/docs/connections/spec/track/) does. An example call would look like:
6060

6161
```
6262
analytics.track('Clicked Login Button')

src/connections/destinations/catalog/adroll/index.md

+5-5
Original file line numberDiff line numberDiff line change
@@ -19,26 +19,26 @@ title: AdRoll Destination
1919

2020
## Page
2121

22-
If you're not familiar with the Segment Specs, take a look to understand what the [Page method](https://segment.com/docs/connections/spec/page/) does. An example call would look like:
22+
If you're not familiar with the Segment Specs, take a look to understand what the [Page method](/docs/connections/spec/page/) does. An example call would look like:
2323
```javascript
2424
analytics.page()
2525
```
2626
_**NOTE:** The `page` call **must** be made on a page for any `identify` or `track` events to be sent to AdRoll. Our Analytics.js snippet includes a `page` call by default so you should be fine, unless you've manually removed the page call from your Analytics.js snippet._
2727

2828
## Identify
2929

30-
If you're not familiar with the Segment Specs, take a look to understand what the [Identify method](https://segment.com/docs/connections/spec/identify/) does. An example call would look like:
30+
If you're not familiar with the Segment Specs, take a look to understand what the [Identify method](/docs/connections/spec/identify/) does. An example call would look like:
3131
```javascript
3232
analytics.identify('123', {
3333
3434
});
3535
```
36-
Set a `userId` using the `identify` call which will then be passed it to AdRoll each time a [`track`](https://segment.com/docs/connections/destinations/catalog/adroll/#track) call is made. If you pass an `email` trait, we'll send that to AdRoll by setting `window.adroll_email` to that value.
36+
Set a `userId` using the `identify` call which will then be passed it to AdRoll each time a [`track`](/docs/connections/destinations/catalog/adroll/#track) call is made. If you pass an `email` trait, we'll send that to AdRoll by setting `window.adroll_email` to that value.
3737

3838

3939
## Track
4040

41-
If you're not familiar with the Segment Specs, take a look to understand what the [Track method](https://segment.com/docs/connections/spec/track/) does. An example call would look like:
41+
If you're not familiar with the Segment Specs, take a look to understand what the [Track method](/docs/connections/spec/track/) does. An example call would look like:
4242
```javascript
4343
analytics.track('Sign-up Form Completed');
4444
```
@@ -88,7 +88,7 @@ analytics.track('Vewed Product', {
8888

8989
### **Legacy:** Named Segments
9090

91-
Prior to rolling out Segment ID's, AdRoll allowed "named segments". If your account was created prior to 2015, then the track events you send from the browser using our [`analytics.track`](https://segment.com/docs/connections/destinations/catalog/adroll/#track) method will be passed on to AdRoll as `adroll_segments` with the segment being the snake-cased event name.
91+
Prior to rolling out Segment ID's, AdRoll allowed "named segments". If your account was created prior to 2015, then the track events you send from the browser using our [`analytics.track`](/docs/connections/destinations/catalog/adroll/#track) method will be passed on to AdRoll as `adroll_segments` with the segment being the snake-cased event name.
9292

9393
## Troubleshooting
9494

src/connections/destinations/catalog/adtriba/index.md

+5-5
Original file line numberDiff line numberDiff line change
@@ -17,12 +17,12 @@ This destination is maintained by Adtriba. For any issues with the destination,
1717

1818
1. From the Segment web app, click **Catalog**.
1919
2. Search for "Adtriba" in the Catalog, select it, and choose which of your sources to connect the destination to.
20-
3. Enter the "Project Tracker ID / API Key" into your Segment Settings UI which you can find from your [Adtriba dashboard](https://console.adtriba.com).
20+
3. Enter the "Project Tracker ID / API Key" into your Segment Settings UI which you can find from the Adtriba dashboard.
2121
4. Validate the forwarded events by checking the Tracking Report under the "Tracking" tab.
2222

2323
## Page
2424

25-
If you're not familiar with the Segment Specs, take a look to understand what the [Page method](https://segment.com/docs/connections/spec/page/) does. An example call would look like:
25+
If you're not familiar with the Segment Specs, take a look to understand what the [Page method](/docs/connections/spec/page/) does. An example call would look like:
2626

2727
```
2828
analytics.page()
@@ -33,7 +33,7 @@ Page calls will be sent to Adtriba as a `pageview`.
3333

3434
## Identify
3535

36-
If you're not familiar with the Segment Specs, take a look to understand what the [Identify method](https://segment.com/docs/connections/spec/identify/) does. An example call would look like:
36+
If you're not familiar with the Segment Specs, take a look to understand what the [Identify method](/docs/connections/spec/identify/) does. An example call would look like:
3737

3838
```
3939
analytics.identify('userId123', {
@@ -46,7 +46,7 @@ Identify calls will be sent to Adtriba as an `identify` event.
4646

4747
## Track
4848

49-
If you're not familiar with the Segment Specs, take a look to understand what the [Track method](https://segment.com/docs/connections/spec/track/) does. An example call would look like:
49+
If you're not familiar with the Segment Specs, take a look to understand what the [Track method](/docs/connections/spec/track/) does. An example call would look like:
5050

5151
```
5252
analytics.track('Conversion', {
@@ -58,4 +58,4 @@ analytics.track('Conversion', {
5858

5959
Track calls will be sent to Adtriba as a `track` event.
6060

61-
Trigger additional events by using [Semantic Events](https://segment.com/docs/connections/spec/semantic/) in order to enrich the Adtriba machine learning process.
61+
Trigger additional events by using [Semantic Events](/docs/connections/spec/semantic/) in order to enrich the Adtriba machine learning process.

src/connections/destinations/catalog/algolia-insights/index.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -32,9 +32,9 @@ You can read more about how to send Algolia-related data to Segment from [the do
3232

3333
## Track
3434

35-
If you're not familiar with the Segment Specs, take a look to understand what the [Track method](https://segment.com/docs/connections/spec/track/) does.
35+
If you're not familiar with the Segment Specs, take a look to understand what the [Track method](/docs/connections/spec/track/) does.
3636

37-
Algolia supports the following six events from Segment's [Ecommerce Spec](https://segment.com/docs/connections/spec/ecommerce/v2/).
37+
Algolia supports the following six events from Segment's [Ecommerce Spec](/docs/connections/spec/ecommerce/v2/).
3838

3939
<table>
4040
<tr>

src/connections/destinations/catalog/amazon-eventbridge/index.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -20,13 +20,13 @@ The Event Source will be denoted by your Segment Source ID, which you can find i
2020
We'll forward all the messages in the source (pending any Destination Filters you've enabled) to the Segment Partner Event Source we create for you in EventBridge.
2121

2222
## Page
23-
If you're not familiar with the Segment Specs, take a look to understand what the [Page method](https://segment.com/docs/connections/spec/page/) does. An example call would look like:
23+
If you're not familiar with the Segment Specs, take a look to understand what the [Page method](/docs/connections/spec/page/) does. An example call would look like:
2424
```javascript
2525
analytics.page();
2626
```
2727

2828
## Identify
29-
If you're not familiar with the Segment Specs, take a look to understand what the [Identify method](https://segment.com/docs/connections/spec/identify/) does. An example identify call is shown below:
29+
If you're not familiar with the Segment Specs, take a look to understand what the [Identify method](/docs/connections/spec/identify/) does. An example identify call is shown below:
3030
```javascript
3131
analytics.identify('97980cfea0085', {
3232
@@ -35,7 +35,7 @@ analytics.identify('97980cfea0085', {
3535
```
3636

3737
## Track
38-
If you're not familiar with the Segment Specs, take a look to understand what the [Track method](https://segment.com/docs/connections/spec/track/) does. An example identify call is shown below:
38+
If you're not familiar with the Segment Specs, take a look to understand what the [Track method](/docs/connections/spec/track/) does. An example identify call is shown below:
3939

4040
```javascript
4141
analytics.track("User Registered", {

src/connections/destinations/catalog/amazon-kinesis-firehose/index.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -49,13 +49,13 @@ To get started:
4949
2. Search and select the **Amazon Kinesis Firehose** destination and enter details for [these settings options](#settings).
5050

5151
## Page
52-
Take a look to understand what the [Page method](https://segment.com/docs/connections/spec/page/) does. An example call would look like:
52+
Take a look to understand what the [Page method](/docs/connections/spec/page/) does. An example call would look like:
5353
```javascript
5454
analytics.page();
5555
```
5656

5757
## Identify
58-
Take a look to understand what the [Identify method](https://segment.com/docs/connections/spec/identify/) does. An example identify call is shown below:
58+
Take a look to understand what the [Identify method](/docs/connections/spec/identify/) does. An example identify call is shown below:
5959
```javascript
6060
analytics.identify('97980cfea0085', {
6161
@@ -64,7 +64,7 @@ analytics.identify('97980cfea0085', {
6464
```
6565

6666
## Track
67-
Take a look to understand what the [Track method](https://segment.com/docs/connections/spec/track/) does. An example identify call is shown below:
67+
Take a look to understand what the [Track method](/docs/connections/spec/track/) does. An example identify call is shown below:
6868

6969
```js
7070
analytics.track("User Registered", {
@@ -116,7 +116,7 @@ firehose.putRecord({
116116
Segment appends a newline character to each record to allow for easy downstream parsing.
117117

118118
## Group
119-
Take a look to understand what the [Group method](https://segment.com/docs/connections/spec/group/) does. An example group call is shown below:
119+
Take a look to understand what the [Group method](/docs/connections/spec/group/) does. An example group call is shown below:
120120

121121
```js
122122
analytics.group("0e8c78ea9d9dsasahjg", {

src/connections/destinations/catalog/amazon-kinesis/index.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -51,14 +51,14 @@ To get started:
5151
* **NOTE:** For security purposes, Segment sets your Workspace ID as your Secret ID. If you’re using a Secret ID different from your Workspace ID, reach out to our support team so they can change it to make your account more secure.
5252

5353
## Page
54-
If you're not familiar with the Segment Specs, take a look to understand what the [Page method](https://segment.com/docs/connections/spec/page/) does. An example call would look like:
54+
If you're not familiar with the Segment Specs, take a look to understand what the [Page method](/docs/connections/spec/page/) does. An example call would look like:
5555

5656
```js
5757
analytics.page();
5858
```
5959

6060
## Identify
61-
If you're not familiar with the Segment Specs, take a look to understand what the [Identify method](https://segment.com/docs/connections/spec/identify/) does. An example call would look like:
61+
If you're not familiar with the Segment Specs, take a look to understand what the [Identify method](/docs/connections/spec/identify/) does. An example call would look like:
6262

6363
```js
6464
analytics.identify('97980cfea0085', {
@@ -68,7 +68,7 @@ analytics.identify('97980cfea0085', {
6868
```
6969

7070
## Track
71-
If you're not familiar with the Segment Specs, take a look to understand what the [Track method](https://segment.com/docs/connections/spec/track/) does. An example call would look like:
71+
If you're not familiar with the Segment Specs, take a look to understand what the [Track method](/docs/connections/spec/track/) does. An example call would look like:
7272

7373
```js
7474
analytics.track("User Registered", {
@@ -105,7 +105,7 @@ Segment uses the the `userId || anonymousId` as the `PartitionKey`. The partitio
105105
> **NOTE:** The JSON payload is base64 stringified.
106106
107107
## Group
108-
If you're not familiar with the Segment Specs, take a look to understand what the [Group method](https://segment.com/docs/connections/spec/group/) does.
108+
If you're not familiar with the Segment Specs, take a look to understand what the [Group method](/docs/connections/spec/group/) does.
109109

110110
An example group call is shown below:
111111
```js

src/connections/destinations/catalog/amazon-lambda/index.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -193,7 +193,7 @@ This setting controls the [Log Type](https://docs.aws.amazon.com/lambda/latest/d
193193
Due to how our event delivery system, [Centrifuge](https://segment.com/blog/introducing-centrifuge/), works, your Lambda can't take more than 5 seconds to run per message. If you're consistently running into timeout issues, you should consult the [AWS Lambda docs](https://docs.aws.amazon.com/lambda/index.html#lang/en_us), as well as docs for your language of choice, for tips on optimizing performance.
194194

195195
**Handling Common Errors**
196-
You can find delivery logs in Destination > [Event Delivery](https://segment.com/docs/guides/destinations/how-do-i-check-if-data-is-successfully-being-delivered-to-my-destination/).
196+
You can find delivery logs in Destination > [Event Delivery](/docs/guides/destinations/how-do-i-check-if-data-is-successfully-being-delivered-to-my-destination/).
197197

198198
Here are some common errors you may come across and how to resolve:
199199

src/connections/destinations/catalog/ambassador/index.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ Since Ambassador only records specific events and user data, events and users ma
2222

2323
## Identify
2424

25-
If you're not familiar with the Segment Specs, take a look to understand what the [Identify method](https://segment.com/docs/connections/spec/identify/) does.
25+
If you're not familiar with the Segment Specs, take a look to understand what the [Identify method](/docs/connections/spec/identify/) does.
2626

2727
For Ambassador it takes the unique `userId` of a user and a specific set of traits. All supported `traits` are listed in the example below:
2828

@@ -47,7 +47,7 @@ _**NOTE:** You can optionally use the URL campaign map to enroll the user as an
4747

4848
## Track
4949

50-
If you're not familiar with the Segment Specs, take a look to understand what the [Track method](https://segment.com/docs/connections/spec/track/) does.
50+
If you're not familiar with the Segment Specs, take a look to understand what the [Track method](/docs/connections/spec/track/) does.
5151

5252
For Ambassador `track` events will be recorded as a conversion if the Segment event name is mapped to a campaign in your Ambassador destination settings in the Segment UI. All supported `properties` are listed in the example below:
5353

0 commit comments

Comments
 (0)