You can not select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
		
			
		
			
				
					
					
						
							20 lines
						
					
					
						
							458 B
						
					
					
				
			
		
		
		
			
			
			
		
		
	
	
							20 lines
						
					
					
						
							458 B
						
					
					
				| // +build linux | |
|  | |
| package stats | |
| 
 | |
| import ( | |
| 	"syscall" | |
| 
 | |
| 	"github.com/chrislusf/seaweedfs/weed/pb/volume_server_pb" | |
| ) | |
| 
 | |
| func fillInMemStatus(mem *volume_server_pb.MemStatus) { | |
| 	//system memory usage | |
| 	sysInfo := new(syscall.Sysinfo_t) | |
| 	err := syscall.Sysinfo(sysInfo) | |
| 	if err == nil { | |
| 		mem.All = uint64(sysInfo.Totalram) //* uint64(syscall.Getpagesize()) | |
| 		mem.Free = uint64(sysInfo.Freeram) //* uint64(syscall.Getpagesize()) | |
| 		mem.Used = mem.All - mem.Free | |
| 	} | |
| }
 |