如何删除kibana生成的报告? (我使用elasticsearch的版本是6.8)
下面是生成的报告的屏幕截图,但似乎我只能下载它们,但不能
删除它们。有谁知道如何删除它们?任何提示或建议都非常受欢迎!
Elasticsearch 7.7 中似乎添加了使用 UI 删除报告的功能。 查看这些讨论:
https://discuss.elastic.co/t/delete-reports-from-reporting-tab-in-kibana/233458
https://discuss.elastic.co/t/automatically-remove-old-reports/321201
在 Elasticsearch v8 中:
kibana-reporting
Delete data after this phase
此外,您可能需要为用于更新 ILM 策略的 Kibana 用户启用
allow_restricted_indices
:
curl -X POST "es.your-domain.com:9200/_security/role/your_kibana_user" \
-H 'Content-Type: application/json' \
-u username:password \
-d '{
"indices": [
{
"names": [".reporting*"],
"privileges": ["all"],
"allow_restricted_indices": true
}
]
}'