3

I'm wondering if there's an API for getting the disk usage, database space usage, or bandwidth utilization of a domain hosted using Virtualmin?

Pierre.Vriens
  • 1,159
  • 34
  • 15
  • 19
FrancisV
  • 1,726
  • 3
  • 15
  • 18

1 Answers1

4

If it's in the UI, it's in the CLI and API. If it's not, it's probably a bug, and we'll probably fix it if you tell us about it.

You can get a huge amount of information about a domain using the list-domains function:

http://www.virtualmin.com/documentation/developer/cli/list_domains

Specifically, the --multiline mode:

# virtualmin list-domains --domain virtualmin.com --multiline

Will list disk and database usage, as well as a huge number of other values. I'd thought we had a JSON output option on that command...but, I'm not seeing it now, I guess it's still on the todo list. It's not too hard to parse that data, though, as it's just in "Name: Value" format, line separated.

Bandwidth:

http://www.virtualmin.com/documentation/developer/cli/list_bandwidth

All commands are usable from the remote API, as well. You just have to URL-encode your options and wrap them up in a web request. There are examples of that in the docs:

http://www.virtualmin.com/documentation/developer/http

swelljoe
  • 1,414
  • 8
  • 12