Sundar Rajan
Sundar Rajan

Reputation: 596

Is there a way to find the list of Files accessed ( CRUD) by a Docker Container over its mounted volume

I am interested to find the list of files accessed ( create, read, update, delete) by a Docker container over its Mounted volume.

I can use File monitor over volume , would like to know is there any way it can be acheived or metrics extracted while Docker container access the volume and the directories or files present inside.

Volume mapping by -v hostdir:containerdir

Upvotes: 0

Views: 44

Answers (1)

Ali Ben Zarrouk
Ali Ben Zarrouk

Reputation: 2020

On windows you can use process monitor. On linux you can use iotop.

Upvotes: 1

Related Questions