Skip to content

Commit 9c117ea

Browse files
authored
Merge pull request #102591 from john-par/1668809-clean-up-broken-azure-docs-pr-links-01-27
1668809 clean up broken azure docs pr links 01-27
2 parents e8b7076 + d8a685e commit 9c117ea

13 files changed

+15
-15
lines changed

articles/active-directory/develop/scenario-desktop-acquire-token.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -410,7 +410,7 @@ To sign in a domain user on a domain or Azure AD joined machine, use Integrated
410410

411411
- The authority passed in `PublicClientApplicationBuilder` needs to be:
412412
- Tenanted of the form `https://login.microsoftonline.com/{tenant}/`, where `tenant` is either the GUID that represents the tenant ID or a domain associated with the tenant.
413-
- For any [work and school accounts](`https://login.microsoftonline.com/organizations/`).
413+
- For any work and school accounts: `https://login.microsoftonline.com/organizations/`.
414414
- Microsoft personal accounts aren't supported. You can't use /common or /consumers tenants.
415415

416416
- Because Integrated Windows Authentication is a silent flow:

articles/active-directory/saas-apps/gigya-tutorial.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@ To configure Azure AD single sign-on with Gigya, perform the following steps:
108108
`https://fidm.gigya.com/saml/v2.0/<companyname>`
109109

