Skip to content

Instantly share code, notes, and snippets.

@gabrielfeo
Created March 21, 2025 18:01
Show Gist options
  • Save gabrielfeo/3ac90d0600889331038c89084834ea1b to your computer and use it in GitHub Desktop.
Save gabrielfeo/3ac90d0600889331038c89084834ea1b to your computer and use it in GitHub Desktop.
Capture free disk space to a custom value
import java.nio.file.FileSystems
develocity {
buildScan {
background {
FileSystems.getDefault().getFileStores().forEach {
value("Free space: ${it.name()}", "${it.usableSpace}/${it.totalSpace}")
}
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment