Skip to content

Commit 7d83534

Browse files
committed
Clean up Overview page [netlify-build]
1 parent 5427c95 commit 7d83534

File tree

2 files changed

+22
-9
lines changed

2 files changed

+22
-9
lines changed

src/connections/auto-instrumentation/configuration.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ This interface ensures that every signal inherits essential properties:
8585

8686
```java
8787
interface RawSignal<T> {
88-
var anonymousId: String // A unique identifier for the user.
88+
var anonymousId: String //
8989
var type: SignalType // Specifies the signal category.
9090
var timestamp: String // The exact time when the signal was generated.
9191
var index: Int // An integer representing the signal's position.
@@ -99,10 +99,10 @@ The Signal Type enum defines the different types of signals the SDK can collect:
9999

100100
```java
101101
enum SignalType {
102-
Interaction, // User interactions like clicks or touches
102+
Interaction, // User interactions like clicks or touches.
103103
Navigation, // Navigation events.
104104
Network, // Network requests and responses.
105-
LocalData, // Data loaded from local or other external sources
105+
LocalData, // Data loaded from local or other external sources.
106106
Instrumentation, // Events generated from Segment Track/Screen/... events.
107107
UserDefined // Custom events defined by the user.
108108
}

src/connections/auto-instrumentation/index.md

Lines changed: 19 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -5,21 +5,34 @@ hidden: true
55

66
Auto-Instrumentation simplifies tracking in your websites and apps by eliminating the need for a traditional Segment instrumentation.
77

8-
With just a few lines of code, Auto-Instrumentation handles device tracking for you, helping you focus on collecting the data that's essential to your business and letting your marketers and data analysts gather and update data without relying on engineering teams.
9-
108
> info "Auto-Instrumentation Pilot"
119
> Auto-Instrumentation is currently in pilot and is governed by Segment's [First Access and Beta Preview Terms](https://www.twilio.com/en-us/legal/tos){:target="_blank"}. Segment doesn't recommend Auto-Instrumentation for use in a production environment, as Segment is actively iterating on and improving the user experience.
1210
1311
> success "Enable Auto-Instrumentation in your workspace"
14-
> To enable Auto-Instrumentation in your Segment worksapce, reach out to your dedicated account manager.
12+
> To enable Auto-Instrumentation in your Segment workspace, reach out to your dedicated account manager.
13+
14+
## Background
15+
16+
Gathering actionable and timely data is crucial to the success of your business. However, collecting this data in real time has historically proven challenging.
1517

16-
## Overview
18+
As your business needs change, keeping instrumentation up-to-date across all of your digital properties can be time-consuming, often taking weeks or months. This delay can lead to lost insights, frustration for your marketers and developers, and open-ended support of your Segment instrumentation.
19+
20+
## Auto-Instrumentation as a solution
21+
22+
With just a few lines of code, Auto-Instrumentation handles device tracking for you, helping you focus on collecting the data that's essential to your business and letting your marketers and data analysts gather and update data without relying on engineering teams.
1723

24+
Some Auto-Instrumentation advantages include:
1825

26+
- **JavaScript-based instrumentation logic**: Configure and refine your instrumentation logic entirely within JavaScript, simplifying the development process and reducing dependencies on other environments.
27+
- **Rapid iteration**: Update your instrumentation logic without the need to constantly release new versions of your mobile app, enabling faster iterations and improvements.
28+
- **Bypass update delays**: Avoid the typical delays associated with app update cycles and app store approvals. Auto-instrumentation lets you update your tracking setups or fix errors immediately, ensuring your data collection remains accurate and timely.
1929

20-
## How Auto-Instrumentation works
30+
## How it works
2131

32+
After you [integrate the Analytics SDK and Signals SDK into your application](/docs/connections/auto-instrumentation/setup/), Segment begins to passively monitor user activity like button clicks, page navigation, and network data. Segment captures these events as "Signals" and sends them to your Auto-Instrumentation source in real time.
2233

23-
### Privacy
34+
In Segment, the Auto-Instrumentation source lets you view raw signals. You can then [use this data to create detailed analytics events](/docs/connections/auto-instrumentation/configuration/) based on those signals, enriching your insights into user behavior and applicatino performance.
2435

36+
## Privacy
2537

38+
Auto-Instrumentation ensures that any personally identifiable information (PII) is removed from breadcrumbs before they get sent to Segment. No user data is visible to Segment.

0 commit comments

Comments
 (0)