From dbfc777a948ff790c047f819dab77960b17fb996 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?No=C3=A9mi=20V=C3=A1nyi?= Date: Fri, 20 May 2022 16:51:42 +0200 Subject: [PATCH 1/2] Add netbsd an openbsd to list of tags --- metric/system/process/process_common.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/metric/system/process/process_common.go b/metric/system/process/process_common.go index c3d2cc86b..a2b4257e3 100644 --- a/metric/system/process/process_common.go +++ b/metric/system/process/process_common.go @@ -15,8 +15,8 @@ // specific language governing permissions and limitations // under the License. -//go:build darwin || freebsd || linux || windows || aix -// +build darwin freebsd linux windows aix +//go:build darwin || freebsd || linux || windows || aix || netbsd || openbsd +// +build darwin freebsd linux windows aix netbsd openbsd package process From 1e13c085ff9bb6d088b405fcb96d9e1cc59c6609 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?No=C3=A9mi=20V=C3=A1nyi?= Date: Fri, 20 May 2022 16:59:56 +0200 Subject: [PATCH 2/2] add changelog entry --- CHANGELOG.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index bea3ffca9..77e42fe9f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -14,6 +14,8 @@ This project adheres to [Semantic Versioning](http://semver.org/). ### Fixed +- Add more build tags to `process_common.go` so the module can be used on NetBSD and OpenBSD. #24 + ## [0.3.0] ### Added