Skip to content

Commit 2e866a3

Browse files
committed
update to JavaScript extensions
1 parent 9dcf023 commit 2e866a3

12 files changed

+279
-231
lines changed

.openpublishing.redirection.azure-monitor.json

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,26 @@
3535
"redirect_url": "/azure/azure-monitor/change/change-analysis",
3636
"redirect_document_id": false
3737
},
38+
{
39+
"source_path_from_root": "/articles/azure-monitor/app/javascript-react-plugin.md",
40+
"redirect_url": "/azure/azure-monitor/app/javascript-framework-extensions",
41+
"redirect_document_id": false
42+
},
43+
{
44+
"source_path_from_root": "/articles/azure-monitor/app/javascript-react-native-plugin.md",
45+
"redirect_url": "/azure/azure-monitor/app/javascript-framework-extensions",
46+
"redirect_document_id": false
47+
},
48+
{
49+
"source_path_from_root": "/articles/azure-monitor/app/javascript-angular-plugin.md",
50+
"redirect_url": "/azure/azure-monitor/app/javascript-framework-extensions",
51+
"redirect_document_id": false
52+
},
53+
{
54+
"source_path_from_root": "/articles/azure-monitor/app/javascript-click-analytics-plugin.md",
55+
"redirect_url": "/azure/azure-monitor/app/javascript-feature-extensions",
56+
"redirect_document_id": false
57+
},
3858
{
3959
"source_path_from_root": "/articles/azure-monitor/app/java-in-process-agent-redirect.md",
4060
"redirect_url": "/azure/azure-monitor/app/opentelemetry-enable",

articles/azure-monitor/app/api-custom-events-metrics.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -146,7 +146,7 @@ telemetry.trackEvent({name: "WinGame"});
146146

147147
### Custom events in Log Analytics
148148

149-
The telemetry is available in the `customEvents` table on the [Application Insights Logs tab](../logs/log-query-overview.md) or [usage experience](usage-overview.md). Events might come from `trackEvent(..)` or the [Click Analytics Auto-collection plug-in](javascript-click-analytics-plugin.md).
149+
The telemetry is available in the `customEvents` table on the [Application Insights Logs tab](../logs/log-query-overview.md) or [usage experience](usage-overview.md). Events might come from `trackEvent(..)` or the [Click Analytics Auto-collection plug-in](javascript-feature-extensions.md).
150150

151151
If [sampling](./sampling.md) is in operation, the `itemCount` property shows a value greater than `1`. For example, `itemCount==10` means that of 10 calls to `trackEvent()`, the sampling process transmitted only one of them. To get a correct count of custom events, use code such as `customEvents | summarize sum(itemCount)`.
152152

articles/azure-monitor/app/app-insights-overview.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ Application Insights provides other features including, but not limited to:
2020

2121
- [Live Metrics](live-stream.md) – observe activity from your deployed application in real time with no effect on the host environment
2222
- [Availability](availability-overview.md) – also known as “Synthetic Transaction Monitoring”, probe your applications external endpoint(s) to test the overall availability and responsiveness over time
23-
- [GitHub or Azure DevOps integration](work-item-integration.md) – create [GitHub](/training/paths/github-administration-products/) or [Azure DevOps](/azure/devops/?view=azure-devops) work items in context of Application Insights data
23+
- [GitHub or Azure DevOps integration](work-item-integration.md) – create [GitHub](/training/paths/github-administration-products/) or [Azure DevOps](/azure/devops/) work items in context of Application Insights data
2424
- [Usage](usage-overview.md) – understand which features are popular with users and how users interact and use your application
2525
- [Smart Detection](proactive-diagnostics.md) – automatic failure and anomaly detection through proactive telemetry analysis
2626

@@ -129,9 +129,9 @@ Supported platforms and frameworks are listed here.
129129
* [Node.js](./nodejs.md)
130130
* [Python](./opencensus-python.md)
131131
* [JavaScript - web](./javascript.md)
132-
* [React](./javascript-react-plugin.md)
133-
* [React Native](./javascript-react-native-plugin.md)
134-
* [Angular](./javascript-angular-plugin.md)
132+
* [React](./javascript-framework-extensions.md)
133+
* [React Native](./javascript-framework-extensions.md)
134+
* [Angular](./javascript-framework-extensions.md)
135135
* [Windows desktop applications, services, and worker roles](https://github.com/Microsoft/appcenter)
136136
* [Universal Windows app](https://github.com/Microsoft/appcenter) (App Center)
137137
* [Android](https://github.com/Microsoft/appcenter) (App Center)

articles/azure-monitor/app/javascript-angular-plugin.md

Lines changed: 0 additions & 105 deletions
This file was deleted.

articles/azure-monitor/app/javascript-click-analytics-plugin.md renamed to articles/azure-monitor/app/javascript-feature-extensions.md

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,19 @@
11
---
2-
title: Click Analytics Auto-collection plugin for Application Insights JavaScript SDK
3-
description: How to install and use Click Analytics Auto-collection plugin for Application Insights JavaScript SDK.
2+
title: Feature extensions for Application Insights JavaScript SDK (Click Analytics)
3+
description: Learn how to install and use JavaScript feature extensions (Click Analytics) for Application Insights JavaScript SDK.
44
services: azure-monitor
5-
ms.workload: tbd
65
ms.tgt_pltfrm: ibiza
76
ms.topic: conceptual
8-
ms.date: 01/14/2021
7+
ms.date: 02/13/2023
98
ms.devlang: javascript
109
ms.reviewer: mmcc
1110
---
1211

13-
# Click Analytics Auto-collection plugin for Application Insights JavaScript SDK
12+
# Feature extensions for Application Insights JavaScript SDK (Click Analytics)
1413

15-
This plugin automatically tracks click events on web pages and uses data-* attributes on HTML elements to populate event telemetry.
14+
App Insights JavaScript SDK feature extensions are additional features that can be added to the Application Insights JavaScript SDK to enhance its functionality.
15+
16+
In this article, we cover the Click Analytics plugin that automatically tracks click events on web pages and uses data-* attributes on HTML elements to populate event telemetry.
1617

1718
[!INCLUDE [azure-monitor-log-analytics-rebrand](../../../includes/azure-monitor-instrumentation-key-deprecation.md)]
1819

0 commit comments

Comments
 (0)