Skip to content

Commit

Permalink
Merge pull request #780 from richm/viaq-0.0.12
Browse files Browse the repository at this point in the history
Automatic merge from submit-queue.

Bug 1494912 - metrics indexes should not save the _source

https://bugzilla.redhat.com/show_bug.cgi?id=1494912
Completely disable the _source and _all for ovirt-metrics-*
/test
  • Loading branch information
openshift-merge-robot committed Nov 12, 2017
2 parents 6f7c2b4 + 8bf4db0 commit ef16397
Show file tree
Hide file tree
Showing 6 changed files with 224 additions and 7 deletions.
63 changes: 63 additions & 0 deletions docs/com.redhat.viaq-openshift-operations.asciidoc
Expand Up @@ -822,6 +822,69 @@ type: string
Docker container id


==== docker.container_id_short

type: string

Short container id, assigned by the container engine


==== docker.sauid

type: string

Sent login user id


==== docker.container_image

type: string

Name of the image


==== docker.pid

type: string

The process id


==== docker.user

type: string

User under which the container process runs


==== docker.command

type: string

Name of the command


==== docker.reason

type: string

Action that triggered this event


==== docker.operation

type: string

Operation carried out


==== docker.result

type: string

Result of the action



'''
[[exported-fields-pipeline_metadata]]
Expand Down
63 changes: 63 additions & 0 deletions docs/com.redhat.viaq-openshift-project.asciidoc
Expand Up @@ -822,6 +822,69 @@ type: string
Docker container id


==== docker.container_id_short

type: string

Short container id, assigned by the container engine


==== docker.sauid

type: string

Sent login user id


==== docker.container_image

type: string

Name of the image


==== docker.pid

type: string

The process id


==== docker.user

type: string

User under which the container process runs


==== docker.command

type: string

Name of the command


==== docker.reason

type: string

Action that triggered this event


==== docker.operation

type: string

Operation carried out


==== docker.result

type: string

Result of the action



'''
[[exported-fields-pipeline_metadata]]
Expand Down

Large diffs are not rendered by default.

Expand Up @@ -3,7 +3,7 @@
"mappings": {
"_default_": {
"_meta": {
"version": "2017.09.06.0"
"version": "2017.11.11.0"
},
"date_detection": false,
"dynamic_templates": [
Expand Down Expand Up @@ -130,10 +130,55 @@
},
"docker": {
"properties": {
"command": {
"doc_values": true,
"index": "not_analyzed",
"type": "string"
},
"container_id": {
"doc_values": true,
"index": "not_analyzed",
"type": "string"
},
"container_id_short": {
"doc_values": true,
"index": "not_analyzed",
"type": "string"
},
"container_image": {
"doc_values": true,
"index": "not_analyzed",
"type": "string"
},
"operation": {
"doc_values": true,
"index": "not_analyzed",
"type": "string"
},
"pid": {
"doc_values": true,
"index": "not_analyzed",
"type": "string"
},
"reason": {
"doc_values": true,
"index": "not_analyzed",
"type": "string"
},
"result": {
"doc_values": true,
"index": "not_analyzed",
"type": "string"
},
"sauid": {
"doc_values": true,
"index": "not_analyzed",
"type": "string"
},
"user": {
"doc_values": true,
"index": "not_analyzed",
"type": "string"
}
}
},
Expand Down
Expand Up @@ -3,7 +3,7 @@
"mappings": {
"_default_": {
"_meta": {
"version": "2017.09.06.0"
"version": "2017.11.11.0"
},
"date_detection": false,
"dynamic_templates": [
Expand Down Expand Up @@ -130,10 +130,55 @@
},
"docker": {
"properties": {
"command": {
"doc_values": true,
"index": "not_analyzed",
"type": "string"
},
"container_id": {
"doc_values": true,
"index": "not_analyzed",
"type": "string"
},
"container_id_short": {
"doc_values": true,
"index": "not_analyzed",
"type": "string"
},
"container_image": {
"doc_values": true,
"index": "not_analyzed",
"type": "string"
},
"operation": {
"doc_values": true,
"index": "not_analyzed",
"type": "string"
},
"pid": {
"doc_values": true,
"index": "not_analyzed",
"type": "string"
},
"reason": {
"doc_values": true,
"index": "not_analyzed",
"type": "string"
},
"result": {
"doc_values": true,
"index": "not_analyzed",
"type": "string"
},
"sauid": {
"doc_values": true,
"index": "not_analyzed",
"type": "string"
},
"user": {
"doc_values": true,
"index": "not_analyzed",
"type": "string"
}
}
},
Expand Down
Expand Up @@ -2,13 +2,14 @@
"aliases": {},
"mappings": {
"_default_": {
"_all": {
"enabled": false
},
"_meta": {
"version": "2017.09.06.0"
"version": "2017.11.11.0"
},
"_source": {
"excludes": [
"collectd.*"
]
"enabled": false
},
"date_detection": false,
"dynamic_templates": [
Expand Down

0 comments on commit ef16397

Please sign in to comment.