Share via


Consultas para a tabela ContainerLog

Localizar um valor na Tabela de Registos de Contentores

** Esta consulta requer um parâmetro para ser executada. A tabela Registos de Contentores é utilizada Linhas de registo recolhidas de fluxos stdout e stderr para contentores. Esta consulta irá encontrar linhas na tabela ContainerLogs onde LogEntry especificou Cadeia.

//This qeury requires a parameter to work.
//The ContainerLog table holds Log lines collected from stdout and stderr streams for containers.
//Note: the query runs by default for the last 24 hours. Use the time pikcer to adjust time span for query
let FindString = "";//Please update term  you would like to find in LogEntry here
ContainerLog 
| where LogEntry has FindString 
|take 100

Dados de Registo Faturáveis por tipo de registo

Veja os dados faturáveis dos registos de contentor para os últimos 7d , segregados por tipo de registo.

// Set the requested time, anytime greater than 15d can take longer
let billableTimeView = 7d;  
//Join ContainerLog on KubePodInventory for LogEntry source
ContainerLog
| join(KubePodInventory | where TimeGenerated > startofday(ago(billableTimeView)))on ContainerID
| where TimeGenerated > startofday(ago(billableTimeView))
| summarize Total=sum(_BilledSize)/ 1000 by bin(TimeGenerated, 1d), LogEntrySource

Listar registos de contentor por espaço de nomes

Veja os registos de contentores de todos os espaços de nomes no cluster.

ContainerLog
|where TimeGenerated > startofday(ago(1h))
|join(
KubePodInventory
| where TimeGenerated > startofday(ago(1h)) 
| distinct Computer, ContainerID, Namespace
)//KubePodInventory Contains namespace information
on Computer, ContainerID
| project TimeGenerated, ContainerID, Namespace , LogEntrySource , LogEntry

Localizar no ContainerLog

Localize no ContainerLog para procurar um valor específico na tabela ContainerLog./nNote que esta consulta requer a atualização do <parâmetro SeachValue> para produzir resultados

// 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.
ContainerLog
| where * contains tostring(SearchValue)
| take 1000