From 016d79535d0ec52faa9ed64b44f5956497e3dc37 Mon Sep 17 00:00:00 2001 From: Tobias Schmidt Date: Thu, 20 Jul 2017 14:37:10 -0400 Subject: [PATCH] Fix build tags of meminfo collector The meminfo collector only supports darwin, dragonfly, freebsd and linux and must not be included in other archtictures. --- collector/meminfo.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/collector/meminfo.go b/collector/meminfo.go index 6476c616..399e1629 100644 --- a/collector/meminfo.go +++ b/collector/meminfo.go @@ -11,8 +11,8 @@ // See the License for the specific language governing permissions and // limitations under the License. +// +build darwin dragonfly freebsd linux // +build !nomeminfo -// +build !netbsd package collector