4,174 questions
0
votes
0
answers
16
views
Azure function apps - Unable to see print logs on function app when deployed onto Azure
New to python programming and azure function apps, managed to deploy my first function app, when I run it from my local development environment, it logs useful information which gives me a good ...
0
votes
0
answers
31
views
Daily quota exceeded for metrics after migrating to open telemetry [closed]
I'm working on a Node app, based in NestJS, hosted in an Azure AppService. I've just finalised migration from the legacy applicationinsights package to @azure/monitor-opentelemetry. After deploying to ...
0
votes
1
answer
73
views
How to Add Custom Properties to App Insights Request Telemetry
I have a fairly simple requirement where I have a message based endpoint that consumes messages from Azure Service Bus. Pretty standard setup. However, when I receive the message I want the log that ...
0
votes
0
answers
34
views
Intermittent Issue with App Insights not logging Custom Dimensions
We have some wrappers written around the ILogger that translate name-value pairs into custom dimensions. We've been using this code for years and have struggled with intermittent issues where ...
0
votes
0
answers
47
views
KQL syntax on Application Insights console vs Node SDK
I am working on a KQL query that has been implemented by our team and I don't understand why it behaves the way it behaves, neither does the person that wrote it.
This is the query that runs on the ...
-3
votes
1
answer
69
views
Querying ApplicationInsights from C#
I've gone through the usual Azure security and think I can authenticate, but I can't query.
The first problem is that LogsQueryClient wants a TokenCredential but I have a ServiceClientCredentials and ...
0
votes
0
answers
51
views
Setting User id in next js and trpc web application for Azure Application Insight
Currently I'm setting up a t3 web application next js as front and trpc as my backend, and auth js with session of database strategy.
I'm currently using Azure as cloud.
Here I'm trying to set up ...
0
votes
2
answers
86
views
How to store Azure App service Webjobs console logs in Azure storage account?
I have a spring boot jar running as a webjob in Azure App Services webApp. I can see the info logs generated by the jar in the log option of the webjob but this gets updated after every run. I want to ...
0
votes
1
answer
93
views
Function App deployed to an App Service Environment not writing logs to application insights
I have a timer triggered function app that runs every 5 mins. The function app is hosted in an app service environment with internal load balancer. I can see that the function app is getting triggered ...
2
votes
2
answers
292
views
What is the advantage of using OpenTelemetry with AzureMonitor instead of ApplicationInsights directly?
What is the advantage of using intermediary layer (OpenTelemetry) instead directly ApplicationInsights?
For example:
builder.Services.AddOpenTelemetry().UseAzureMonitor();
instead of
builder.Services....
0
votes
1
answer
604
views
How to filter out LogRecords in a processor , when using OpenTelemetry towards Azure Monitor?
I am using OpenTelemetry and have it linked up with Azure Monitor (App Insights). I see all structured logging and traces appear in AI, which is nice.
I have read about the difference in tracing vs ...
0
votes
1
answer
109
views
How can I set the namespace of custom metrics bound for Azure Monitor when using the .NET Azure Monitor OpenTelemetry distro?
I am working to instrument a .NET Core windows service by adding custom metrics. Here listed in this official documentation are the things that Azure Monitor supports attaching to a custom metric. My ...
1
vote
1
answer
65
views
What is the behaviour of the ServerTelemetryChannel when multiple processes are using the same StorageFolder in the same disk?
More specifically, I am talking about Kubernetes pods, running different instances of the same application. I haven't found official recommendations for that scenario.
Besides attaching a Persistent ...
0
votes
1
answer
34
views
Override Serilog log level ifor Microsoft namespace in Azure App Service
I have a .NET 8 app deployed in Azure App service and it uses Serilog and ApplicationInsights. I get hundreds of thousands of events from Microsoft.AspNetCore namespace. I tried overriding this with ...
2
votes
0
answers
120
views
Azure data explorer, low CPU usage but slow querying times
I have an Azure data explorer cluster with a few databases in it. When looking at the 'Cluster boundedness' tab in Insights it states that both CPU and Cache utilization is low. However the Ingestion ...
0
votes
2
answers
189
views
ILogger is not logging exceptions to the app insights. .Net Framework 4.8
I have written a error handling framework using ILoggerFactory in .Net Framework 4.8
It supports multiple providers including Application Insights.
Recently I checked the Application Insights Logs and ...
0
votes
1
answer
48
views
Configure Azure Application Insights to capture severity level 3 telemetry in a Business Central extension
We’re creating a Business Central extension and want to receive telemetry from that extension. We’ve set up an Application Insights resource in Azure, and in our app.json, we’ve specified the ...
0
votes
1
answer
130
views
REST method to access Application insights
I have a webapi hosted on Azure App Service, it has managed identity on, there is an existing Application Insights that has given a reader permission to that hosted api.
In the AppInsights, a new role ...
0
votes
1
answer
196
views
Calls to QuickPulseService visible in ApplicationInsights
I have set up application insigths in next js application, but for some reason I see a lot of noise, as calls to QuickPulseService are tracked in logs:
This is my setup (simplified for clarity):
...
0
votes
0
answers
84
views
Proper way to connect publicly available mobile app to Azure Application Insights to collect insight data from B2C clients
I wonder what would be safe way for publicly available mobile app that signs users in with oauth 2.0 (PKCE used) and Azure B2C to collect insight data directly to Azure Application Insight (not via ...
0
votes
1
answer
283
views
Application Insights TelemetryClient for .NET maui in offline mode results. Bug or by design?
TLDR: got mixed results on how TelemetryClient is capable of holding data, collected while device is offline. Short offline periods allow data to be flushed to Azure Insights successfully once the ...
0
votes
0
answers
386
views
Python NiceGUI / FastAPI App Insights Integration
I'm developing a NiceGUI application in python and wanted to add application insights to the app. I have been able to do this as I'm getting requests and telemetry sent no problem. The issue I'm ...
0
votes
0
answers
69
views
High Priority: Azure Custom Log Search Not Working in West Europe Region
Unable to use "traces" table as target for Azure Custom Log Search alert query.
When the scope is set to Azure application insights and targeted "traces" table, throws an error.
...
0
votes
2
answers
140
views
Azure APIM trace in policies showing the variable name, not the value
I am facing a trouble with using trace in Azure APIM policies.
For example below trace message
<set-variable name="expiresOn" value="@(Uri.EscapeDataString(DateTime....
0
votes
1
answer
388
views
OpenTelemetry sending autoinstrumented metrics in ASP.NET Core service
I'm trying to get to grips with OpenTelemetry and AzureMonitor in an ASP.NET Core service.
I've covered the documentation a few times but cannot find definitive answers (yet)...
I have a shared ...