Reputation: 2852
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
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://learn.microsoft.com/en-us/azure/azure-monitor/app/asp-net-dependencies
Upvotes: 0