GetFreshClusterStatus retrieves cluster status bypassing cache completely. This includes VM enrichment with guest agent data for full accuracy.
()
| 339 | // GetFreshClusterStatus retrieves cluster status bypassing cache completely. |
| 340 | // This includes VM enrichment with guest agent data for full accuracy. |
| 341 | func (c *Client) GetFreshClusterStatus() (*Cluster, error) { |
| 342 | return c.getFreshClusterStatusInternal(true) |
| 343 | } |
| 344 | |
| 345 | // GetLightClusterStatus retrieves fresh cluster status without VM enrichment. |
| 346 | // This is faster than GetFreshClusterStatus and suitable for periodic auto-refresh |
no test coverage detected