다음을 통해 공유


NGXOperationLogs 테이블에 대한 쿼리

이 쿼리를 Azure 포털에서 사용하는 방법에 대한 정보는 Log Analytics tutorial을 참조하십시오. For the REST API, see Query.

NGINXaaS 접근 로그 표시

시간별로 정렬된 액세스 로그 목록.

NGXOperationLogs
| where FilePath == "/var/log/nginx/access.log"
| sort by TimeGenerated asc
| take 100

NGINXaaS 오류 로그 보여주기

시간별로 정렬된 오류 로그 목록.

NGXOperationLogs
| where FilePath == "/var/log/nginx/error.log"
| sort by TimeGenerated asc
| take 100