Removing the old reports

Hi Team,

i have created so many reports and now would like to delete the old reports.
Since i can not find any tab existing to deleting the old reports.

Is there any way we could delete the reports only?

all these are stored in .kibana index by default.
would it possible to delete report details part from .kibana index.

kibana 7 version is being used.

regards.
Manish

Hi
Currently there is an open issue tracking this: https://github.com/elastic/kibana/issues/26725

The safest way to delete Reports from ES directly is:

POST /.reporting-<yyyy.mm.dd>/_delete_by_query
{ "query": { "match_all": {} } }

That deletes the documents, but not the index completely, making the mappings still correct for the index. That's the safe thing to do if you need to delete recent reports.

Thanks
Rashmi

3 Likes

Thanks Rashmi .it helps . Awesome team.

1 Like

This topic was automatically closed 28 days after the last reply. New replies are no longer allowed.