Browse Source

Merge pull request #549 from prometheus/grobie/remove-windows

Remove Windows support
pull/435/head
Tobias Schmidt 8 years ago committed by GitHub
parent
commit
919aab2e80
  1. 2
      .promu.yml
  2. 2
      collector/buddyinfo.go
  3. 1
      collector/loadavg.go
  4. 2
      collector/meminfo.go

2
.promu.yml

@ -20,8 +20,6 @@ crossbuild:
- linux/386
- darwin/amd64
- darwin/386
- windows/amd64
- windows/386
- netbsd/amd64
- netbsd/386
- linux/arm

2
collector/buddyinfo.go

@ -12,7 +12,7 @@
// limitations under the License.
// +build !nobuddyinfo
// +build !windows,!netbsd
// +build !netbsd
package collector

1
collector/loadavg.go

@ -12,7 +12,6 @@
// limitations under the License.
// +build !noloadavg
// +build !windows
package collector

2
collector/meminfo.go

@ -12,7 +12,7 @@
// limitations under the License.
// +build !nomeminfo
// +build !windows,!netbsd
// +build !netbsd
package collector

Loading…
Cancel
Save