| 1 | //go:build unix |
| 2 | |
| 3 | package cgroups_snapshot |
| 4 | |
| 5 | import ( |
| 6 | raw "github.com/netdata/netdata/go/plugins/pkg/netipc/service/raw" |
| 7 | ) |
| 8 | |
| 9 | // NewCache creates a new L3 cache. Does NOT connect. |
| 10 | func NewCache(runDir, serviceName string, config ClientConfig) *Cache { |
| 11 | return &Cache{inner: raw.NewCache(runDir, serviceName, clientConfigToTransport(config))} |
| 12 | } |