Notes
L’accès à cette page nécessite une autorisation. Vous pouvez essayer de vous connecter ou de modifier des répertoires.
L’accès à cette page nécessite une autorisation. Vous pouvez essayer de modifier des répertoires.
Pour obtenir des informations sur l'utilisation de ces requêtes dans le portail Azure, consultez le tutoriel Log Analytics. Pour l’API REST, consultez Requête.
Minutes de streaming multimédia
Calcule le nombre total de minutes de streaming de l’opération MediaStreaming.
AcsCallAutomationStreamingUsage
| where StreamingModality contains "AudioStreaming"
| summarize TotalMinutesStreamed = sum(StreamingDurationInMs)/60000
Minutes de streaming multimédia par appel
Calcule le nombre total de minutes de streaming de l’opération MediaStreaming par appel.
// Get total number of minutes of streams recorded per call. This will sum up all durations of streams in each call.
// For Media Streaming, Streams would be defined as and calculated per call as follows:
// - Mixed MediaStreaming: Total number of minutes streamed in each session between a start request and stop request/call-end/error.
// eg: if the streaming session was 10 minutes and there were 3 participants during the session, the stream length would be 10 minutes total.
// - Unmixed MediaStreaming: Total number of minutes streamed in each session between a start request and stop request/call-end/error.
// or joining and leaving events per participant in that session.
// eg: if the streaming session was 10 minutes and there were 3 participants during the session, the stream length would be 3x10 = 30 minutes total.
AcsCallAutomationStreamingUsage
| where StreamingModality contains "AudioStreaming"
| summarize TotalMinutesStreamedPerCall = sum(StreamingDurationInMs)/60000 by CallConnectionId
Minutes de streaming multimédia par appel par participant
Calcule le nombre total de minutes de streaming de l’opération MediaStreaming par appel par participant.
// Get total number of minutes of streams recorded per participant in each call. This applies only to the unmixed MediaStreaming cases.
// For Media Streaming, Streams would be defined as and calculated per call as follows:
// - Unmixed MediaStreaming: Total number of minutes streamed in each session between a start request and stop request/call-end/error.
// or joining and leaving events per participant in that session.
// eg: In a single call,
// if streaming session (1) was 10 minutes participant (a) and (b) were in that session;
// if streaming session (2) was 05 minutes participant (b) and (c) were in that session;
// if streaming session (3) was 07 minutes participant (a), (b) and (c) were in that session;
// then the total minutes per participant would be:
// participant (a) = 17 minutes,
// participant (b) = 22 minutes,
// participant (c) = 12 minutes
AcsCallAutomationStreamingUsage
| where StreamingModality == "AudioStreamingUnmixed"
| summarize TotalMinutesStreamedPerParticipant = sum(StreamingDurationInMs)/60000 by CallConnectionId, ParticipantId
Minutes de diffusion en continu de transcription
Calcule le nombre total de minutes de streaming de l’opération de transcription.
AcsCallAutomationStreamingUsage
| where StreamingModality == "Transcription"
| summarize TotalMinutesStreamed = sum(StreamingDurationInMs)/60000
Durée de transcription en streaming par appel
Calcule le nombre total de minutes de streaming de l’opération de transcription par appel.
// Get total number of minutes of streams recorded per call. This will sum up all durations of streams in each call.
// For Transcription, Streams would be defined as and calculated per call as follows:
// Total number of minutes streamed in each session between a start request and stop request/call-end/error.
// or joining and leaving events per participant in that session.
// eg: if the streaming session was 10 minutes and there were 3 participants during the session, the stream length would be 3x10 = 30 minutes total.
AcsCallAutomationStreamingUsage
| where StreamingModality == "Transcription"
| summarize TotalMinutesStreamedPerCall = sum(StreamingDurationInMs)/60000 by CallConnectionId
Minutes de diffusion en continu de transcription par appel par participant
Calcule le nombre total de minutes de diffusion en continu de l’opération de transcription par appel par participant.
// Get total number of minutes of streams recorded per participant in each call.
// For Transcription, Streams would be defined as and calculated per call as follows:
// Total number of minutes streamed in each session between a start request and stop request/call-end/error.
// or joining and leaving events per participant in that session.
// eg: In a single call,
// if streaming session (1) was 10 minutes participant (a) and (b) were in that session;
// if streaming session (2) was 05 minutes participant (b) and (c) were in that session;
// if streaming session (3) was 07 minutes participant (a), (b) and (c) were in that session;
// then the total minutes per participant would be:
// participant (a) = 17 minutes,
// participant (b) = 22 minutes,
// participant (c) = 12 minutes
AcsCallAutomationStreamingUsage
| where StreamingModality == "Transcription"
| summarize TotalMinutesStreamedPerParticipant = sum(StreamingDurationInMs)/60000 by CallConnectionId, ParticipantId