Hello,
Yes, you can retrieve the application insights live metrics from your machine.
You will need to install the Azure Monitor SDK in the language you prefer.
https://learn.microsoft.com/en-us/dotnet/api/overview/azure/monitor?view=azure-dotnet
Then query the API for the metrics you want.This is the related documentation : https://learn.microsoft.com/en-us/azure/azure-monitor/app/api-custom-events-metrics
Once you have retrieved the live metrics data from Azure, you can process and display it locally on your machine. Depending on your requirements, you can choose to visualize the data in a console application, a web application, or any other suitable format.
Hope this helps. If it does please mark the answer as acceptedso other users with same questions can find this topic
Regards