Finally, I could solve it by setting sampling via Azure CLI:
az resource update --resource-group my-rg --name my-app-insights --resource-type "Microsoft.Insights/components" --set properties.SamplingPercentage=100
This browser is no longer supported.
Upgrade to Microsoft Edge to take advantage of the latest features, security updates, and technical support.
I provisioned Application Insights (aym1-app-insights-test). Then I started to ingest data via Angular app, you can see the below payload. After waiting for 4 hours I still cannot see any logs. Please advise.
[
{
"time": "2025-12-02T18:56:52.521Z",
"iKey": "e941a837-ef4f-4793-bb8e-2df6367a63e0",
"name": "Microsoft.ApplicationInsights.e941a837ef4f4793bb8e2df6367a63e0.RemoteDependency",
"tags": {
"ai.user.authUserId": "ef50dfc4-ea6d-49bc-a6e8-4e3af9229844",
"ai.user.id": "c4bxj+8Uz4HAHnVyfystT2",
"ai.session.id": "hs2ypmEEAwJRK8bT6Ugcsi",
"ai.device.id": "browser",
"ai.device.type": "Browser",
"ai.operation.name": "/advisor/products",
"ai.operation.id": "2fdf534f8f2a4ace9be130cb6858faef",
"ai.internal.sdkVersion": "javascript:3.3.10"
},
"data": {
"baseType": "RemoteDependencyData",
"baseData": {
"id": "|2fdf534f8f2a4ace9be130cb6858faef.084a9931dd714b04.",
"ver": 2,
"name": "GET https://localhost:7195/api/products?status=Submitted",
"resultCode": "200",
"duration": "00:00:01.317",
"success": true,
"data": "GET https://localhost:7195/api/products?status=Submitted",
"target": "localhost:7195",
"type": "Fetch",
"properties": {
"HttpMethod": "GET"
},
"measurements": {}
}
}
},
{
"time": "2025-12-02T18:56:59.824Z",
"iKey": "e941a837-ef4f-4793-bb8e-2df6367a63e0",
"name": "Microsoft.ApplicationInsights.e941a837ef4f4793bb8e2df6367a63e0.Event",
"tags": {
"ai.user.authUserId": "ef50dfc4-ea6d-49bc-a6e8-4e3af9229844",
"ai.user.id": "c4bxj+8Uz4HAHnVyfystT2",
"ai.session.id": "hs2ypmEEAwJRK8bT6Ugcsi",
"ai.device.id": "browser",
"ai.device.type": "Browser",
"ai.operation.name": "/advisor/products",
"ai.operation.id": "2fdf534f8f2a4ace9be130cb6858faef",
"ai.internal.sdkVersion": "javascript:3.3.10"
},
"data": {
"baseType": "EventData",
"baseData": {
"ver": 2,
"name": "KycStarted",
"properties": {
"aaa": "xxx",
"source": "app"
},
"measurements": {}
}
}
},
{
"time": "2025-12-02T18:57:00.455Z",
"iKey": "e941a837-ef4f-4793-bb8e-2df6367a63e0",
"name": "Microsoft.ApplicationInsights.e941a837ef4f4793bb8e2df6367a63e0.Pageview",
"tags": {
"ai.user.authUserId": "ef50dfc4-ea6d-49bc-a6e8-4e3af9229844",
"ai.user.id": "c4bxj+8Uz4HAHnVyfystT2",
"ai.session.id": "hs2ypmEEAwJRK8bT6Ugcsi",
"ai.device.id": "browser",
"ai.device.type": "Browser",
"ai.operation.name": "/advisor/products/request/note",
"ai.operation.id": "942a824e9b374e05a58e05e1ccb20c3d",
"ai.internal.sdkVersion": "javascript:3.3.10",
"ai.internal.snippet": "-"
},
"data": {
"baseType": "PageviewData",
"baseData": {
"ver": 2,
"name": "Aymone Platform",
"url": "http://localhost:4200/advisor/products/request/note",
"duration": "00:00:00.000",
"properties": {
"refUri": "http://localhost:4200/advisor/products"
},
"measurements": {
"duration": 0
},
"id": "942a824e9b374e05a58e05e1ccb20c3d"
}
}
}
]
Finally, I could solve it by setting sampling via Azure CLI:
az resource update --resource-group my-rg --name my-app-insights --resource-type "Microsoft.Insights/components" --set properties.SamplingPercentage=100