【发布时间】:2022-07-24 19:31:45
【问题描述】:
是否有其他方法可以在没有 Log Observer 的情况下监控 AKS Pod 日志?我尝试使用存储帐户/事件中心实现this 解决方法,但也没有存储来自 pod 的应用程序日志。我可以使用以下查询轻松地从日志分析中获取应用程序日志:
ContainerLog
| join kind = inner KubePodInventory on $left.ContainerID == $right.CointainerID
| where Namespace == "default" and LogEntry contains "error"
| project TimeGenerated, LogEntry, ContainerName
但不是来自存储在存储帐户或事件中心中的日志。是否真的可以在没有日志观察器的情况下在 signalfx 中监控 pod 日志?
【问题讨论】:
标签: kubernetes logging monitoring azure-aks signalfx