If you want to know how much disk psace you have used for your Virtual Machine in Google Cloud, it’s easy to follow this instruction to check :

  1. Login to https://console.cloud.google.com
  2. From top-left choose your project name
  3. On left Dashboard, click on “Compute Engin” then ” VM instances”
  4. Find your VM instance then click on “SSH” on right side of that
  5. In Terminal use following commands to go top proper folder and see how much space you used
    • ls                                                       (to see list of folders )
    • cd floder-name                                 ( to go to proper folder-name )
    • du -sh * | sort -hr | head -n10            ( to see a list how space each folder or file has used )