To be honest, very detailed and the best azure video tutorials on the internet. Please make videos for some paid online learning platforms for azure certifications. Thank you so much for this amazing work!
Great tutorial! Please keep up the good work. I also followed you az-900 series and I really liked. Really looking forward to see other series like that.
Detailed and on spot as always :) Would like an even deeper introduction to the more advanced topics within application insights and azure monitor such as custom metrics and the kusto query language
Thanks you! I love all of Azure features and services. In future I hope I can do my RUclips as a part time or full time job. This would allow me to show all of it :D
Great video and information packed content. What was the telemetry tool/SDK used in your application to send telemetry data to App Insights? Are you deploying your own webserver? Did you instrument your webserver too with Telemetry took/SDK? Again, thank you for great video.
I'm trying to investigate the usage of Log Analytics and would like to understand the feature about the application insight. Thank you so much about the clear instruction ~!!
I'm trying to understand traces and exceptions in logs. Is there a relationship between these tables. example count on messages from traces but where there were exceptions?
It's just logs so no relationship schema but you still can join them using KQL queries. Check out MS article on log correlation docs.microsoft.com/en-us/azure/azure-monitor/app/correlation . In general use KQL to query your logs. Or use Search panel and filter events to get some basic info on failed requests. docs.microsoft.com/en-us/azure/azure-monitor/app/diagnostic-search
If you implemented app center sdk for analytics and crashlytics. And export it to application insight, do you get most services of application insight?
Most features should still work. Here is the guide if you want to get started docs.microsoft.com/en-us/azure/azure-monitor/learn/mobile-center-quickstart
Is it possible to integrate data factory logs in App Insight using log workspace? Please suggest steps. I able to see my adf logs in log workspace but i am not able see logs in insight
Hi Adam, what is the tool you are using to highlight your mouse cursor and its clicks? Recently watched your entire AZ900 course and loved every minute of it. Keep up the great work!
Great video. Thanks for putting this up. I did have a question for you. How can I add a custom info or debug messages to App Insights and then finding them in Insights? Is that even possible?
If you add App Insights SDK to your application you can log any message/info you need using their logger class. Here is an example using .net core docs.microsoft.com/en-us/azure/azure-monitor/app/asp-net-core?WT.mc_id=AZ-MVP-5003556 and then query logs using search docs.microsoft.com/en-us/azure/azure-monitor/app/diagnostic-search?WT.mc_id=AZ-MVP-5003556 or log analytics queries by clicking "Logs" button.
Hello Adam, I want to ask a couple of questions. Hope you don't mind? 1. Let's say one of our users made a failed request (i.e 4** code), Is there a functionality on Azure APIM where I can be able to get & log the email/username of that individual that made the request? I know there is a unique Id to each request but it doesn't do any good since I can't use it to map the particular user in question. 2. Let's say I have more than 1 AKS clusters that the Azure API management points to, Is there a way I can manually allocate the percentage (%) of requests (i.e 70% of traffic goes to cluster A while the remaining 30% of traffic goes to cluster B) to these clusters within the Azure API management tool? Thanks in advance.
Hello Adam, Thanks for another amazing tutorial. i have a quest please, how can we connect power bi to any of our Azure database with in Azure? and can we call power bi on ADF? please help.
Hey there. Not sure I understand, What kind of issue do you have when connecting power bi to azure data sources? Also why would you want to call power bi from ADF.
@@AdamMarczakYT 1st of all thanks for responding. For example i use ADF to copy data from blobs and i load it to a Azure DB, then based on the data present on DB i want to create visualisation. So can i be able to do taht on azure data factory or should i connect power bi desktop to the Azure data base.
Yea, it's a little like a mix between function language and SQL and is used in few Azure services including resource graph. docs.microsoft.com/en-us/azure/data-explorer/kusto/query/?WT.mc_id=AZ-MVP-5003556
I hope you read my comment and get to reply! Is there any way to show either the dashboard, the live metrics, or even the telemetry, but in the home page of your web app? Thanks in advance if you happen to read it!
Hi Mate .Very Very Good Job. My question now :- I want to extract my VMs list from azure portal with Sizes ( Size is imp) . So i arrange the columns accordingly but i cannot export from portal in csv. Could you please give me a JSON template to extract the info please. Will be a great help.
Hi Adam, this is really helpful. I have some problem with my app insights visualization. I am using spring-boot-starter, I have configured everything mentioned in the documentation, However I can see/visualize all my services on application map but I can not see the linkage between them. Which means the call made between them are missing in the metrics. (Missing dependency chain) Can you please help?
Hey. Diagrams are correlated and drawn based on the logs. I'd investigate if your logs have all the proper correlation IDs for app insights to build the diagram. Here is the article on how to do it: docs.microsoft.com/en-us/azure/azure-monitor/app/correlation
Hello Adam, How can I monitor and create alerts for micro services inside AKS and those dependent services through Azure monitor? Is there a way to do it? Please reply thanks!
Hey Adam, Is it possible to store HTTP request and response body in the application insights? If it is possible, could you please share some ideas? Thank you.
Hi all, I ran into an issue @13:25 in saying using models error CS0234: type or namespace name 'Models' does not exist in the namespace 'demo'. Not sure how to go about it and ive had a good search online. Any help would be appreciated
Live metrics stream should work with .NET, .NET Core, Java and NodeJS. Check on this guide on the setup process docs.microsoft.com/en-us/azure/azure-monitor/app/nodejs?WT.mc_id=AZ-MVP-5003556#live-metrics 😊
hi, before i try it can you tell me if its free and if it offer the possibility to see which part of the code takes the most time and how long it takes to execute for a specific action, for example when i log in, i want to see how long it takes and which is the slowest part in the code for that operation (see precise timing and call counts of function in my code), for example a particular function or operation which takes 2 seconds, and the entire login takes 3 seconds?
I am attempting to following along in the video. However, when I preform the 2nd step I get the following error message - dotnet add package Microsoft.ApplicationInsights --version 2.17.0 Determining projects to restore... Writing C:\Users\dave\AppData\Local\Temp\tmp88DD.tmp info : Adding PackageReference for package 'Microsoft.ApplicationInsights' into project 'C:\demo\demo.csproj'. info : Restoring packages for C:\demo\demo.csproj... error: NU1100: Unable to resolve 'Microsoft.ApplicationInsights (>= 2.17.0)' for 'net5.0'. error: Package 'Microsoft.ApplicationInsights' is incompatible with 'all' frameworks in project
Hi Adam, in this vide you are mentioning that Azure Insights is like Google Analytics, I have a question is it possible to (as in Firebase) track : custom events + attached parameters (to for example send an event button_click and than attach parameters to it color: blue, text: click_on_me and so on. Frebase also allows you to set user properties (attributes specific to a given app user) is it also available in app insights? Would you recommend it and can say for sure that with Azure App insights you can achieve the same stuff as Firebase / Analytics for Web+app in tracking the user in-app activity?
Hey James, yes you can track custom events and custom properties on each layer, both client side and server side. Here is document which describes this: docs.microsoft.com/en-us/azure/azure-monitor/app/api-custom-events-metrics I can't compare to Firebase as I didn't had a chance to use it. Hoep this helps!
To be honest, very detailed and the best azure video tutorials on the internet. Please make videos for some paid online learning platforms for azure certifications. Thank you so much for this amazing work!
Thanks, will do!
This is one of the best videos I have come across on RUclips. So detailed. Thanks.
My first of Adam's videos. Subscribed! It's that good.
Welcome aboard! Thanks!
The video did gave an huge insights on the topic, thanks and appreciate you efforts Adam!
Great tutorial! Please keep up the good work. I also followed you az-900 series and I really liked. Really looking forward to see other series like that.
Followed till the end of the video and felt confident about the azure App service. Thanks
Great content Adam, appreciate your efforts. Keep us posted with such informative videos. Thank you.
Thanks, will do!
I am big fan of Adam, the way he present content worth million dollor, keep up great work.
Very Nice Tutorial on Application Insights ! Bravo!!!!!!!
It’s a grate and informative video, Adam, it’s help me to understand this service very fast and start to use it with my app. Thanks a lot!
gotta say that was an impressive session. solid work!
Cheers Matt!
As usual: Great quality + very comprehensive content
I have turned back to this video again after some time, so definitely it's a good demo ;)
Thank you so much Adam, lot of learning in one session. keep sharing!!
Thanks, will do!
Clear Application Insights explanation, this is what I was looking for, thanks!
Amazing video. Probably the best on internet for azure fundamentals.
Thanks Adam!! Excelente video!👍👍! I learned a lot, I will apply that in my current projects
Fantastic! Thanks!
Detailed and on spot as always :)
Would like an even deeper introduction to the more advanced topics within application insights and azure monitor such as custom metrics and the kusto query language
Thanks you! I love all of Azure features and services. In future I hope I can do my RUclips as a part time or full time job. This would allow me to show all of it :D
Excellent Video! Would like to see a deeper dive into using Funnel, Impact, and Retention features
Awesome video! This really helped me to understand this Azure service. Thank you so much.
Great to hear! :) thanks for stopping by!
Awsome! Hatts off for your hard work and amazing video. Thanks a lot :)
My pleasure 😊
Very nice video Adam....It was really useful to understand application insight feature
Glad it was helpful!
Excellent video mate, very informative.
Glad it was helpful!
I sincerely appreciate your efforts on producing such useful contents. Keep doing.
Thanks, will do!
Hey, Adam your explanation is clear cut :)
Another amazing video, which is down to the point. Thank you!!!
Glad you liked it!
Awesome Adam, Thanks for this detailed video
It is absolutely incredible, thanks for your content production, it help me in work much
You deserved got one subscribe from me, world need someone like you for better
Your videos are the best over internet for Azure
Thanks! :)
This was very good explanation Adam. Please make video on Visual Studio debug on end to end exception traces from application insights
That was well presented. Many thanks!
Awesome video! This really helped me to understand App Insights Thanks :)
Glad it was helpful!
Thank you for your vid, really useful.
KQL was previously and commonly known as Keyword Query Language (from old SharePoint days)...
Great video Adam! Much better than Microsoft seem to be able to muster for their own products.
A.I. is really impressive! And this video is very well done.
It really is! Thanks!
awesome video ! Thank you so much Adam !!
My pleasure!
just the thing I was looking for...Thanks a lot... Subscribed 👍
Nice Way of Explanation Good Job Bro🙏
Great video and information packed content. What was the telemetry tool/SDK used in your application to send telemetry data to App Insights? Are you deploying your own webserver? Did you instrument your webserver too with Telemetry took/SDK? Again, thank you for great video.
Great video! Thank you, Adam!
My pleasure!
I'm trying to investigate the usage of Log Analytics and would like to understand the feature about the application insight. Thank you so much about the clear instruction ~!!
Very informative video, thanks for sharing.
Dziękuję bardzo Adam.
Please do a video on API Management, authentication and authorisation
APIM is coming soon!
Thanks Adam for sharing the knowledge
My pleasure!
Geat explaination, thank you so much !
Excellent Video.
Awesome video! thank you
Amazing brother...
Great content. Thank you ! 👏👏
Hi @Adam,
Amazing Video...
Hey, thanks!
Thank you , It's useful for me...
Glad to hear that
Great video. Got to lean a lot !!! Thanks
Cheers, always great to hear that!
Thanks in million. Awesome.
Glad it helped!
Amazing tutorial thank you!
Thank you Marc!👍
I'm trying to understand traces and exceptions in logs. Is there a relationship between these tables. example count on messages from traces but where there were exceptions?
It's just logs so no relationship schema but you still can join them using KQL queries. Check out MS article on log correlation docs.microsoft.com/en-us/azure/azure-monitor/app/correlation . In general use KQL to query your logs.
Or use Search panel and filter events to get some basic info on failed requests. docs.microsoft.com/en-us/azure/azure-monitor/app/diagnostic-search
very good video mate
thank you so much for this video.
If you implemented app center sdk for analytics and crashlytics. And export it to application insight, do you get most services of application insight?
Most features should still work.
Here is the guide if you want to get started docs.microsoft.com/en-us/azure/azure-monitor/learn/mobile-center-quickstart
Thank you so much Adam
Is it possible to integrate data factory logs in App Insight using log workspace? Please suggest steps. I able to see my adf logs in log workspace but i am not able see logs in insight
Amazing content!
Very nice video. Thanks !
Wow, love it. Any idea how this compares to other 3rd party monitoring apps like Dynatrace, etc?
Hi Adam, what is the tool you are using to highlight your mouse cursor and its clicks?
Recently watched your entire AZ900 course and loved every minute of it. Keep up the great work!
Thanks for the detailed content
Thanks for watching!
Great video. Thanks for putting this up. I did have a question for you. How can I add a custom info or debug messages to App Insights and then finding them in Insights? Is that even possible?
If you add App Insights SDK to your application you can log any message/info you need using their logger class. Here is an example using .net core docs.microsoft.com/en-us/azure/azure-monitor/app/asp-net-core?WT.mc_id=AZ-MVP-5003556 and then query logs using search docs.microsoft.com/en-us/azure/azure-monitor/app/diagnostic-search?WT.mc_id=AZ-MVP-5003556 or log analytics queries by clicking "Logs" button.
Hello Adam, I want to ask a couple of questions. Hope you don't mind?
1. Let's say one of our users made a failed request (i.e 4** code), Is there a functionality on Azure APIM where I can be able to get & log the email/username of that individual that made the request? I know there is a unique Id to each request but it doesn't do any good since I can't use it to map the particular user in question.
2. Let's say I have more than 1 AKS clusters that the Azure API management points to, Is there a way I can manually allocate the percentage (%) of requests (i.e 70% of traffic goes to cluster A while the remaining 30% of traffic goes to cluster B) to these clusters within the Azure API management tool?
Thanks in advance.
really well explained
Thanks!
Hi Adam,
how to get the log.LogInformation("C# HTTP trigger") log data in Application Insights
If you have app insights connected it will get there by default. Nothing extra you need to do. Just check the logs. :)
Is Application insights only used for web application.or do we use in mobile apps also .
Thank you, It was very informative
Glad you enjoyed it!
Hello Adam, Thanks for another amazing tutorial. i have a quest please, how can we connect power bi to any of our Azure database with in Azure? and can we call power bi on ADF? please help.
Hey there. Not sure I understand, What kind of issue do you have when connecting power bi to azure data sources? Also why would you want to call power bi from ADF.
@@AdamMarczakYT 1st of all thanks for responding. For example i use ADF to copy data from blobs and i load it to a Azure DB, then based on the data present on DB i want to create visualisation.
So can i be able to do taht on azure data factory or should i connect power bi desktop to the Azure data base.
You mentioned "Kusto" as a language you would encourage us to learn, what is the correct spelling of this language, so I may research it?
Yea, it's a little like a mix between function language and SQL and is used in few Azure services including resource graph.
docs.microsoft.com/en-us/azure/data-explorer/kusto/query/?WT.mc_id=AZ-MVP-5003556
@@AdamMarczakYT spelling the name correctly was a lucky guess, thanks Adam
Amazing tutorial!
Glad you think so!
Thanks Adam. I have a question, is there a way we can refresh the ai_session data
I hope you read my comment and get to reply! Is there any way to show either the dashboard, the live metrics, or even the telemetry, but in the home page of your web app? Thanks in advance if you happen to read it!
Hi Mate .Very Very Good Job.
My question now :- I want to extract my VMs list from azure portal with Sizes ( Size is imp) . So i arrange the columns accordingly but i cannot export from portal in csv. Could you please give me a JSON template to extract the info please. Will be a great help.
Hey. You can use PowerShell commands Get-AzVM and then do " Export-Csv" to return result to CSV.
@@AdamMarczakYT hey Adam.. I developed a custom ps script n it worked.. thnks a lot... Thnks mate
Hi Adam, this is really helpful. I have some problem with my app insights visualization. I am using spring-boot-starter, I have configured everything mentioned in the documentation, However I can see/visualize all my services on application map but I can not see the linkage between them. Which means the call made between them are missing in the metrics. (Missing dependency chain)
Can you please help?
Hey. Diagrams are correlated and drawn based on the logs. I'd investigate if your logs have all the proper correlation IDs for app insights to build the diagram.
Here is the article on how to do it: docs.microsoft.com/en-us/azure/azure-monitor/app/correlation
Hello Adam, How can I monitor and create alerts for micro services inside AKS and those dependent services through Azure monitor? Is there a way to do it?
Please reply thanks!
Can we use application insights for desktop and system applications
Very Good
Hi Adam, thank you for this, what about using Azure Insights for ML models to see how do they perform in production? can it be used?
Yes, absolutely, check out this article docs.microsoft.com/en-us/azure/machine-learning/how-to-enable-app-insights Thanks for watching.
Hey Adam, Is it possible to store HTTP request and response body in the application insights? If it is possible, could you please share some ideas? Thank you.
Hi all, I ran into an issue @13:25 in saying using models error CS0234: type or namespace name 'Models' does not exist in the namespace 'demo'. Not sure how to go about it and ive had a good search online. Any help would be appreciated
excellent
is there a way to implement performance counter in Azure app service?
Yes. Check this out docs.microsoft.com/en-us/azure/azure-monitor/app/performance-counters
may i use app insights to monitor an aplication like selenium runinning in a VM?
17:23 Live Metrics seems to be available only for .NET applications. It's not available for my NodeJS app services :(
Live metrics stream should work with .NET, .NET Core, Java and NodeJS.
Check on this guide on the setup process docs.microsoft.com/en-us/azure/azure-monitor/app/nodejs?WT.mc_id=AZ-MVP-5003556#live-metrics 😊
@@AdamMarczakYT you are the hero of the day. Happy new year.
Hi,
Why there are 2 instatnces on AppFunc 23:24 shown?
One is front-end client side (javascript) and the second is backend (server side code).
@@AdamMarczakYT Thank you very much :)
hi, before i try it can you tell me if its free and if it offer the possibility to see which part of the code takes the most time and how long it takes to execute for a specific action, for example when i log in, i want to see how long it takes and which is the slowest part in the code for that operation (see precise timing and call counts of function in my code), for example a particular function or operation which takes 2 seconds, and the entire login takes 3 seconds?
Many Thanks
You are welcome
can u please map tutorial for health check with js , function app
I am attempting to following along in the video. However, when I preform the 2nd step I get the following error message - dotnet add package Microsoft.ApplicationInsights --version 2.17.0
Determining projects to restore...
Writing C:\Users\dave\AppData\Local\Temp\tmp88DD.tmp
info : Adding PackageReference for package 'Microsoft.ApplicationInsights' into project 'C:\demo\demo.csproj'.
info : Restoring packages for C:\demo\demo.csproj...
error: NU1100: Unable to resolve 'Microsoft.ApplicationInsights (>= 2.17.0)' for 'net5.0'.
error: Package 'Microsoft.ApplicationInsights' is incompatible with 'all' frameworks in project
How can I setup Apdex score performance monitoring?
First for the like 😜
😁
From where we can download code used in the sample demo ?
Hi Adam, in this vide you are mentioning that Azure Insights is like Google Analytics, I have a question is it possible to (as in Firebase) track : custom events + attached parameters (to for example send an event button_click and than attach parameters to it color: blue, text: click_on_me and so on. Frebase also allows you to set user properties (attributes specific to a given app user) is it also available in app insights? Would you recommend it and can say for sure that with Azure App insights you can achieve the same stuff as Firebase / Analytics for Web+app in tracking the user in-app activity?
Hey James, yes you can track custom events and custom properties on each layer, both client side and server side.
Here is document which describes this: docs.microsoft.com/en-us/azure/azure-monitor/app/api-custom-events-metrics
I can't compare to Firebase as I didn't had a chance to use it. Hoep this helps!
Great