无法在 kibana 仪表板中添加索引
Unable to add the index in kibana dashboard
我已经发布了 jira* 索引模式,它在 Kibana 中可用,如下所示
单击 "Next Step" 按钮 --> 单击创建索引按钮并观察到以下错误消息:
并且 jira 索引具有以下没有时间戳的示例数据。我无法控制将任何数据附加到此 response.json 文件中。我想要的只是想在图表 y 行计数 4 和 x 行中显示所有这些 JIRA ID。
jira索引的示例数据:
{
"JIRA-1":"KINDLEAMZ-67578",
"JIRA-2":"KINDLEAMZ-68661",
"JIRA-3":"KINDLEAMZ-68167"
}
谁能帮我解决这个问题?
elasticsearch's index is made read-only and never set back when disk
watermark reached high
手动修复所有索引的解锁问题:
curl -XPUT -H "Content-Type: application/json" https://[ES_HOST]:9200/_all/_settings -d '{"index.blocks.read_only_allow_delete": null}'
ES_HOST
是你 运行 你的 elasticsearch
来源:https://github.com/elastic/kibana/issues/13685#issuecomment-345859559
如果没有帮助,请查看:https://discuss.elastic.co/t/solved-forbidden-to-create-index-pattern-in-kibana-7-2/190947/9
我已经发布了 jira* 索引模式,它在 Kibana 中可用,如下所示
并且 jira 索引具有以下没有时间戳的示例数据。我无法控制将任何数据附加到此 response.json 文件中。我想要的只是想在图表 y 行计数 4 和 x 行中显示所有这些 JIRA ID。
jira索引的示例数据:
{
"JIRA-1":"KINDLEAMZ-67578",
"JIRA-2":"KINDLEAMZ-68661",
"JIRA-3":"KINDLEAMZ-68167"
}
谁能帮我解决这个问题?
elasticsearch's index is made read-only and never set back when disk watermark reached high
手动修复所有索引的解锁问题:
curl -XPUT -H "Content-Type: application/json" https://[ES_HOST]:9200/_all/_settings -d '{"index.blocks.read_only_allow_delete": null}'
ES_HOST
是你 运行 你的 elasticsearch
来源:https://github.com/elastic/kibana/issues/13685#issuecomment-345859559
如果没有帮助,请查看:https://discuss.elastic.co/t/solved-forbidden-to-create-index-pattern-in-kibana-7-2/190947/9