110110
> [!NOTE]
111-
> These values are not real. Update these values with the actual Sign on URL and Identifier. Contact [Gigya Client support team](https://www.gigya.com/support-policy/) to get these values. You can also refer to the patterns shown in the **Basic SAML Configuration** section in the Azure portal.
111+
> These values are not real. Update these values with the actual Sign on URL and Identifier. Contact [Gigya Client support team](https://developers.gigya.com/display/GD/Opening+A+Support+Incident) to get these values. You can also refer to the patterns shown in the **Basic SAML Configuration** section in the Azure portal.
112112

113113
5. On the **Set up Single Sign-On with SAML** page, in the **SAML Signing Certificate** section, click **Download** to download the **Certificate (Base64)** from the given options as per your requirement and save it on your computer.
114114

articles/azure-functions/functions-create-first-function-python.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -202,7 +202,7 @@ To deploy your function code to Azure, you need to create three resources:
202202

203203
You use Azure CLI commands to create these items. Each command provides JSON output upon completion.
204204

205-
1. If you haven't done so already, sign in to Azure with the [az login](/cli/azure/group#az-login) command:
205+
1. If you haven't done so already, sign in to Azure with the [az login](/cli/azure/reference-index#az-login) command:
206206

207207
```azurecli
208208
az login

articles/azure-functions/functions-create-function-linux-custom-image.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -285,7 +285,7 @@ To deploy your function code to Azure, you need to create three resources:
285285
286286
You use Azure CLI commands to create these items. Each command provides JSON output upon completion.
287287
288-
1. Sign in to Azure with the [az login](/cli/azure/group#az-login) command:
288+
1. Sign in to Azure with the [az login](/cli/azure/reference-index#az-login) command:
289289
290290
```azurecli
291291
az login

articles/azure-monitor/app/opencensus-python.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -133,7 +133,7 @@ Here are the exporters that OpenCensus provides mapped to the types of telemetry
133133

134134
4. Now when you run the Python script, you should still be prompted to enter values, but only the value is being printed in the shell. The created `SpanData` will be sent to Azure Monitor. You can find the emitted span data under `dependencies`.
135135

136-
5. For information on sampling in OpenCensus, take a look at [sampling in OpenCensus](https://docs.microsoft.com/azure/azure-monitor/app/sampling#configuring-fixed-rate-sampling-in-opencensus-python).
136+
5. For information on sampling in OpenCensus, take a look at [sampling in OpenCensus](sampling.md#configuring-fixed-rate-sampling-for-opencensus-python-applications).
137137

138138
6. For details on telemetry correlation in your trace data, take a look at OpenCensus [telemetry correlation](https://docs.microsoft.com/azure/azure-monitor/app/correlation#telemetry-correlation-in-opencensus-python).
139139

articles/azure-monitor/app/pricing.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,9 +34,9 @@ There are two approaches to address this: use of default monitoring and adaptive
3434

3535
### Data collection when using sampling
3636

37-
With the ASP.NET SDK's [adaptive sampling](https://docs.microsoft.com/azure/azure-monitor/app/sampling#adaptive-sampling-in-your-aspnetaspnet-core-web-applications), the data volume is adjusted automatically to keep within a specified maximum rate of traffic for default Application Insights monitoring. If the application produces a low amount of telemetry, such as when debugging or due to low usage, items won't be dropped by the sampling processor as long as volume is below the configured events per second level. For a high volume application, with the default threshold of five events per second, adaptive sampling will limit the number of daily events to 432,000. Using a typical average event size of 1 KB, this corresponds to 13.4 GB of telemetry per 31-day month per node hosting your application (since the sampling is done local to each node.)
37+
With the ASP.NET SDK's [adaptive sampling](sampling.md#adaptive-sampling), the data volume is adjusted automatically to keep within a specified maximum rate of traffic for default Application Insights monitoring. If the application produces a low amount of telemetry, such as when debugging or due to low usage, items won't be dropped by the sampling processor as long as volume is below the configured events per second level. For a high volume application, with the default threshold of five events per second, adaptive sampling will limit the number of daily events to 432,000. Using a typical average event size of 1 KB, this corresponds to 13.4 GB of telemetry per 31-day month per node hosting your application (since the sampling is done local to each node.)
3838

39-
For SDKs that don't support adaptive sampling, you can employ [ingestion sampling](https://docs.microsoft.com/azure/azure-monitor/app/sampling#ingestion-sampling), which samples when the data is received by Application Insights based on a percentage of data to retain, or [fixed-rate sampling for ASP.NET, ASP.NET Core, and Java websites](https://docs.microsoft.com/azure/azure-monitor/app/sampling#fixed-rate-sampling-for-aspnet-aspnet-core-java-websites-and-python-applications) to reduce the traffic sent from your web server and web browsers
39+
For SDKs that don't support adaptive sampling, you can employ [ingestion sampling](https://docs.microsoft.com/azure/azure-monitor/app/sampling#ingestion-sampling), which samples when the data is received by Application Insights based on a percentage of data to retain, or [fixed-rate sampling for ASP.NET, ASP.NET Core, and Java websites](sampling.md#fixed-rate-sampling) to reduce the traffic sent from your web server and web browsers
4040

4141
### Learn from what similar customers collect
4242

articles/backup/backup-afs-cli.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ If you want to trigger an on-demand backup for your file share instead of waitin
9999

100100
You need to define the following parameters to trigger an on-demand backup:
101101

102-
* **--container-name** is the name of the storage account hosting the file share. To retrieve the **name** or **friendly name** of your container, use the [az backup container list](https://docs.microsoft.com/azure/backup/container?view=azure-cli-latest#az-backup-container-list) command.
102+
* **--container-name** is the name of the storage account hosting the file share. To retrieve the **name** or **friendly name** of your container, use the [az backup container list](/cli/azure/backup/container?view=azure-cli-latest#az-backup-container-list) command.
103103
* **--item-name** is the name of the file share for which you want to trigger an on-demand backup. To retrieve the **name** or **friendly name** of your backed-up item, use the [az backup item list](https://docs.microsoft.com/cli/azure/backup/item?view=azure-cli-latest#az-backup-item-list) command.
104104
* **--retain-until** specifies the date until when you want to retain the recovery point. The value should be set in UTC time format (dd-mm-yyyy).
105105

articles/cognitive-services/LUIS/luis-tutorial-review-endpoint-utterances.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ Use the following steps to import an app.
4343

4444
1. Download and save [app JSON file](https://github.com/Azure-Samples/cognitive-services-language-understanding/blob/master/documentation-samples/tutorials/custom-domain-sentiment-HumanResources.json?raw=true).
4545

46-
1. On the [preview LUIS portal](https://preview.luis-ai), import the .json file into a new app.
46+
1. On the [preview LUIS portal](https://preview.luis.ai), import the .json file into a new app.
4747

4848
1. From the **Manage** section, on the **Versions** tab, clone the version, and name it `review`.
4949

articles/cognitive-services/personalizer/what-is-personalizer.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -95,6 +95,6 @@ Since Personalizer uses collective information in near real-time to return the s
9595
* [What is Reinforcement Learning?](concepts-reinforcement-learning.md)
9696
* [Learn about features and actions for the Rank request](concepts-features.md)
9797
* [Learn about determining the score for the Reward request](concept-rewards.md)
98-
* [Quickstarts]()
99-
* [Tutorial]()
98+
* [Quickstarts](sdk-learning-loop.md)
99+
* [Tutorial](tutorial-use-azure-notebook-generate-loop-data.md)
100100
* [Use the interactive demo](https://personalizationdemo.azurewebsites.net/)

articles/migrate/how-to-discover-applications.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ App discovery using Azure Migrate: Server Assessment is agentless. Nothing needs
2323
2. Make sure you've [added](how-to-assess.md) the Azure Migrate: Server Assessment tool to a project.
2424
4. Check the [VMware requirements](migrate-support-matrix-vmware.md#vmware-requirements) for discovering and assessing VMware VMs with the Azure Migrate appliance.
2525
5. Check the [requirements](migrate-appliance.md) for deploying the Azure Migrate appliance.
26-
6. [Verify support and requirements](/migrate-support-matrix-vmware.md#application-discovery) for application discovery.
26+
6. [Verify support and requirements](migrate-support-matrix-vmware.md#application-discovery) for application discovery.
2727

2828
## Prepare for app discovery
2929

0 commit comments

Comments
 (0)