[Agent] [Status] add host info to agent status
This commit is contained in:
@@ -1,25 +1,16 @@
|
||||
package status
|
||||
|
||||
import (
|
||||
"fmt"
|
||||
"agent-go/utils"
|
||||
"testing"
|
||||
)
|
||||
|
||||
func TestGetHostInfo(t *testing.T) {
|
||||
|
||||
hostInfo := HostInfo{}
|
||||
|
||||
fmt.Printf("host info is %v\n", hostInfo)
|
||||
fmt.Printf("host info type is %T\n", hostInfo)
|
||||
fmt.Printf("host info address is %p\n", &hostInfo)
|
||||
|
||||
fmt.Println()
|
||||
|
||||
info, err := GetHostInfo()
|
||||
if err != nil {
|
||||
t.Errorf("get host info error is %v", err)
|
||||
}
|
||||
|
||||
fmt.Printf("get host info is %v\n", info)
|
||||
fmt.Printf("get host info address is %p\n", &info)
|
||||
utils.BeautifulPrint(info)
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user