Skip to content

Commit

Permalink
Add new fields to monitoring template for Beats state (#32085) (#32273)
Browse files Browse the repository at this point in the history
New data is reported from Beats to the monitoring endpoint. This PR adds the template change necessary for it. See elastic/beats#7521 for more details.

Queue data is skipped for now as implementation is not finished yet.
  • Loading branch information
ruflin committed Jul 23, 2018
1 parent de584c2 commit f60ce77
Showing 1 changed file with 63 additions and 0 deletions.
63 changes: 63 additions & 0 deletions x-pack/plugin/core/src/main/resources/monitoring-beats.json
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,49 @@
},
"state": {
"properties": {
"beat": {
"properties": {
"name": {
"type": "keyword"
}
}
},
"host": {
"properties": {
"architecture": {
"type": "keyword"
},
"name": {
"type": "keyword"
},
"os": {
"properties": {
"build": {
"type": "keyword"
},
"family": {
"type": "keyword"
},
"platform": {
"type": "keyword"
},
"version": {
"type": "keyword"
}
}
}
}
},
"input": {
"properties": {
"count": {
"type": "long"
},
"names": {
"type": "keyword"
}
}
},
"module": {
"properties": {
"count": {
Expand All @@ -44,6 +87,26 @@
"type": "keyword"
}
}
},
"output": {
"properties": {
"name": {
"type": "keyword"
}
}
},
"service": {
"properties": {
"id": {
"type": "keyword"
},
"name": {
"type": "keyword"
},
"version": {
"type": "keyword"
}
}
}
}
},
Expand Down

0 comments on commit f60ce77

Please sign in to comment.