Skip to content

Commit 4858b04

Browse files
authored
fix:Remove 32 bit windows support for nri-winservices (#222)
1 parent 5baaa7e commit 4858b04

File tree

13 files changed

+36
-3
lines changed

13 files changed

+36
-3
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ This integration comes bundled with New Relic's Windows infrastructure agent. It
2525

2626
To build the integration, run `win_build.ps1`. This PowerShell script takes care of building the project and the supported version of the integration, placing the binaries in `/target/bin`.
2727

28-
> Note that only Windows is supported.
28+
> **Note:** Only 64-bit Windows (amd64) is supported. 32-bit Windows support has been removed.
2929
3030
## Testing
3131

src/exporter/exporter.go

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
//go:build windows && amd64
2+
// +build windows,amd64
3+
14
/*
25
* Copyright 2020 New Relic Corporation. All rights reserved.
36
* SPDX-License-Identifier: Apache-2.0

src/matcher/matcher.go

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
//go:build windows && amd64
2+
// +build windows,amd64
3+
14
/*
25
* Copyright 2020 New Relic Corporation. All rights reserved.
36
* SPDX-License-Identifier: Apache-2.0

src/matcher/matcher_test.go

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
//go:build windows && amd64
2+
// +build windows,amd64
3+
14
/*
25
* Copyright 2020 New Relic Corporation. All rights reserved.
36
* SPDX-License-Identifier: Apache-2.0

src/nri/config.go

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
//go:build windows && amd64
2+
// +build windows,amd64
3+
14
/*
25
* Copyright 2020 New Relic Corporation. All rights reserved.
36
* SPDX-License-Identifier: Apache-2.0

src/nri/config_test.go

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
//go:build windows && amd64
2+
// +build windows,amd64
3+
14
/*
25
* Copyright 2020 New Relic Corporation. All rights reserved.
36
* SPDX-License-Identifier: Apache-2.0

src/nri/metricsProcesor.go

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
//go:build windows && amd64
2+
// +build windows,amd64
3+
14
/*
25
* Copyright 2020 New Relic Corporation. All rights reserved.
36
* SPDX-License-Identifier: Apache-2.0

src/nri/metricsProcesor_test.go

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
//go:build windows && amd64
2+
// +build windows,amd64
3+
14
/*
25
* Copyright 2020 New Relic Corporation. All rights reserved.
36
* SPDX-License-Identifier: Apache-2.0

src/nri/rules.go

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
//go:build windows && amd64
2+
// +build windows,amd64
3+
14
/*
25
* Copyright 2020 New Relic Corporation. All rights reserved.
36
* SPDX-License-Identifier: Apache-2.0

src/scraper/fetcher.go

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
//go:build windows && amd64
2+
// +build windows,amd64
3+
14
/*
25
* Copyright 2020 New Relic Corporation. All rights reserved.
36
* SPDX-License-Identifier: Apache-2.0

0 commit comments

Comments
 (0)