Azure Application InsightsAnalyticsで区別する方法

DotNetNewbie1024

現在、Application InsightsAnalyticsで実行する次のクエリがあります。

customEvents 
| where name == 'Event Name 1' 
| project ['Column One'] = customDimensions['CD1'], ['Column Two'] = customDimensions['CD2'], ['Column Three'] = customDimensions['CD3']

上記のクエリは、次のような結果を返します。

Column One | Column Two | Column Three
    A      |     2      |      D
    B      |     3      |      E
    C      |     2      |      F

2列目に異なる値のみを返すクエリを取得するにはどうすればよいですか?基本的に、結果は次のようになります。

Column One | Column Two | Column Three
    A      |     2      |      D
    B      |     3      |      E

どんな助けでも大歓迎です!

ZakiMa

あなたはこのようなことをすることができます:

customEvents 
| where name == 'Event Name 1' 
| project ['Column One'] = tostring(customDimensions['CD1']),
          ['Column Two'] = tostring(customDimensions['CD2']),
          ['Column Three'] = tostring(customDimensions['CD3'])
| summarize any(['Column One']), any(['Column Three']) by ['Column Two']

これは最初のものをピックアップします-必ずしも「A、C」ペアのAである必要はありません。「C」を除外する場合は、makelist / makesetなどの他のサマリーアグリゲーターを使用する必要があります。

この記事はインターネットから収集されたものであり、転載の際にはソースを示してください。

侵害の場合は、連絡してください[email protected]

編集
0

コメントを追加

0

関連記事

分類Dev

Application InsightsAnalyticsでチャート/ビンをゼロフィルする方法

分類Dev

Azure WebJob Application Insight

分類Dev

Azure WebJob Application Insight

分類Dev

Azure Application GatewayHTTPSリスナーの証明書を取得する方法

分類Dev

Azure Application Insights Alertが別の機能をトリガーすることは可能ですか?

分類Dev

Azure検索で大文字と小文字を区別しない「OrderBy」を実行する方法

分類Dev

Creating application insights with azure cli

分類Dev

Azure Application GatewayX-Forwaded-For

分類Dev

Application InsightsAnalyticsの個別のapdexしきい値

分類Dev

C#でのAzure関数のApplication Insight Logging

分類Dev

Azure kubernetes - writing logs on the console for production application?

分類Dev

administrator has not consented to use the application -- Azure AD

分類Dev

Azure Cosmos DB: HTTP 400 in Application Insights

分類Dev

Azure active directory application registration for localhost and production

分類Dev

Azure Application Insights - Disable Logging Page Views

分類Dev

Aspect in Azure Function for Application Insight Correlation

分類Dev

Update Sitecore application hosted on Azure using AzureDevOps

分類Dev

Assign UPN to Azure Active Directory Application Registration

分類Dev

Set up Azure Application Insights for local environment

分類Dev

Azure Application Insights and Web Site projects

分類Dev

VBA大文字と小文字を区別するApplication.Match

分類Dev

Azure Application Insight内でHTTPキューの長さを確認できますか?

分類Dev

Azure Application Insights APIから複数のCustomDimensionsを選択するにはどうすればよいですか?

分類Dev

Azureアプリの設定からapplication.propertiesの値を上書きすることは可能ですか?

分類Dev

Azure Application Insightsから具体的なカスタムイベントを削除することは可能ですか?

分類Dev

Azure Application Insights-例外のディープリンクを作成しますか?

分類Dev

Azure databricksSQLでフィールド値をコンマ区切りで変換する方法

分類Dev

Visual Studioの別のポートでAzure Functionアプリを実行する方法

分類Dev

Azure Application Insightsは、Azureでホストされていないアプリケーションで使用できますか?

Related 関連記事

  1. 1

    Application InsightsAnalyticsでチャート/ビンをゼロフィルする方法

  2. 2

    Azure WebJob Application Insight

  3. 3

    Azure WebJob Application Insight

  4. 4

    Azure Application GatewayHTTPSリスナーの証明書を取得する方法

  5. 5

    Azure Application Insights Alertが別の機能をトリガーすることは可能ですか?

  6. 6

    Azure検索で大文字と小文字を区別しない「OrderBy」を実行する方法

  7. 7

    Creating application insights with azure cli

  8. 8

    Azure Application GatewayX-Forwaded-For

  9. 9

    Application InsightsAnalyticsの個別のapdexしきい値

  10. 10

    C#でのAzure関数のApplication Insight Logging

  11. 11

    Azure kubernetes - writing logs on the console for production application?

  12. 12

    administrator has not consented to use the application -- Azure AD

  13. 13

    Azure Cosmos DB: HTTP 400 in Application Insights

  14. 14

    Azure active directory application registration for localhost and production

  15. 15

    Azure Application Insights - Disable Logging Page Views

  16. 16

    Aspect in Azure Function for Application Insight Correlation

  17. 17

    Update Sitecore application hosted on Azure using AzureDevOps

  18. 18

    Assign UPN to Azure Active Directory Application Registration

  19. 19

    Set up Azure Application Insights for local environment

  20. 20

    Azure Application Insights and Web Site projects

  21. 21

    VBA大文字と小文字を区別するApplication.Match

  22. 22

    Azure Application Insight内でHTTPキューの長さを確認できますか?

  23. 23

    Azure Application Insights APIから複数のCustomDimensionsを選択するにはどうすればよいですか?

  24. 24

    Azureアプリの設定からapplication.propertiesの値を上書きすることは可能ですか?

  25. 25

    Azure Application Insightsから具体的なカスタムイベントを削除することは可能ですか?

  26. 26

    Azure Application Insights-例外のディープリンクを作成しますか?

  27. 27

    Azure databricksSQLでフィールド値をコンマ区切りで変換する方法

  28. 28

    Visual Studioの別のポートでAzure Functionアプリを実行する方法

  29. 29

    Azure Application Insightsは、Azureでホストされていないアプリケーションで使用できますか?

ホットタグ

アーカイブ