mirror of
https://github.com/opencontainers/runc.git
synced 2026-07-11 06:03:57 +08:00
intelrdt: add mbm stats
Signed-off-by: Paweł Szulik <pawel.szulik@intel.com>
This commit is contained in:
@@ -161,6 +161,9 @@ func convertLibcontainerStats(ls *libcontainer.Stats) *types.Stats {
|
|||||||
s.IntelRdt.MemBwSchemaRoot = is.MemBwSchemaRoot
|
s.IntelRdt.MemBwSchemaRoot = is.MemBwSchemaRoot
|
||||||
s.IntelRdt.MemBwSchema = is.MemBwSchema
|
s.IntelRdt.MemBwSchema = is.MemBwSchema
|
||||||
}
|
}
|
||||||
|
if intelrdt.IsMbmEnabled() {
|
||||||
|
s.IntelRdt.MBMStats = is.MBMStats
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
s.NetworkInterfaces = ls.Interfaces
|
s.NetworkInterfaces = ls.Interfaces
|
||||||
|
|||||||
@@ -55,6 +55,10 @@ import (
|
|||||||
* | | |-- cbm_mask
|
* | | |-- cbm_mask
|
||||||
* | | |-- min_cbm_bits
|
* | | |-- min_cbm_bits
|
||||||
* | | |-- num_closids
|
* | | |-- num_closids
|
||||||
|
* | |-- L3_MON
|
||||||
|
* | | |-- max_threshold_occupancy
|
||||||
|
* | | |-- mon_features
|
||||||
|
* | | |-- num_rmids
|
||||||
* | |-- MB
|
* | |-- MB
|
||||||
* | |-- bandwidth_gran
|
* | |-- bandwidth_gran
|
||||||
* | |-- delay_linear
|
* | |-- delay_linear
|
||||||
@@ -221,6 +225,17 @@ func init() {
|
|||||||
isMbaEnabled = true
|
isMbaEnabled = true
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if flagsSet.MBMTotal || flagsSet.MBMLocal {
|
||||||
|
if _, err := os.Stat(filepath.Join(intelRdtRoot, "info", "L3_MON")); err == nil {
|
||||||
|
isMbmEnabled = true
|
||||||
|
}
|
||||||
|
|
||||||
|
enabledMonFeatures, err = getMonFeatures(intelRdtRoot)
|
||||||
|
if err != nil {
|
||||||
|
return
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// Return the mount point path of Intel RDT "resource control" filesysem
|
// Return the mount point path of Intel RDT "resource control" filesysem
|
||||||
@@ -300,6 +315,10 @@ func isIntelRdtMounted() bool {
|
|||||||
type cpuInfoFlags struct {
|
type cpuInfoFlags struct {
|
||||||
CAT bool // Cache Allocation Technology
|
CAT bool // Cache Allocation Technology
|
||||||
MBA bool // Memory Bandwidth Allocation
|
MBA bool // Memory Bandwidth Allocation
|
||||||
|
|
||||||
|
// Memory Bandwidth Monitoring related.
|
||||||
|
MBMTotal bool
|
||||||
|
MBMLocal bool
|
||||||
}
|
}
|
||||||
|
|
||||||
func parseCpuInfoFile(path string) (cpuInfoFlags, error) {
|
func parseCpuInfoFile(path string) (cpuInfoFlags, error) {
|
||||||
@@ -325,6 +344,10 @@ func parseCpuInfoFile(path string) (cpuInfoFlags, error) {
|
|||||||
infoFlags.CAT = true
|
infoFlags.CAT = true
|
||||||
case "mba":
|
case "mba":
|
||||||
infoFlags.MBA = true
|
infoFlags.MBA = true
|
||||||
|
case "cqm_mbm_total":
|
||||||
|
infoFlags.MBMTotal = true
|
||||||
|
case "cqm_mbm_local":
|
||||||
|
infoFlags.MBMLocal = true
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
return infoFlags, nil
|
return infoFlags, nil
|
||||||
@@ -589,7 +612,8 @@ func (m *IntelRdtManager) GetStats() (*Stats, error) {
|
|||||||
schemaRootStrings := strings.Split(tmpRootStrings, "\n")
|
schemaRootStrings := strings.Split(tmpRootStrings, "\n")
|
||||||
|
|
||||||
// The L3 cache and memory bandwidth schemata in 'container_id' group
|
// The L3 cache and memory bandwidth schemata in 'container_id' group
|
||||||
tmpStrings, err := getIntelRdtParamString(m.GetPath(), "schemata")
|
containerPath := m.GetPath()
|
||||||
|
tmpStrings, err := getIntelRdtParamString(containerPath, "schemata")
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return nil, err
|
return nil, err
|
||||||
}
|
}
|
||||||
@@ -641,6 +665,14 @@ func (m *IntelRdtManager) GetStats() (*Stats, error) {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if IsMbmEnabled() {
|
||||||
|
mbmStats, err := getMBMStats(containerPath)
|
||||||
|
if err != nil {
|
||||||
|
return stats, err
|
||||||
|
}
|
||||||
|
stats.MBMStats = mbmStats
|
||||||
|
}
|
||||||
|
|
||||||
return stats, nil
|
return stats, nil
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -0,0 +1,102 @@
|
|||||||
|
// +build linux
|
||||||
|
|
||||||
|
package intelrdt
|
||||||
|
|
||||||
|
import (
|
||||||
|
"bufio"
|
||||||
|
"io"
|
||||||
|
"io/ioutil"
|
||||||
|
"os"
|
||||||
|
"path/filepath"
|
||||||
|
|
||||||
|
"github.com/sirupsen/logrus"
|
||||||
|
)
|
||||||
|
|
||||||
|
var (
|
||||||
|
// The flag to indicate if Intel RDT/MBM is enabled
|
||||||
|
isMbmEnabled bool
|
||||||
|
|
||||||
|
enabledMonFeatures monFeatures
|
||||||
|
)
|
||||||
|
|
||||||
|
type monFeatures struct {
|
||||||
|
mbmTotalBytes bool
|
||||||
|
mbmLocalBytes bool
|
||||||
|
}
|
||||||
|
|
||||||
|
// Check if Intel RDT/MBM is enabled
|
||||||
|
func IsMbmEnabled() bool {
|
||||||
|
return isMbmEnabled
|
||||||
|
}
|
||||||
|
|
||||||
|
func getMonFeatures(intelRdtRoot string) (monFeatures, error) {
|
||||||
|
file, err := os.Open(filepath.Join(intelRdtRoot, "info", "L3_MON", "mon_features"))
|
||||||
|
defer file.Close()
|
||||||
|
if err != nil {
|
||||||
|
return monFeatures{}, err
|
||||||
|
}
|
||||||
|
return parseMonFeatures(file)
|
||||||
|
}
|
||||||
|
|
||||||
|
func parseMonFeatures(reader io.Reader) (monFeatures, error) {
|
||||||
|
scanner := bufio.NewScanner(reader)
|
||||||
|
|
||||||
|
monFeatures := monFeatures{}
|
||||||
|
|
||||||
|
for scanner.Scan() {
|
||||||
|
|
||||||
|
switch feature := scanner.Text(); feature {
|
||||||
|
|
||||||
|
case "mbm_total_bytes":
|
||||||
|
monFeatures.mbmTotalBytes = true
|
||||||
|
case "mbm_local_bytes":
|
||||||
|
monFeatures.mbmLocalBytes = true
|
||||||
|
default:
|
||||||
|
logrus.Warnf("Unsupported Intel RDT monitoring feature: %s", feature)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
return monFeatures, scanner.Err()
|
||||||
|
}
|
||||||
|
|
||||||
|
func getMBMStats(containerPath string) (*[]MBMNumaNodeStats, error) {
|
||||||
|
var mbmStats []MBMNumaNodeStats
|
||||||
|
|
||||||
|
numaFiles, err := ioutil.ReadDir(filepath.Join(containerPath, "mon_data"))
|
||||||
|
if err != nil {
|
||||||
|
return &mbmStats, err
|
||||||
|
}
|
||||||
|
|
||||||
|
for _, file := range numaFiles {
|
||||||
|
if file.IsDir() {
|
||||||
|
numaStats, err := getMBMNumaNodeStats(filepath.Join(containerPath, "mon_data", file.Name()))
|
||||||
|
if err != nil {
|
||||||
|
return &mbmStats, nil
|
||||||
|
}
|
||||||
|
mbmStats = append(mbmStats, *numaStats)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
return &mbmStats, nil
|
||||||
|
}
|
||||||
|
|
||||||
|
func getMBMNumaNodeStats(numaPath string) (*MBMNumaNodeStats, error) {
|
||||||
|
stats := &MBMNumaNodeStats{}
|
||||||
|
if enabledMonFeatures.mbmTotalBytes {
|
||||||
|
mbmTotalBytes, err := getIntelRdtParamUint(numaPath, "mbm_total_bytes")
|
||||||
|
if err != nil {
|
||||||
|
return nil, err
|
||||||
|
}
|
||||||
|
stats.MBMTotalBytes = mbmTotalBytes
|
||||||
|
}
|
||||||
|
|
||||||
|
if enabledMonFeatures.mbmLocalBytes {
|
||||||
|
mbmLocalBytes, err := getIntelRdtParamUint(numaPath, "mbm_local_bytes")
|
||||||
|
if err != nil {
|
||||||
|
return nil, err
|
||||||
|
}
|
||||||
|
stats.MBMLocalBytes = mbmLocalBytes
|
||||||
|
}
|
||||||
|
|
||||||
|
return stats, nil
|
||||||
|
}
|
||||||
@@ -0,0 +1,128 @@
|
|||||||
|
// +build linux
|
||||||
|
|
||||||
|
package intelrdt
|
||||||
|
|
||||||
|
import (
|
||||||
|
"io/ioutil"
|
||||||
|
"os"
|
||||||
|
"path/filepath"
|
||||||
|
"strconv"
|
||||||
|
"strings"
|
||||||
|
"testing"
|
||||||
|
)
|
||||||
|
|
||||||
|
func TestParseMonFeatures(t *testing.T) {
|
||||||
|
t.Run("All features available", func(t *testing.T) {
|
||||||
|
parsedMonFeatures, err := parseMonFeatures(
|
||||||
|
strings.NewReader("mbm_total_bytes\nmbm_local_bytes"))
|
||||||
|
if err != nil {
|
||||||
|
t.Errorf("Error while parsing mon features err = %v", err)
|
||||||
|
}
|
||||||
|
|
||||||
|
expectedMonFeatures := monFeatures{true, true}
|
||||||
|
|
||||||
|
if parsedMonFeatures != expectedMonFeatures {
|
||||||
|
t.Error("Cannot gather all features!")
|
||||||
|
}
|
||||||
|
})
|
||||||
|
|
||||||
|
t.Run("No features available", func(t *testing.T) {
|
||||||
|
parsedMonFeatures, err := parseMonFeatures(strings.NewReader(""))
|
||||||
|
|
||||||
|
if err != nil {
|
||||||
|
t.Errorf("Error while parsing mon features err = %v", err)
|
||||||
|
}
|
||||||
|
|
||||||
|
expectedMonFeatures := monFeatures{false, false}
|
||||||
|
|
||||||
|
if parsedMonFeatures != expectedMonFeatures {
|
||||||
|
t.Error("Expected no features available but there is any!")
|
||||||
|
}
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
|
func mockMBM(NUMANodes []string, mocks map[string]uint64) (string, error) {
|
||||||
|
testDir, err := ioutil.TempDir("", "rdt_mbm_test")
|
||||||
|
if err != nil {
|
||||||
|
return "", err
|
||||||
|
}
|
||||||
|
monDataPath := filepath.Join(testDir, "mon_data")
|
||||||
|
|
||||||
|
for _, numa := range NUMANodes {
|
||||||
|
numaPath := filepath.Join(monDataPath, numa)
|
||||||
|
err = os.MkdirAll(numaPath, os.ModePerm)
|
||||||
|
if err != nil {
|
||||||
|
return "", err
|
||||||
|
}
|
||||||
|
|
||||||
|
for fileName, value := range mocks {
|
||||||
|
err := ioutil.WriteFile(filepath.Join(numaPath, fileName), []byte(strconv.FormatUint(value, 10)), 777)
|
||||||
|
if err != nil {
|
||||||
|
return "", err
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
return testDir, nil
|
||||||
|
}
|
||||||
|
|
||||||
|
func TestGetMbmStats(t *testing.T) {
|
||||||
|
mocksNUMANodesToCreate := []string{"mon_l3_00", "mon_l3_01"}
|
||||||
|
|
||||||
|
mocksFilesToCreate := map[string]uint64{
|
||||||
|
"mbm_total_bytes": 9123911,
|
||||||
|
"mbm_local_bytes": 2361361,
|
||||||
|
}
|
||||||
|
|
||||||
|
mockedMBM, err := mockMBM(mocksNUMANodesToCreate, mocksFilesToCreate)
|
||||||
|
|
||||||
|
defer func() {
|
||||||
|
err := os.RemoveAll(mockedMBM)
|
||||||
|
if err != nil {
|
||||||
|
t.Fatal(err)
|
||||||
|
}
|
||||||
|
}()
|
||||||
|
|
||||||
|
if err != nil {
|
||||||
|
t.Fatal(err)
|
||||||
|
}
|
||||||
|
|
||||||
|
t.Run("Gather mbm", func(t *testing.T) {
|
||||||
|
enabledMonFeatures.mbmTotalBytes = true
|
||||||
|
enabledMonFeatures.mbmLocalBytes = true
|
||||||
|
|
||||||
|
stats, err := getMBMStats(mockedMBM)
|
||||||
|
if err != nil {
|
||||||
|
t.Fatal(err)
|
||||||
|
}
|
||||||
|
|
||||||
|
if len(*stats) != len(mocksNUMANodesToCreate) {
|
||||||
|
t.Fatalf("Wrong number of stats slices from NUMA nodes. Expected: %v but got: %v",
|
||||||
|
len(mocksNUMANodesToCreate), len(*stats))
|
||||||
|
}
|
||||||
|
|
||||||
|
checkStatCorrection := func(got MBMNumaNodeStats, expected MBMNumaNodeStats, t *testing.T) {
|
||||||
|
if got.MBMTotalBytes != expected.MBMTotalBytes {
|
||||||
|
t.Fatalf("Wrong value of mbm_total_bytes. Expected: %v but got: %v",
|
||||||
|
expected.MBMTotalBytes,
|
||||||
|
got.MBMTotalBytes)
|
||||||
|
}
|
||||||
|
|
||||||
|
if got.MBMLocalBytes != expected.MBMLocalBytes {
|
||||||
|
t.Fatalf("Wrong value of mbm_local_bytes. Expected: %v but got: %v",
|
||||||
|
expected.MBMLocalBytes,
|
||||||
|
got.MBMLocalBytes)
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
expectedStats := MBMNumaNodeStats{
|
||||||
|
MBMTotalBytes: mocksFilesToCreate["mbm_total_bytes"],
|
||||||
|
MBMLocalBytes: mocksFilesToCreate["mbm_local_bytes"],
|
||||||
|
}
|
||||||
|
|
||||||
|
checkStatCorrection((*stats)[0], expectedStats, t)
|
||||||
|
checkStatCorrection((*stats)[1], expectedStats, t)
|
||||||
|
})
|
||||||
|
}
|
||||||
@@ -15,6 +15,14 @@ type MemBwInfo struct {
|
|||||||
NumClosids uint64 `json:"num_closids,omitempty"`
|
NumClosids uint64 `json:"num_closids,omitempty"`
|
||||||
}
|
}
|
||||||
|
|
||||||
|
type MBMNumaNodeStats struct {
|
||||||
|
// The 'mbm_total_bytes' in 'container_id' group
|
||||||
|
MBMTotalBytes uint64 `json:"mbm_total_bytes,omitempty"`
|
||||||
|
|
||||||
|
// The 'mbm_local_bytes' in 'container_id' group
|
||||||
|
MBMLocalBytes uint64 `json:"mbm_local_bytes,omitempty"`
|
||||||
|
}
|
||||||
|
|
||||||
type Stats struct {
|
type Stats struct {
|
||||||
// The read-only L3 cache information
|
// The read-only L3 cache information
|
||||||
L3CacheInfo *L3CacheInfo `json:"l3_cache_info,omitempty"`
|
L3CacheInfo *L3CacheInfo `json:"l3_cache_info,omitempty"`
|
||||||
@@ -33,6 +41,9 @@ type Stats struct {
|
|||||||
|
|
||||||
// The memory bandwidth schema in 'container_id' group
|
// The memory bandwidth schema in 'container_id' group
|
||||||
MemBwSchema string `json:"mem_bw_schema,omitempty"`
|
MemBwSchema string `json:"mem_bw_schema,omitempty"`
|
||||||
|
|
||||||
|
// The memory bandwidth monitoring statistics from NUMA nodes in 'container_id' group
|
||||||
|
MBMStats *[]MBMNumaNodeStats `json:"mbm_statistics,omitempty"`
|
||||||
}
|
}
|
||||||
|
|
||||||
func NewStats() *Stats {
|
func NewStats() *Stats {
|
||||||
|
|||||||
@@ -1,5 +1,7 @@
|
|||||||
package types
|
package types
|
||||||
|
|
||||||
|
import "github.com/opencontainers/runc/libcontainer/intelrdt"
|
||||||
|
|
||||||
// Event struct for encoding the event data to json.
|
// Event struct for encoding the event data to json.
|
||||||
type Event struct {
|
type Event struct {
|
||||||
Type string `json:"type"`
|
Type string `json:"type"`
|
||||||
@@ -113,6 +115,9 @@ type IntelRdt struct {
|
|||||||
|
|
||||||
// The memory bandwidth schema in 'container_id' group
|
// The memory bandwidth schema in 'container_id' group
|
||||||
MemBwSchema string `json:"mem_bw_schema,omitempty"`
|
MemBwSchema string `json:"mem_bw_schema,omitempty"`
|
||||||
|
|
||||||
|
// The memory bandwidth monitoring statistics from NUMA nodes in 'container_id' group
|
||||||
|
MBMStats *[]intelrdt.MBMNumaNodeStats `json:"mbm_statistics,omitempty"`
|
||||||
}
|
}
|
||||||
|
|
||||||
type NetworkInterface struct {
|
type NetworkInterface struct {
|
||||||
|
|||||||
Reference in New Issue
Block a user