Skip to content

Commit 4d2d2a8

Browse files
authored
Merge pull request #299325 from MicrosoftDocs/repo_sync_working_branch
Confirm merge from repo_sync_working_branch to main to sync with https://github.com/MicrosoftDocs/azure-docs (branch main)
2 parents ca4fdc9 + 8eed4a8 commit 4d2d2a8

File tree

5 files changed

+16
-13
lines changed

5 files changed

+16
-13
lines changed

articles/azure-functions/functions-deploy-container-apps.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ Use these commands to create your required Azure resources:
8484
principalId=$(az identity create --name <USER_IDENTITY_NAME> --resource-group AzureFunctionsContainers-rg --location eastus --query principalId -o tsv)
8585
acrId=$(az acr show --name <REGISTRY_NAME> --query id --output tsv)
8686
az role assignment create --assignee-object-id $principalId --assignee-principal-type ServicePrincipal --role acrpull --scope $acrId
87-
storageId=$(az storage account show --resource-group AzureFunctionsContainers-rg --name glengatestaca2 --query 'id' -o tsv)
87+
storageId=$(az storage account show --resource-group AzureFunctionsContainers-rg --name <STORAGE_NAME> --query 'id' -o tsv)
8888
az role assignment create --assignee-object-id $principalId --assignee-principal-type ServicePrincipal --role "Storage Blob Data Owner" --scope $storageId
8989
```
9090

articles/azure-functions/functions-monitoring.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ In [C#](functions-dotnet-class-library.md#log-custom-telemetry-in-c-functions),
8888

8989
### Dependencies
9090

91-
Starting with version 2.x of Functions, Application Insights automatically collects data on dependencies for bindings that use certain client SDKs. Application Insights distributed tracing and dependency tracking aren't currently supported for C# apps running in an [isolated worker process](dotnet-isolated-process-guide.md). Application Insights collects data on the following dependencies:
91+
Starting with version 2.x of Functions, Application Insights automatically collects data on dependencies for bindings that use certain client SDKs. Application Insights collects data on the following dependencies:
9292

9393
+ Azure Cosmos DB
9494
+ Azure Event Hubs

articles/azure-functions/opentelemetry-howto.md

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -42,15 +42,6 @@ To enable OpenTelemetry output from the Functions host, update the [host.json fi
4242
```json
4343
{
4444
"version": "2.0",
45-
"logging": {
46-
"applicationInsights": {
47-
"samplingSettings": {
48-
"isEnabled": true,
49-
"excludedTypes": "Request"
50-
},
51-
"enableLiveMetricsFilters": true
52-
}
53-
},
5445
"telemetryMode": "openTelemetry"
5546
}
5647
```

articles/sap/center-sap-solutions/monitor-portal.md

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -254,7 +254,19 @@ If an error appears on a successfully registered or deployed Virtual Instance fo
254254
3. Navigate to the VIS resource and go to the Managed Resource Group from the Essentials section on Overview. Check if a Storage Account exists in this resource group. If it exists, then check if your virtual network allows connectivity from the SAP central services VM to this storage account. Enable connectivity if needed. If the storage account doesn't exist, then you will have to delete the VIS resource and register the system again.
255255
4. Check if the SAP central services VM system assigned managed identity has the ‘Storage Blob Data Owner’ access on the managed resource group of the VIS. If not, provide the necessary access. If the system assigned managed identity doesn't exist, then you will have to delete the VIS and re-register the system.
256256
5. Ensure sapstartsrv process for the SAP instance and SAP Hostctrl is running on the Central Services VM.
257-
6. If everything mentioned above is in place, then log a support ticket.
257+
6. If everything mentioned above is in place, then log a support ticket.
258+
259+
### Error - Database status showed **unavailable** on the Azure portal.
260+
**Possible causes:**
261+
The database list has not been passed on to the HnS script args. This results in the database status to be shown as unavailable.
262+
263+
This can happen in 2 scenarios:
264+
- SID of Database and HANA instance is not same. This would lead to db details not being discovered in the Discovery Workflow.
265+
- You have multi-db cluster which will also result in this error.
266+
267+
**Solution:**
268+
269+
- Ensure HANA instance and its database mapped to same SID
258270

259271
## Next steps
260272

articles/virtual-network/ip-services/private-ip-addresses.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ Private IPs allow communication to these resources without the use of a public I
3434

3535
Azure assigns private IP addresses to resources from the address range of the virtual network subnet where the resource is.
3636

37-
Azure reserves the first four addresses in each subnet address range. The addresses can't be assigned to resources. For example, if the subnet's address range is 10.0.0.0/16, addresses 10.0.0.0-10.0.0.3 and 10.0.255.255 are unavailable. IP addresses within the subnet's address range can only be assigned to one resource at a time.
37+
Azure reserves five IP addresses in every subnet, which cannot be assigned to resources. These include the first four addresses and the last address in the subnet range. For example, in the 10.0.0.0/16 subnet, the reserved addresses are 10.0.0.0-10.0.0.3 and 10.0.255.255. All other IP addresses in the range can only be assigned to one resource at a time.
3838

3939
There are two methods in which a private IP address is given:
4040

0 commit comments

Comments
 (0)