We are working in a mobilefirst 6.3 project, and our .war is installed in a liberty profile server.
We didn't configure the TTL on the analytics before. is there any way (tool, rest service or file-system) that I can remove the analytics logs in mobilefirst.
MobileFirst Platform Foundation Analytics uses ElasticSearch and Lucene at its core - there is nothing special to be done from a MobileFirst perspective.
If you want to remove everything, the whole Analytics store:
servers/<server-name>/
in the Liberty installationOtherwise, using either CURL or Postman you can invoke the
DELETE
query.You can find the ElasticSearch API here: https://www.elastic.co/guide/en/elasticsearch/reference/current/docs-delete-by-query.html
Some additional questions about this topic in Stack Overflow:
Example steps:
http.enabled=true
and restart the Analytics server (if it's a cluster, you still only need to open the port on one of the cluster members)Postman example query:
CURL example query: