mirror of
				https://github.com/opencontainers/runc.git
				synced 2025-10-31 11:06:21 +08:00 
			
		
		
		
	 41a20b5852
			
		
	
	41a20b5852
	
	
	
		
			
			The libcontainer network statistics are unreachable without manually creating a libcontainer instance. To retrieve them via the CLI interface of runc, we now expose them as well. Signed-off-by: Sascha Grunert <sgrunert@suse.com>
		
			
				
	
	
		
			14 lines
		
	
	
		
			309 B
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			14 lines
		
	
	
		
			309 B
		
	
	
	
		
			Go
		
	
	
	
	
	
| package libcontainer
 | |
| 
 | |
| import (
 | |
| 	"github.com/opencontainers/runc/libcontainer/cgroups"
 | |
| 	"github.com/opencontainers/runc/libcontainer/intelrdt"
 | |
| 	"github.com/opencontainers/runc/types"
 | |
| )
 | |
| 
 | |
| type Stats struct {
 | |
| 	Interfaces    []*types.NetworkInterface
 | |
| 	CgroupStats   *cgroups.Stats
 | |
| 	IntelRdtStats *intelrdt.Stats
 | |
| }
 |