Skip to content

Commit

Permalink
Add freebsd support for the uptime metricset (#9413)
Browse files Browse the repository at this point in the history
  • Loading branch information
jsoriano committed Dec 13, 2018
1 parent 4f0a65f commit 26cef51
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 2 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.asciidoc
Original file line number Diff line number Diff line change
Expand Up @@ -112,6 +112,7 @@ https://github.com/elastic/beats/compare/v7.0.0-alpha1...master[Check the HEAD d
- The `elasticsearch/node` metricset now reports the Elasticsearch cluster UUID. {pull}8771[8771]
- Add service.type field to Metricbeat. {pull}8965[8965]
- Support GET requests in Jolokia module. {issue}8566[8566] {pull}9226[9226]
- Add freebsd support for the uptime metricset. {pull}9413[9413]
- Add `host.os.name` field to add_host_metadata processor. {issue}8948[8948] {pull}9405[9405]

*Packetbeat*
Expand Down
1 change: 1 addition & 0 deletions metricbeat/module/system/uptime/_meta/docs.asciidoc
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ This metricset is available on:
- Linux
- macOS
- OpenBSD
- FreeBSD
- Windows
[float]
Expand Down
2 changes: 1 addition & 1 deletion metricbeat/module/system/uptime/metricset.go
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
// specific language governing permissions and limitations
// under the License.

// +build darwin linux openbsd windows
// +build darwin linux openbsd windows freebsd,cgo

package uptime

Expand Down
2 changes: 1 addition & 1 deletion metricbeat/module/system/uptime/metricset_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
// specific language governing permissions and limitations
// under the License.

// +build darwin linux openbsd windows
// +build darwin linux openbsd windows freebsd,cgo

package uptime

Expand Down

0 comments on commit 26cef51

Please sign in to comment.