Closed SajalGolas closed 6 years ago
Have you looked at your dashboard in the Azure Portal? Have you read through the App Insights documentation?
hi Jakub,
thanks for the reply. Yes, I have gone through the documentation and tried to change the metric parameters. Please refer to the screenshot.
this is what im getting.
And, im using this PHP command to receive telemetry from my webapp: Sending a simple page view telemetry item with page name and url: $telemetryClient->trackPageView('myPageView', 'http://www.foo.com'); $telemetryClient->flush();
Is this command sufficient to receive all the page related telemetry? Please guide me through, im new to this.
regards, monit
PS- im also reachable on monit.kk@gmail.com
Doesn't look like any data is being sent. Can you see any page views?
yes, I can see the Page Views.
But all the details are related to my website's home page. But I want to know:
I would suggest you ask your questions in the Application Insights forums. I think you'll have to log custom data to do this.
$telemetryClient->trackPageView('myPageView', 'http://www.foo.com'.$_SERVER['REQUEST_URI']);
Or something similar should do the trick. You are passing the same url each time that function is ran.
https://docs.microsoft.com/en-us/azure/application-insights/app-insights-api-custom-events-metrics#page-views
@mrdemc you can always use analytics. Query like this pageViews | summarize avg(duration) by name
will group response time by name.
Closing for now - feel free to reopen
Hi All,
I need some assistance.
Well, I have configured AppIns with an PHP WebApp using Instrumentation Key as shown in this page. Now, my requirement is to see -
Any lead or help will be highly appreciated. Thank you in advance.