diff --git a/package/gluon-announce/files/lib/gluon/announce/statistics.d/overlay b/package/gluon-announce/files/lib/gluon/announce/statistics.d/overlay
new file mode 100644
index 0000000000000000000000000000000000000000..7dc6eed0f2fcae7e4431455d797549a12b0bd13c
--- /dev/null
+++ b/package/gluon-announce/files/lib/gluon/announce/statistics.d/overlay
@@ -0,0 +1,7 @@
+local fs = require "nixio.fs"
+local opkg = require "luci.model.ipkg"
+
+local st = fs.statvfs(opkg.overlay_root())
+local used = 100*((st.blocks - st.bfree) / st.blocks) or 0
+
+return math.floor(used * 1000 + 0.5) / 1000