OMV6 – First dashboard impressions

Adding custom dashboard widgets will be as easy as possible. Simply drop a JSON file to a specific directory and run a CLI command.

Examples:

{
	"id": "e2ed9a54-df38-11ea-8976-7786e66d5f43",
	"type": "rrd",
	"title": "CPU usage",
	"rrd": {
		"name": "cpu-0-hour.png"
	}
}
{
	"id": "1dc0ac9a-df14-11ea-8342-6fcac5f2e571",
	"title": "File Systems",
	"type": "datatable",
	"datatable": {
		"columns": [
			{
				"name": "Device",
				"prop": "devicefile",
				"flexGrow": 1,
				"sortable": true
			},
			{
				"name": "Label",
				"prop": "label",
				"flexGrow": 1,
				"sortable": true,
				"hidden": true
			},
			{
				"name": "Total",
				"prop": "size",
				"flexGrow": 1,
				"sortable": true,
				"cellTemplateName": "template",
				"cellTemplateConfig": "{{ size | tobytes | binaryunit | notavailable(\"-\") }}"
			},
			{
				"name": "Available",
				"prop": "available",
				"flexGrow": 1,
				"sortable": true,
				"cellTemplateName": "template",
				"cellTemplateConfig": "{{ available | tobytes | binaryunit | notavailable(\"-\") }}"
			},
			{
				"name": "Used",
				"prop": "used",
				"flexGrow": 1,
				"sortable": true,
				"cellTemplateName": "template",
				"cellTemplateConfig": "{{ used | tobytes | binaryunit | notavailable(\"-\") }}"
			}
		],
		"store": {
			"proxy": {
				"service": "FileSystemMgmt",
				"get": {
					"method": "enumerateFilesystems"
				}
			}
		},
		"sorters": [
			{
				"dir": "asc",
				"prop": "devicefile"
			}
		]
	}
}

New update available

openmediavault 5.5.8

  • Issue #782: Make attribute ‘slaves’ optional in datamodel ‘conf.system.network.interface’.

New update available

openmediavault 5.5.7

  • Update locales.
  • Install helper script which is used by the UDEV rules database which fixes the problem of some USB PATA/SATA bridge controllers.

New updates available

openmediavault 5.5.6

  • Fix bug in omv-firstaid when trying to set a new admin password.

openmediavault-usbbackup 5.0.5

  • Issue #777: Error creating backup job when filesystem has label with spaces.

New update available

openmediavault 5.5.5

  • Update locales.
  • Various improvements.
  • Fix bug in ‘omv.setup.fstab’ when UUID is quoted.
  • Added the ability to have multiple WebGUI administrators. To do so simply assign users to the ‘openmediavault-admin’ group.
  • Introduce an UDEV rules database which fixes the problem of some USB PATA/SATA bridge controllers that they do not pass on the serial number of the attached disks.
  • Issue #769: Get overall health status of SAS drives.