作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有一个几乎没有微服务的 kubernetes 集群。微服务将日志记录/导出为 JSON 格式。因此,我的 ELK 堆栈正在记录消息并在 kibana 中进行可视化(我使用的是 7.3 版),并且我正在努力进一步反序列化来自我的微服务的消息归档,以便我可以看到在“消息”字段中进一步提取的各个字段。例如,JSON 有“app”和“logger”字段——这些字段应该与当前显示 kubernetes 字段的方式相似。我已按如下方式配置了 filebeat,但我看不到进一步反序列化消息归档。你能帮我解决这个问题吗?请引用我的文件节拍配置。
========================
kind: ConfigMap
metadata:
name: filebeat-config
labels:
app: filebeat
data:
filebeat.yml: |-
# Enable filebeat config reloading
filebeat.config:
modules:
enabled: true
#path: ${path.config}/modules.d/*.yml
reload.enabled: true
reload.period: 10s
# Available log levels are: error, warning, info, debug
logging.level: warning
# To enable hints based autodiscover, remove `filebeat.inputs` configuration and uncomment this:
filebeat.autodiscover:
providers:
- type: kubernetes
node: ${NODE_NAME}
hints.enabled: true
json.message_key: message
hints.default_config:
type: container
paths:
- /var/log/containers/*${data.kubernetes.container.id}.log
templates:
config:
json.keys_under_root: true
json.add_error_key: false
processors:
- drop_event:
when:
or:
- equals:
kubernetes.namespace: "monitoring"
- contains:
message: "NETWORK"
- contains:
message: "INFO"
- add_cloud_metadata:
- add_kubernetes_metadata:
- add_host_metadata:
最佳答案
请向我们展示 logstash 配置文件。
我认为这可以通过以下代码来实现:
input {
file {
path => "/var/log/containers/*.log"
codec => "json"
}
}
关于json - ELK Stack - 进一步反序列化 Kubernetes 中归档的 "message",我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/62421657/
我有这个: const {ops} = getOplogStreamInterpreter(strm); ops.del.subscribe(v => { console.log('delete
我四处搜索,据我所知,POST 表单请求已被限制为 10MB (http://golang.org/src/net/http/request.go#L721)。 如果我要在我的 ServeHTTP 方
我是一名优秀的程序员,十分优秀!