Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add events metricset for kubernetes metricbeat module #4315

Merged
merged 3 commits into from
May 18, 2017
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGELOG.asciidoc
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,7 @@ https://github.com/elastic/beats/compare/v6.0.0-alpha1...master[Check the HEAD d
- Add process_summary metricset that records high level metrics about processes. {pull}4231[4231]
- Add `kube-state-metrics` based metrics to `kubernetes` module {pull}4253[4253]
- Add debug logging to Jolokia JMX metricset. {pull}4341[4341]
- Add events metricset for kubernetes metricbeat module {pull}4315[4315]

*Packetbeat*

Expand Down
12 changes: 6 additions & 6 deletions NOTICE
Original file line number Diff line number Diff line change
Expand Up @@ -252,6 +252,12 @@ Copyright 2014-2015 The Prometheus Authors
This product includes software developed at
SoundCloud Ltd. (http://soundcloud.com/).

--------------------------------------------------------------------
github.com/ericchiang/k8s
--------------------------------------------------------------------
Apache License


--------------------------------------------------------------------
github.com/garyburd/redigo
--------------------------------------------------------------------
Expand Down Expand Up @@ -1175,12 +1181,6 @@ THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.

--------------------------------------------------------------------
github.com/ericchiang/k8s
--------------------------------------------------------------------
Apache License


--------------------------------------------------------------------
github.com/golang/protobuf
--------------------------------------------------------------------
Expand Down
188 changes: 0 additions & 188 deletions libbeat/processors/kubernetes/vendor/vendor.json

This file was deleted.

150 changes: 150 additions & 0 deletions metricbeat/docs/fields.asciidoc
Original file line number Diff line number Diff line change
Expand Up @@ -6057,6 +6057,156 @@ type: long
Used inodes


[float]
== event Fields

The Kubernetes events metricset collects events that are generated by objects running inside of Kubernetes



[float]
=== kubernetes.event.count

type: long

Count field records the number of times the particular event has occured


[float]
=== kubernetes.event.message

type: keyword

Message recorded for the given event


[float]
=== kubernetes.event.reason

type: keyword

Reason recorded for the given event


[float]
=== kubernetes.event.type

type: keyword

Type of the given event


[float]
== metadata Fields

Metadata associated with the given event




[float]
=== kubernetes.event.metadata.timestamp.created

type: date

Timestamp of creation of the given event


[float]
=== kubernetes.event.metadata.timestamp.deleted

type: date

Timestamp of deletion of the given event


[float]
=== kubernetes.event.metadata.name

type: keyword

Name of the event


[float]
=== kubernetes.event.metadata.namespace

type: keyword

Namespace in which event was generated


[float]
=== kubernetes.event.metadata.resource_version

type: keyword

Version of the event resource


[float]
=== kubernetes.event.metadata.uid

type: keyword

Unique identifier to the event object


[float]
=== kubernetes.event.metadata.self_link

type: keyword

URL representing the event


[float]
== involved_object Fields

Metadata associated with the given involved object



[float]
=== kubernetes.event.involved_object.api_version

type: keyword

API version of the object


[float]
=== kubernetes.event.involved_object.kind

type: keyword

API kind of the object


[float]
=== kubernetes.event.involved_object.name

type: keyword

name of the object


[float]
=== kubernetes.event.involved_object.resource_version

type: keyword

resource version of the object


[float]
=== kubernetes.event.involved_object.uid

type: keyword

UUID version of the object


[float]
== node Fields

Expand Down
Loading