我已经发布了jira *索引模式及其在Kibana中的可用方式,如下所示
单击“下一步”按钮->单击“创建索引”按钮,并观察到以下错误消息:
并且jira索引具有以下没有时间戳的示例数据。我没有控制权将任何数据附加到此response.json文件中。我想要的是想要在图表y行数4和x行中显示所有这些JIRA ID。
jira索引的样本数据:
{
"JIRA-1":"KINDLEAMZ-67578",
"JIRA-2":"KINDLEAMZ-68661",
"JIRA-3":"KINDLEAMZ-68167"
}
有人可以帮我解决这个问题吗?
答案 0 :(得分:0)
elasticsearch的索引设置为只读,并且在磁盘时永远不会回退 水印达到高
要手动解决所有索引的解锁问题:
assert bb1['x1'] <= bb1['x2']
assert bb1['y1'] <= bb1['y2']
assert bb2['x1'] <= bb2['x2']
assert bb2['y1'] <= bb2['y2']
................................................
# The intersection of two axis-aligned bounding boxes is always an
# axis-aligned bounding box.
# NOTE: We MUST ALWAYS add +1 to calculate area when working in
# screen coordinates, since 0,0 is the top left pixel, and w-1,h-1
# is the bottom right pixel. If we DON'T add +1, the result is wrong.
intersection_area = (x_right - x_left + 1) * (y_bottom - y_top + 1)
# compute the area of both AABBs
bb1_area = (bb1['x2'] - bb1['x1'] + 1) * (bb1['y2'] - bb1['y1'] + 1)
bb2_area = (bb2['x2'] - bb2['x1'] + 1) * (bb2['y2'] - bb2['y1'] + 1)
curl -XPUT -H "Content-Type: application/json" https://[ES_HOST]:9200/_all/_settings -d '{"index.blocks.read_only_allow_delete": null}'
是运行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