Skip to content

Commit bc1e99b

Browse files
authored
Merge pull request #222308 from pritamso/Broken-link-fix-AaronMaxwell
Broken link fixed
2 parents 7e37a87 + 9adb434 commit bc1e99b

File tree

5 files changed

+19
-18
lines changed

5 files changed

+19
-18
lines changed

articles/azure-monitor/app/annotations.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -215,7 +215,7 @@ Create a separate API key for each of your Azure Pipelines release templates.
215215
216216
217217
> [!NOTE]
218-
> Limits for API keys are described in the [REST API rate limits documentation](https://dev.applicationinsights.io/documentation/Authorization/Rate-limits).
218+
> Limits for API keys are described in the [REST API rate limits documentation](/rest/api/yammer/rest-api-rate-limits).
219219
220220
### Transition to the new release annotation
221221
@@ -227,4 +227,4 @@ To use the new release annotations:
227227
## Next steps
228228
229229
* [Create work items](./diagnostic-search.md#create-work-item)
230-
* [Automation with PowerShell](./powershell.md)
230+
* [Automation with PowerShell](./powershell.md)

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1155,7 +1155,7 @@ None. You don't need to wrap them in try-catch clauses. If the SDK encounters pr
11551155

11561156
### Is there a REST API to get data from the portal?
11571157

1158-
Yes, the [data access API](https://dev.applicationinsights.io/). Other ways to extract data include [Power BI](..\logs\log-powerbi.md) if you've [migrated to a workspace-based resource](convert-classic-resource.md) or [continuous export](./export-telemetry.md) if you're still on a classic resource.
1158+
Yes, the [data access API](/rest/api/application-insights/). Other ways to extract data include [Power BI](..\logs\log-powerbi.md) if you've [migrated to a workspace-based resource](convert-classic-resource.md) or [continuous export](./export-telemetry.md) if you're still on a classic resource.
11591159

11601160
### Why are my calls to custom events and metrics APIs ignored?
11611161

articles/azure-monitor/app/automate-custom-reports.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ Each enterprise has its unique reporting needs, such as:
2424
2525
## Automate custom report emails
2626

27-
You can [programmatically query Application Insights](https://dev.applicationinsights.io/) data to generate custom reports on a schedule. The following options can help you get started quickly:
27+
You can [programmatically query Application Insights](/rest/api/application-insights/) data to generate custom reports on a schedule. The following options can help you get started quickly:
2828

2929
* [Automate reports with Power Automate](../logs/logicapp-flow-connector.md).
3030
* [Automate reports with Azure Logic Apps](automate-with-logic-apps.md).
@@ -146,6 +146,6 @@ These steps only apply if you don't already have a SendGrid account configured.
146146
## Next steps
147147

148148
* Learn more about creating [Analytics queries](../logs/get-started-queries.md).
149-
* Learn more about [programmatically querying Application Insights data](https://dev.applicationinsights.io/)
149+
* Learn more about [programmatically querying Application Insights data](/rest/api/application-insights/)
150150
* Learn more about [Logic Apps](../../logic-apps/logic-apps-overview.md).
151151
* Learn more about [Power Automate](https://ms.flow.microsoft.com).

articles/azure-monitor/app/create-new-resource.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -327,8 +327,7 @@ Currently the only regions that require endpoint modifications are [Azure Govern
327327
| Azure Government | QuickPulse (Live Metrics) |`https://quickpulse.applicationinsights.us/QuickPulseService.svc` |
328328
| Azure Government | Profile Query |`https://dc.applicationinsights.us/api/profiles/{0}/appId` |
329329

330-
If you currently use the [Application Insights REST API](https://dev.applicationinsights.io/
331-
) which is normally accessed via `api.applicationinsights.io' you will need to use an endpoint that is local to your region:
330+
If you currently use the [Application Insights REST API](/rest/api/application-insights/) which is normally accessed via `api.applicationinsights.io' you will need to use an endpoint that is local to your region:
332331

333332
|Region | Endpoint Name | Value |
334333
|-----------------|:------------|:-------------|

articles/azure-monitor/app/data-model-metric-telemetry.md

Lines changed: 13 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -16,17 +16,19 @@ There are several well-known metric names supported by Application Insights. The
1616

1717
Metric representing system and process counters:
1818

19-
| **.NET name** | **Platform agnostic name** | **REST API name** | **Description**
20-
| ------------------------- | -------------------------- | ----------------- | ----------------
21-
| `\Processor(_Total)\% Processor Time` | Work in progress... | [processorCpuPercentage](https://dev.applicationinsights.io/apiexplorer/metrics?appId=DEMO_APP&apiKey=DEMO_KEY&metricId=performanceCounters%2FprocessorCpuPercentage) | total machine CPU
22-
| `\Memory\Available Bytes` | Work in progress... | [memoryAvailableBytes](https://dev.applicationinsights.io/apiexplorer/metrics?appId=DEMO_APP&apiKey=DEMO_KEY&metricId=performanceCounters%2FmemoryAvailableBytes) | Shows the amount of physical memory, in bytes, available to processes running on the computer. It is calculated by summing the amount of space on the zeroed, free, and standby memory lists. Free memory is ready for use; zeroed memory consists of pages of memory filled with zeros to prevent later processes from seeing data used by a previous process; standby memory is memory that has been removed from a process's working set (its physical memory) en route to disk but is still available to be recalled. See [Memory Object](/previous-versions/ms804008(v=msdn.10))
23-
| `\Process(??APP_WIN32_PROC??)\% Processor Time` | Work in progress... | [processCpuPercentage](https://dev.applicationinsights.io/apiexplorer/metrics?appId=DEMO_APP&apiKey=DEMO_KEY&metricId=performanceCounters%2FprocessCpuPercentage) | CPU of the process hosting the application
24-
| `\Process(??APP_WIN32_PROC??)\Private Bytes` | Work in progress... | [processPrivateBytes](https://dev.applicationinsights.io/apiexplorer/metrics?appId=DEMO_APP&apiKey=DEMO_KEY&metricId=performanceCounters%2FprocessPrivateBytes) | memory used by the process hosting the application
25-
| `\Process(??APP_WIN32_PROC??)\IO Data Bytes/sec` | Work in progress... | [processIOBytesPerSecond](https://dev.applicationinsights.io/apiexplorer/metrics?appId=DEMO_APP&apiKey=DEMO_KEY&metricId=performanceCounters%2FprocessIOBytesPerSecond) | rate of I/O operations runs by process hosting the application
26-
| `\ASP.NET Applications(??APP_W3SVC_PROC??)\Requests/Sec` | Work in progress... | [requestsPerSecond](https://dev.applicationinsights.io/apiexplorer/metrics?appId=DEMO_APP&apiKey=DEMO_KEY&metricId=performanceCounters%2FrequestsPerSecond) | rate of requests processed by application
27-
| `\.NET CLR Exceptions(??APP_CLR_PROC??)\# of Exceps Thrown / sec` | Work in progress... | [exceptionsPerSecond](https://dev.applicationinsights.io/apiexplorer/metrics?appId=DEMO_APP&apiKey=DEMO_KEY&metricId=performanceCounters%2FexceptionsPerSecond) | rate of exceptions thrown by application
28-
| `\ASP.NET Applications(??APP_W3SVC_PROC??)\Request Execution Time` | Work in progress... | [requestExecutionTime](https://dev.applicationinsights.io/apiexplorer/metrics?appId=DEMO_APP&apiKey=DEMO_KEY&metricId=performanceCounters%2FrequestExecutionTime) | average requests execution time
29-
| `\ASP.NET Applications(??APP_W3SVC_PROC??)\Requests In Application Queue` | Work in progress... | [requestsInQueue](https://dev.applicationinsights.io/apiexplorer/metrics?appId=DEMO_APP&apiKey=DEMO_KEY&metricId=performanceCounters%2FrequestsInQueue) | number of requests waiting for the processing in a queue
19+
| **.NET name** | **Platform agnostic name** | **Description**
20+
| ------------------------- | -------------------------- | ----------------
21+
| `\Processor(_Total)\% Processor Time` | Work in progress... | total machine CPU
22+
| `\Memory\Available Bytes` | Work in progress... | Shows the amount of physical memory, in bytes, available to processes running on the computer. It is calculated by summing the amount of space on the zeroed, free, and standby memory lists. Free memory is ready for use; zeroed memory consists of pages of memory filled with zeros to prevent later processes from seeing data used by a previous process; standby memory is memory that has been removed from a process's working set (its physical memory) en route to disk but is still available to be recalled. See [Memory Object](/previous-versions/ms804008(v=msdn.10))
23+
| `\Process(??APP_WIN32_PROC??)\% Processor Time` | Work in progress... | CPU of the process hosting the application
24+
| `\Process(??APP_WIN32_PROC??)\Private Bytes` | Work in progress... | memory used by the process hosting the application
25+
| `\Process(??APP_WIN32_PROC??)\IO Data Bytes/sec` | Work in progress... | rate of I/O operations runs by process hosting the application
26+
| `\ASP.NET Applications(??APP_W3SVC_PROC??)\Requests/Sec` | Work in progress... | rate of requests processed by application
27+
| `\.NET CLR Exceptions(??APP_CLR_PROC??)\# of Exceps Thrown / sec` | Work in progress... | rate of exceptions thrown by application
28+
| `\ASP.NET Applications(??APP_W3SVC_PROC??)\Request Execution Time` | Work in progress... | average requests execution time
29+
| `\ASP.NET Applications(??APP_W3SVC_PROC??)\Requests In Application Queue` | Work in progress... | number of requests waiting for the processing in a queue
30+
31+
See [Metrics - Get](/rest/api/application-insights/metrics/get) for more information on the Metrics REST API.
3032

3133
## Name
3234

0 commit comments

Comments
 (0)