I have azure app service. Requests against other Azure services are traced (appear as 'dependencies') in AppInsights. Requests against the Gremlin API are not appearing in AppInsights though, how to achieve it?
Asked
Active
Viewed 187 times
0

Nilesh Sawant
- 1,406
- 14
- 8
-
2About cosmos db, only tracked automatically if HTTP/HTTPS is used. TCP mode won't be captured by Application Insights. So if you need to manually tracking dependencies, by TelemetryClient. Here's a [doc](https://learn.microsoft.com/en-us/azure/azure-monitor/app/asp-net-dependencies#manually-tracking-dependencies) on it. – Tiny Wang Feb 25 '21 at 07:54
1 Answers
2
As the document described
- "Application Insights" is aimed at the development team, to help you understand how your application is performing and how it's being used.
- Azure Cosmos DB is tracked automatically only if HTTP/HTTPS is used. TCP mode won't be captured by Application Insights.
If you want it to show some information about other service like cosmos db, you might call it through http request or configure your app with that service manually, refer to this doc: Manually tracking dependencies.

Doris Lv
- 3,083
- 1
- 5
- 14