Skip to content

Commit 892480b

Browse files
authored
tidying wording + casing
1 parent 81729f4 commit 892480b

File tree

1 file changed

+29
-29
lines changed

1 file changed

+29
-29
lines changed

src/connections/spec/signals.md

Lines changed: 29 additions & 29 deletions
Original file line numberDiff line numberDiff line change
@@ -2,18 +2,19 @@
22
title: 'Spec: Signals'
33
---
44

5-
This page is a guide for developers who want to track events with Segment's Auto-Instrumentation. It explains structure and definition of Signals.
6-
5+
This is a guide for developers who want to track events with Segment's Auto-Instrumentation. It explains the structure and definitions of Signals.
76

87
## Overview
98

10-
Signals provides automated user activity tracking through a sophisticated breadcrumb system. It captures crucial user interactions and allows you to transform them into meaningful analytics events using JavaScript.
9+
Signals provide automated user activity tracking through a sophisticated breadcrumb system. They capture crucial user interactions and allows you to transform them into meaningful analytics events using JavaScript.
10+
11+
### Key features
1112

12-
### Key Features
13+
The key features of signals include:
1314

1415
- **Comprehensive Activity Tracking**
1516
- User interface interactions
16-
- Network activity monitoring (inbound/outbound)
17+
- Network activity monitoring (inbound and outbound)
1718
- Local data access patterns
1819
- Integration with existing analytics events
1920
- **Enterprise-Grade Privacy**
@@ -25,18 +26,18 @@ Signals provides automated user activity tracking through a sophisticated breadc
2526
- Create custom event generation rules
2627
- Process and filter data in real-time
2728

28-
## Signal Types
29+
## Signal types
2930

3031
There are 6 different types of Signals:
3132

32-
- **Interaction Signal** - Captures user interactions with interface elements such as clicks, form submissions, and input changes
33-
- **Navigation Signal** - Tracks navigation events and screen/page transitions in web and mobile applications
34-
- **Network Signal** - Monitors HTTP requests and responses, including API calls and data fetching operations
35-
- **Local Data Signal** - Records local data storage operations like creating, reading, updating, or deleting data
36-
- **Instrumentation Signal** - Captures existing analytics events and instrumentation data from Segment Analytics
37-
- **User Defined Signal** - Allows for custom signal types with application-specific data and properties
33+
- **Interaction Signal** - Captures user interactions with interface elements such as clicks, form submissions, and input changes.
34+
- **Navigation Signal** - Tracks navigation events and [Screen](/docs/connections/spec/screen) or [Page](/docs/connections/spec/page) transitions in web and mobile applications.
35+
- **Network Signal** - Monitors HTTP requests and responses, including API calls and data fetching operations.
36+
- **Local Data Signal** - Records local data storage operations like creating, reading, updating, or deleting data.
37+
- **Instrumentation Signal** - Captures existing analytics events and instrumentation data from Segment Analytics.
38+
- **User-defined Signal** - Allows for custom signal types with application-specific data and properties.
3839

39-
### Base Signal Properties
40+
### Base signal properties
4041

4142
All signals include these base properties:
4243

@@ -61,9 +62,9 @@ All signals include these base properties:
6162
}
6263
```
6364

64-
#### Content Properties
65+
#### Content properties
6566

66-
The `Context` type is defined as follow:
67+
The `Context` type is defined as follows:
6768

6869
| Property | Type | Description |
6970
|----------|------|-------------|
@@ -92,7 +93,6 @@ The `Context` type is defined as follow:
9293
}
9394
```
9495

95-
9696
#### Web-Specific Properties
9797

9898
Web signals include additional page context:
@@ -122,10 +122,10 @@ Web signals include additional page context:
122122
}
123123
```
124124

125-
### Specific Signal Properties
126-
#### Interaction Signals
125+
### Specific signal properties
126+
#### Interaction signals
127127

128-
Capture user interactions with interface elements.
128+
Interaction signals capture user interactions with interface elements.
129129

130130
##### Web
131131

@@ -175,9 +175,9 @@ Capture user interactions with interface elements.
175175
}
176176
```
177177

178-
#### Navigation Signals
178+
#### Navigation signals
179179

180-
Track navigation and screen changes.
180+
Navigation signals track navigation and screen changes.
181181

182182
##### Web
183183

@@ -217,9 +217,9 @@ Track navigation and screen changes.
217217
}
218218
```
219219

220-
#### Network Signals
220+
#### Network signals
221221

222-
Monitor network requests and responses.
222+
Network signals monitor network requests and responses.
223223

224224
| Property | Type | Description |
225225
|----------|------|-------------|
@@ -244,7 +244,7 @@ Monitor network requests and responses.
244244
}
245245
```
246246

247-
#### Local Data Signals
247+
#### Local data signals
248248

249249
Track local data storage operations.
250250

@@ -263,9 +263,9 @@ Track local data storage operations.
263263
}
264264
```
265265

266-
#### Instrumentation Signals
266+
#### Instrumentation signals
267267

268-
Capture analytics events and instrumentation data.
268+
Instrumentation signals capture analytics events and instrumentation data.
269269

270270
| Property | Type | Description |
271271
|----------|------|-------------|
@@ -288,9 +288,9 @@ Capture analytics events and instrumentation data.
288288
}
289289
```
290290

291-
#### User Defined Signals
291+
#### User-defined signals
292292

293-
Allow for custom signal types with arbitrary data.
293+
User-defined signals allow for custom signal types with arbitrary data.
294294

295295
| Property | Type | Description |
296296
|----------|------|-------------|
@@ -305,4 +305,4 @@ Allow for custom signal types with arbitrary data.
305305
"userId": "user-12345",
306306
"confidence": 0.85
307307
}
308-
```
308+
```

0 commit comments

Comments
 (0)