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
Copy file name to clipboardExpand all lines: src/connections/storage/data-lakes/sync-history.md
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -23,7 +23,7 @@ To access the Sync History page from the Segment app, open the **My Destinations
23
23
## Health
24
24
The health tab provides an overview of the rows that synced to your data lake both today and each day for the last 30 days.
25
25
26
-
The bar chart, 'Daily Synced Rows,' shows an overview of the rows synced for each of the last 30 days. Hovering over a date shows the number of rows that were synced for that day. Selecting a date from the bar chart opens the Daily Row Volume table, which provides a breakdown of which collections synced, how many rows from each collection synced, and the percentage of all synced rows from each collection.
26
+
The bar chart, 'Daily Synced Rows,' shows an overview of the rows synced for each of the last 30 days. Hovering over a date shows the number of rows that were synced for that day. Selecting a date from the bar chart opens the Daily Row Volume table, which provides a breakdown of which collections synced, how many rows from each collection synced, and the percentage of all synced rows from each collection.
27
27
28
28
The Daily Row Volume table contains the following information:
29
29
***Collections:** The name of each collection of properties synced to the data lake
Copy file name to clipboardExpand all lines: src/getting-started/02-simple-install.md
+6-6Lines changed: 6 additions & 6 deletions
Original file line number
Diff line number
Diff line change
@@ -38,7 +38,7 @@ To create a Segment source:
38
38
39
39
## Find your write key
40
40
41
-
The write key is the unique identifier for a source that tells Segment which source data comes from, to which workspace the data belongs to, and which destinations should receive the data.
41
+
The write key is the unique identifier for a source that tells Segment which source data comes from, to which workspace the data belongs, and which destinations should receive the data.
42
42
43
43
To find your write key:
44
44
1. Go to **Connections > Sources** and select your source.
@@ -51,7 +51,7 @@ Any time you change a library's settings in the Segment App, the write key regen
51
51

52
52
53
53
> info ""
54
-
> [Cloud-sources](/docs/connections/sources/about-cloud-sources/) do not have write keys, as they use a token or key from your account with that service. Cloud-sources have other considerations, and aren't part of this tutorial.
54
+
> [Cloud-sources](/docs/connections/sources/about-cloud-sources/) do not have write keys, as they use a token or key from your account with that service. Cloud-sources have other considerations and aren't part of this tutorial.
55
55
56
56
## Installing Segment
57
57
@@ -67,7 +67,7 @@ Click a tab below to see the tutorial content for the specific library you chose
67
67
68
68
### Step 1: Copy the Snippet
69
69
<br>
70
-
Paste the snippet from the Javascript Source overview page into the `<head>` tag of your site.
70
+
Paste the snippet from the JavaScript Source overview page into the `<head>` tag of your site.
71
71
<br><br>
72
72
That snippet loads Analytics.js onto the page _asynchronously_, so it won't affect your page load speed. Once the snippet runs on your site, you can turn on destinations from the destinations page in your workspace and data starts loading on your site automatically.
73
73
<br><br>
@@ -210,15 +210,15 @@ This call identifies Michael by his unique User ID (`f4ca124298`, which is the o
210
210
<br>
211
211
The `track` method is how you tell Segment about the actions your users are performing in your app. Every action triggers what we call an "event", which can also have associated properties. You can read more about `track` in the [track method reference](/docs/connections/sources/catalog/libraries/mobile/ios#track).
212
212
213
-
The Segment iOS SDK can automatically track a few important common events, such as **Application Installed**, **Application Updated** and **Application Opened**. You can enable this option during initialization by adding the following lines:
213
+
The Segment iOS SDK can automatically track a few important common events, such as **Application Installed**, **Application Updated**, and **Application Opened**. You can enable this option during initialization by adding the following lines:
You should also track events that indicate success in your mobile app, like **Signed Up**, **Item Purchased** or **Article Bookmarked**. Segment recommends that you track a few important events as you can always add more later.
221
+
You should also track events that indicate success in your mobile app, like **Signed Up**, **Item Purchased**, or **Article Bookmarked**. Segment recommends that you track a few important events as you can always add more later.
222
222
<br><br>
223
223
Here's what a `track` call might look like when a user signs up:
4) Replace `YOUR_WRITE_KEY` with the actual write key, which you can find in Segment under your project settings. Otherwise all that data goes straight to `/dev/null`.
280
+
4) Replace `YOUR_WRITE_KEY` with the actual write key, which you can find in Segment under your project settings. Otherwise, all that data goes straight to `/dev/null`.
281
281
<br><br>
282
282
You only need to call `init` once when your php file is requested. All of your files then have access to the same `Analytics` client.
0 commit comments