github.com/demonoid81/containerd@v1.3.4/metrics/types/v1/types.go (about)

     1  // +build linux
     2  
     3  /*
     4     Copyright The containerd Authors.
     5  
     6     Licensed under the Apache License, Version 2.0 (the "License");
     7     you may not use this file except in compliance with the License.
     8     You may obtain a copy of the License at
     9  
    10         http://www.apache.org/licenses/LICENSE-2.0
    11  
    12     Unless required by applicable law or agreed to in writing, software
    13     distributed under the License is distributed on an "AS IS" BASIS,
    14     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    15     See the License for the specific language governing permissions and
    16     limitations under the License.
    17  */
    18  
    19  package v1
    20  
    21  import "github.com/containerd/cgroups"
    22  
    23  type (
    24  	// Metrics alias
    25  	Metrics = cgroups.Metrics
    26  	// BlkIOEntry alias
    27  	BlkIOEntry = cgroups.BlkIOEntry
    28  	// MemoryStat alias
    29  	MemoryStat = cgroups.MemoryStat
    30  	// CPUStat alias
    31  	CPUStat = cgroups.CPUStat
    32  	// CPUUsage alias
    33  	CPUUsage = cgroups.CPUUsage
    34  	// BlkIOStat alias
    35  	BlkIOStat = cgroups.BlkIOStat
    36  	// PidsStat alias
    37  	PidsStat = cgroups.PidsStat
    38  	// RdmaStat alias
    39  	RdmaStat = cgroups.RdmaStat
    40  	// RdmaEntry alias
    41  	RdmaEntry = cgroups.RdmaEntry
    42  	// HugetlbStat alias
    43  	HugetlbStat = cgroups.HugetlbStat
    44  )