mirror of
https://git.proxmox.com/git/mirror_zfs.git
synced 2026-05-22 02:27:36 +03:00
JSON output support for zpool get
This commit adds support for zpool get command to output the list of properties for ZFS Pools and VDEVS in JSON format using '-j' option. Man page for zpool get is updated to include '-j' option. Reviewed-by: Tony Hutter <hutter2@llnl.gov> Reviewed-by: Ameer Hamza <ahamza@ixsystems.com> Signed-off-by: Umer Saleem <usaleem@ixsystems.com> Closes #16217
This commit is contained in:
committed by
Brian Behlendorf
parent
5cbdd5ea4f
commit
eb2b824bde
@@ -1972,26 +1972,6 @@ fill_dataset_info(nvlist_t *list, zfs_handle_t *zhp, boolean_t as_int)
|
||||
}
|
||||
}
|
||||
|
||||
static int
|
||||
zprop_collect_property(const char *name, zprop_get_cbdata_t *cbp,
|
||||
const char *propname, const char *value, zprop_source_t sourcetype,
|
||||
const char *source, const char *recvd_value, nvlist_t *nvl)
|
||||
{
|
||||
if (cbp->cb_json) {
|
||||
if ((sourcetype & cbp->cb_sources) == 0)
|
||||
return (0);
|
||||
else {
|
||||
return (zprop_nvlist_one_property(propname, value,
|
||||
sourcetype, source, recvd_value, nvl,
|
||||
cbp->cb_json_as_int));
|
||||
}
|
||||
} else {
|
||||
zprop_print_one_property(name, cbp,
|
||||
propname, value, sourcetype, source, recvd_value);
|
||||
return (0);
|
||||
}
|
||||
}
|
||||
|
||||
/*
|
||||
* zfs get [-rHp] [-j [--json-int]] [-o all | field[,field]...]
|
||||
* [-s source[,source]...]
|
||||
|
||||
Reference in New Issue
Block a user