1
0
Fork 0

타입오류 수정

This commit is contained in:
Sangbum Kim 2018-07-06 15:10:32 +09:00
parent a9b0dc79e3
commit 5de0a1a5d9
2 changed files with 12 additions and 12 deletions

View File

@ -91,10 +91,10 @@ func e() {
fmt.Printf("cpu total: %d\n", ct.Total) fmt.Printf("cpu total: %d\n", ct.Total)
fmt.Printf("cpu user: %d\n", ct.User) fmt.Printf("cpu user: %d\n", ct.User)
fmt.Printf("cpu idle: %f%%\n", ct.Idle*100/ct.Total) fmt.Printf("cpu idle: %f%%\n", float64(ct.Idle*100)/float64(ct.Total))
fmt.Printf("cpu nice: %f%%\n", ct.Nice*100/ct.Total) fmt.Printf("cpu nice: %f%%\n", float64(ct.Nice*100)/float64(ct.Total))
fmt.Printf("cpu system: %f%%\n", ct.System*100/ct.Total) fmt.Printf("cpu system: %f%%\n", float64(ct.System*100)/float64(ct.Total))
fmt.Printf("cpu user: %f%%\n", ct.User*100/ct.Total) fmt.Printf("cpu user: %f%%\n", float64(ct.User*100)/float64(ct.Total))
} }
func f() { func f() {

View File

@ -105,14 +105,14 @@ func e() {
fmt.Printf("cpu steal: %d\n", ct.Steal) fmt.Printf("cpu steal: %d\n", ct.Steal)
fmt.Printf("cpu total: %d\n", ct.Total) fmt.Printf("cpu total: %d\n", ct.Total)
fmt.Printf("cpu user: %f%%\n", ct.User*100/ct.Total) fmt.Printf("cpu user: %f%%\n", float64(ct.User*100)/float64(ct.Total))
fmt.Printf("cpu nice: %f%%\n", ct.Nice*100/ct.Total) fmt.Printf("cpu nice: %f%%\n", float64(ct.Nice*100)/float64(ct.Total))
fmt.Printf("cpu system: %f%%\n", ct.System*100/ct.Total) fmt.Printf("cpu system: %f%%\n", float64(ct.System*100)/float64(ct.Total))
fmt.Printf("cpu idle: %f%%\n", ct.Idle*100/ct.Total) fmt.Printf("cpu idle: %f%%\n", float64(ct.Idle*100)/float64(ct.Total))
fmt.Printf("cpu iowait: %f%%\n", ct.Iowait*100/ct.Total) fmt.Printf("cpu iowait: %f%%\n", float64(ct.Iowait*100)/float64(ct.Total))
fmt.Printf("cpu irq: %f%%\n", ct.Irq*100/ct.Total) fmt.Printf("cpu irq: %f%%\n", float64(ct.Irq*100)/float64(ct.Total))
fmt.Printf("cpu softirq: %f%%\n", ct.Softirq*100/ct.Total) fmt.Printf("cpu softirq: %f%%\n", float64(ct.Softirq*100)/float64(ct.Total))
fmt.Printf("cpu steal: %f%%\n", ct.Steal*100/ct.Total) fmt.Printf("cpu steal: %f%%\n", float64(ct.Steal*100)/float64(ct.Total))
} }
func f() { func f() {
disks, err := disk.Get() disks, err := disk.Get()