Mahmoud Samy
Mahmoud Samy

Reputation: 2852

How to show dependencies in Azure application insights?

We have a custom integration with Azure Application Insights in PHP.

Currently we are able to visualize all of our services, but we can't show the dependencies between services.

Check a screenshot Here


Non working answers:

Upvotes: 0

Views: 626

Answers (1)

Thiago Custodio
Thiago Custodio

Reputation: 18387

Dependency Map is currently not available for PHP apps. However, it seems that you can do it calling:

$this->_telemetryClient->trackDependency

more info:

https://github.com/microsoft/ApplicationInsights-PHP/blob/75858b71971edffd19d33dacf26c295adc62b03c/Tests/Telemetry_Client_Test.php

https://learn.microsoft.com/en-us/azure/azure-monitor/app/asp-net-dependencies

Upvotes: 0

Related Questions