1
0
mirror of https://github.com/shirou/gopsutil.git synced 2025-05-10 19:29:14 +08:00

fix json tags

This commit is contained in:
Shrug 42 2018-06-20 10:20:54 -07:00
parent 12fad953c1
commit 6a38ce2069

View File

@ -67,8 +67,8 @@ type VirtualMemoryStat struct {
VMallocTotal uint64 `json:"vmalloctotal"`
VMallocUsed uint64 `json:"vmallocused"`
VMallocChunk uint64 `json:"vmallocchunk"`
HugePagesTotal uint64 `json:"hugePagestotal"`
HugePagesFree uint64 `json:"hugePagesfree"`
HugePagesTotal uint64 `json:"hugepagestotal"`
HugePagesFree uint64 `json:"hugepagesfree"`
HugePageSize uint64 `json:"hugepagesize"`
}