Delete all access audit events
Deleting audit log entries is done through API calls only.
DELETE /api/v1/audits/access?type=[type]
Deletes all access events of a specific type. In case type is not provided all access audits for every type will be removed.
The possible 'types' for this command are:
docker
: Docker access audit
kubernetes
: Kubernetes access audit (to Kubernetes master)
swarm
: same as Kubernetes but for Docker Swarm
sudo
: sudo commands audit on host
400
- bad request was provided
curl -X DELETE -u admin:<Password> 'https://<localhost>:8443/api/v1/audits/access?type=docker'
{}