github.com/google/cadvisor@v0.49.1/docs/clients.md (about)

     1  # cAdvisor API Clients
     2  
     3  There is an official Go client implementation in the [client](../client/) directory. You can use it on your own Go project by including it like this:
     4  
     5  ```go
     6  import "github.com/google/cadvisor/client"
     7  
     8  client, err = client.NewClient("http://localhost:8080/")
     9  mInfo, err := client.MachineInfo()
    10  ```
    11  
    12  Do you know of another cAdvisor client? Maybe in another language? Please let us know! We'd be happy to add a note on this page.