mirror of
https://github.com/tailscale/tailscale.git
synced 2025-08-19 09:30:58 +00:00
metrics: move currentFDs code to the metrics package
Updates #2784 Signed-off-by: Brad Fitzpatrick <bradfitz@tailscale.com>
This commit is contained in:
13
metrics/fds_linux.go
Normal file
13
metrics/fds_linux.go
Normal file
@@ -0,0 +1,13 @@
|
||||
// Copyright (c) 2021 Tailscale Inc & AUTHORS All rights reserved.
|
||||
// Use of this source code is governed by a BSD-style
|
||||
// license that can be found in the LICENSE file.
|
||||
|
||||
package metrics
|
||||
|
||||
import "os"
|
||||
|
||||
func currentFDs() int {
|
||||
// TODO(bradfitz): do this without so many allocations on Linux.
|
||||
ents, _ := os.ReadDir("/proc/self/fd")
|
||||
return len(ents)
|
||||
}
|
Reference in New Issue
Block a user