다음을 통해 공유


ContainerLogV2 테이블에 대한 쿼리

Azure Portal에서 이러한 쿼리를 사용하는 방법에 대한 자세한 내용은 Log Analytics 자습서를 참조하세요. REST API는 쿼리를 참조 하세요.

컨테이너로그V2에서 찾기

ContainerLogV2에서 특정 값을 검색하려면 ContainerLogV2 테이블에서 찾으십시오. 이 쿼리가 결과를 생성하려면 <SearchValue> 매개변수를 업데이트해야 합니다.

// This query requires a parameter to run. Enter value in SearchValue to find in table.
let SearchValue =  "<SearchValue>";//Please update term you would like to find in the table.
ContainerLogV2
| where * contains tostring(SearchValue)
| take 1000