2014-11-01 00:16:36 +00:00
|
|
|
table_name("mounts")
|
2015-02-09 01:40:35 +00:00
|
|
|
description("System mounted devices and filesystems (not process specific).")
|
2014-11-01 00:16:36 +00:00
|
|
|
schema([
|
2015-07-16 06:23:42 +00:00
|
|
|
Column("device", TEXT, "Mounted device"),
|
|
|
|
Column("device_alias", TEXT, "Mounted device alias"),
|
|
|
|
Column("path", TEXT, "Mounted device path"),
|
|
|
|
Column("type", TEXT, "Mounted device type"),
|
|
|
|
Column("blocks_size", BIGINT, "Block size in bytes"),
|
|
|
|
Column("blocks", BIGINT, "Mounted device used blocks"),
|
|
|
|
Column("blocks_free", BIGINT, "Mounted device free blocks"),
|
|
|
|
Column("blocks_available", BIGINT, "Mounted device available blocks"),
|
|
|
|
Column("inodes", BIGINT, "Mounted device used inodes"),
|
|
|
|
Column("inodes_free", BIGINT, "Mounted device free inodes"),
|
|
|
|
Column("flags", TEXT, "Mounted device flags"),
|
2014-11-01 00:16:36 +00:00
|
|
|
])
|
|
|
|
implementation("mounts@genMounts")
|