Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions packages/kubernetes/changelog.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,9 @@
# newer versions go on top
- version: "1.14.3"
changes:
- description: Add missing job.name and cronjob.name fields to state_container datastream
type: bugfix
link: https://github.com/elastic/integrations/pull/2613
- version: "1.14.2"
changes:
- description: Add missing job.name and cronjob.name fields to container related datastreams
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -124,6 +124,16 @@
description: >
Kubernetes statefulset name

- name: job.name
type: keyword
description: >
Name of the Job to which the Pod belongs

- name: cronjob.name
type: keyword
description: >
Name of the CronJob to which the Pod belongs

- name: container.name
dimension: true
type: keyword
Expand Down
2 changes: 2 additions & 0 deletions packages/kubernetes/docs/kube-state-metrics.md
Original file line number Diff line number Diff line change
Expand Up @@ -201,8 +201,10 @@ An example event for `state_container` looks as following:
| kubernetes.container.status.ready | Container ready status | boolean | | |
| kubernetes.container.status.reason | Waiting (ContainerCreating, CrashLoopBackoff, ErrImagePull, ImagePullBackoff) or termination (Completed, ContainerCannotRun, Error, OOMKilled) reason. | keyword | | |
| kubernetes.container.status.restarts | Container restarts count | integer | | counter |
| kubernetes.cronjob.name | Name of the CronJob to which the Pod belongs | keyword | | |
| kubernetes.daemonset.name | Kubernetes daemonset name | keyword | | |
| kubernetes.deployment.name | Kubernetes deployment name | keyword | | |
| kubernetes.job.name | Name of the Job to which the Pod belongs | keyword | | |
| kubernetes.labels.\* | Kubernetes labels map | object | | |
| kubernetes.namespace | Kubernetes namespace | keyword | | |
| kubernetes.namespace_annotations.\* | Kubernetes namespace annotations map | object | | |
Expand Down
2 changes: 1 addition & 1 deletion packages/kubernetes/manifest.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
format_version: 1.0.0
name: kubernetes
title: Kubernetes
version: 1.14.2
version: 1.14.3
license: basic
description: Collect logs and metrics from Kubernetes clusters with Elastic Agent.
type: integration
Expand Down