For the complete documentation index, see llms.txt. This page is also available as Markdown.

通話品質の NQL 機能

Investigations を通じて、NQL データモデルcollaboration.sessions テーブルを使用し、コラボレーションデータにアクセスします。

通話品質データの調査とクエリ

統合された call.quality 指標を使用して、音声、ビデオ、画面共有の品質や、通話に影響する接続問題など複数の要因を組み合わせ、通話全体の品質を評価します。

collaboration.sessions past 24h
| summarize poor_qualitycalls=countif(call.quality=poor)by device.name
| list device.name, poor_qualitycalls
| sort poor_qualitycalls desc 

MS Teams Rooms の通話を特定する

会議室で行われた通話は、NQL フィールド collaboration.session.participant_device.type からアクセスできるデバイスタイプ room_system を使って容易に識別できます。

Microsoft Teams Rooms を搭載したデバイスを取得するには、次のクエリを使用します:

devices 
| with collection.sessions 
| where participant_device.type = room_system or device.meeting_room_name != null

最終更新

役に立ちましたか?