Shawn Wilsher

Results 91 comments of Shawn Wilsher

@agospher4eg, what were you looking to have exposed for Pools in the integration?

Interestingly enough, while the TrueNAS UI shows this information for pools, it's actually datasets that have this information in ZFS (or at least, the API that TrueNAS has), so it's...

And for my, or someone else's, reference in the future, `pool.dataset.query` gives me all the information I need to accomplish this, and we'd want to query at least these properties:...

A PR that needs some work is up in https://github.com/sdwilsh/aiotruenas-client/pull/92 to add this to the library. I need to rethink some stuff there, but it's a solid starting point.

v0.8.0 of the client library is out that includes Dataset support to provide the values you wanted, @agospher4eg. I'm not sure when I'll have time next to actually add support...

I just finished merging in v0.8.0 of the library, so we're pretty close to having this. I'm planning to hold off on releasing the next version until we get this....

> The ```bytes``` attributes are shown in bytes, vice MB, GB, TB, etc. I think the easiest way to handle that is in ```aiotruenas_client``` by pulling ```value``` vice ```rawvalue```. But...

Someone could use the raw `zfs` commands to rename a dataset, but meh. There is `pool.dataset.userprop.query`, but I suspect that does not include native properties. We could also file a...

`pool.dataset.userprop.query` does not show native properties, alas.

There's an undocumented shell API at `websocket/shell` we could try to reverse engineer, but I don't think it's worth the investment. It is likely fine to just assume nobody is...