Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions examples/quote-of-the-day/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ The `onFeatureEvaluated` option registers a callback that automatically sends te

### Targeting Context in Telemetry

The telemetry implementation also captures the targeting context, which includes user ID and groups, in the telemetry data:
`createTargetingTelemetryProcessor` method creates a built-in Application Insights telemetry processor which gets targeting context from the targeting context accessor and attaches the targeting id to telemetry.

```javascript
// Initialize Application Insights with targeting context
Expand All @@ -48,7 +48,7 @@ applicationInsights.defaultClient.addTelemetryProcessor(
);
```

This ensures that every telemetry event sent to Application Insights includes the targeting identity information, allowing you to correlate feature flag usage with specific users or groups in your analytics.
This ensures that every telemetry sent to Application Insights includes the targeting id information, allowing you to correlate feature flag usage with specific users or groups in your analytics.

### Experimentation and A/B Testing

Expand Down Expand Up @@ -152,4 +152,4 @@ const requestStorageMiddleware = (req, res, next) => {
...

server.use(requestStorageMiddleware);
```
```