mirror of
https://github.com/weaveworks/scope.git
synced 2026-03-05 19:21:46 +00:00
10 lines
177 B
Go
10 lines
177 B
Go
package configs
|
|
|
|
type HugepageLimit struct {
|
|
// which type of hugepage to limit.
|
|
Pagesize string `json:"page_size"`
|
|
|
|
// usage limit for hugepage.
|
|
Limit int `json:"limit"`
|
|
}
|