admin管理员组

文章数量:1349221

I have a webapi hosted on Azure App Service, it has managed identity on, there is an existing Application Insights that has given a reader permission to that hosted api.

In the AppInsights, a new role assigned and a reader permission granted to the API, now I want the api to read data from AppInsights.

I want to add a C# method as a REST API that reads last 10 traces?

 // Use DefaultAzureCredential to authenticate with Managed Identity
            var credential = new DefaultAzureCredential();

            // Create a LogsQueryClient
            var client = new LogsQueryClient(credential);

            // Replace this with your Application Insights resource ID
            string appInsightsResourceId = "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/microsoft.insights/components/{applicationInsightsName}";

            // KQL query to get the last 10 traces
            string kqlQuery = "traces | order by timestamp desc | take 10";

            // Execute the query
            Response<LogsQueryResult> queryResponse = await client.QueryWorkspaceAsync(
                appInsightsResourceId, 
                kqlQuery, 
                new QueryTimeRange(TimeSpan.FromHours(1))
            );

It didn't work, it comes back with invalid token credentials.

I also tried using DefaultAzureCredentials with ManagedClientID value, it still didn't work, I want to get logs/traces data as a http method.

I have a webapi hosted on Azure App Service, it has managed identity on, there is an existing Application Insights that has given a reader permission to that hosted api.

In the AppInsights, a new role assigned and a reader permission granted to the API, now I want the api to read data from AppInsights.

I want to add a C# method as a REST API that reads last 10 traces?

 // Use DefaultAzureCredential to authenticate with Managed Identity
            var credential = new DefaultAzureCredential();

            // Create a LogsQueryClient
            var client = new LogsQueryClient(credential);

            // Replace this with your Application Insights resource ID
            string appInsightsResourceId = "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/microsoft.insights/components/{applicationInsightsName}";

            // KQL query to get the last 10 traces
            string kqlQuery = "traces | order by timestamp desc | take 10";

            // Execute the query
            Response<LogsQueryResult> queryResponse = await client.QueryWorkspaceAsync(
                appInsightsResourceId, 
                kqlQuery, 
                new QueryTimeRange(TimeSpan.FromHours(1))
            );

It didn't work, it comes back with invalid token credentials.

I also tried using DefaultAzureCredentials with ManagedClientID value, it still didn't work, I want to get logs/traces data as a http method.

Share Improve this question edited Apr 2 at 7:22 Tiny Wang 16.4k2 gold badges18 silver badges38 bronze badges asked Apr 2 at 4:21 Sharpeye500Sharpeye500 9,09326 gold badges97 silver badges148 bronze badges 5
  • According to the official document, the first parameter of QueryWorkspaceAsync should be the workspace Id instead of app Insights resource id, could you pls try to adjjust the parameter? – Tiny Wang Commented Apr 2 at 7:20
  • Thanks, getting an error saying the resource principal named api.loganalytics.io was not found in the tenant. DefaultAzureCredentials failed to retrieve a token from the included credentials. Do you see anything missing with regard to this error in the above code? – Sharpeye500 Commented Apr 2 at 7:44
  • I'm testing in my side, but it seems taht I'm trapped in permissions. The error message I got is The provided credentials have insufficient access to perform the requested operation. Your error message indicates that you might visit an unexisted workspace. – Tiny Wang Commented Apr 2 at 8:26
  • my workspace Id looks like string workspaceId = "29xxxx11-4xx2-axx0-16xxxxxxxaf7c";. I tried to use an incorrect workspace id, then I get error The requested path does not exist – Tiny Wang Commented Apr 2 at 8:37
  • I had worked it out, pls see my codes below. I added Reader, Monitoring Contributor, Log Analytics Reader permissions to both Application Insights instance and workspace instance. But I'm not sure which permission is exactly required.. Roles applyment seems to require several minutes to take effect... – Tiny Wang Commented Apr 2 at 9:19
Add a comment  | 

1 Answer 1

Reset to default 1

My test codes

public async Task<LogsQueryResult> GetAsync()
{
    try
    {
        var credential = new DefaultAzureCredential();
        var client = new LogsQueryClient(credential);
        string workspaceId = "2xxxxxx7-7xx1-xxxx-xxxx-16xxxf7c";
        //string kqlQuery = "traces | order by timestamp desc | take 10";
        string kqlQuery = "AzureActivity | summarize Count = count() by ResourceGroup | top 10 by Count";
        _logger.LogInformation("credential bypass");
        var queryResponse = await client.QueryWorkspaceAsync(
            workspaceId,
            kqlQuery,
            new QueryTimeRange(TimeSpan.FromHours(1))
        );
        _logger.LogInformation("queryResponse success");
        return queryResponse;
    }
    catch (Exception ex) {
        _logger.LogError(ex.Message);
        return null;
    }
    
    
}

I get the workspace ID by clicking into the workspace showed in App Insights instance.

And my test result like below. Using your query will get 400 error Failed to resolve table or column expression named 'traces'" which indicating there's no traces table. Then I know QueryWorkspaceAsync might not be designed to query App Insights tables. I follow the official document for QueryWorkspaceAsync and used another query then I got it worked.

This is method is not working for querying Application Insights, I tried codes below and worked:

string resourceId = "/subscriptions/xxx/resourceGroups/xxx/providers/microsoft.insights/components/tinytest0304";

string kqlQuery = "traces | order by timestamp desc | take 10";
Response<LogsQueryResult> queryResponse = await client.QueryResourceAsync(
    new ResourceIdentifier(resourceId),
    kqlQuery,
    new QueryTimeRange(TimeSpan.FromHours(1)));

=========================

I enabled system-assigned managed identity for my Azure web app instance.

Then I go to the application insights instance which I hope to query log from, and add RBAC permission. Screenshoots below shows the permissions I added.

To add these permissions, going to Access Control(IAM) blade -> click the Add button and choose Add role assignment -> choose the role in Roles tab -> choose members in the Members tab(like screeshot below) -> Review + assign. Pls note, it might take several minutes to take effect, we might wait for a while and maybe a restart of the Azure web app to validate the role applyment.

本文标签: cREST method to access Application insightsStack Overflow