Skip to content

Commit

Permalink
[Monitoring] add field mappings for beats cgroups (#65997)
Browse files Browse the repository at this point in the history
Add field mappings for the cgroups metrics added to
beats monitoring in elastic/beats#21113,
and required by elastic/kibana#79050.
  • Loading branch information
axw committed Dec 9, 2020
1 parent 9e5be1a commit cf9aad2
Showing 1 changed file with 85 additions and 0 deletions.
85 changes: 85 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 @@ -146,6 +146,91 @@
"properties": {
"beat": {
"properties": {
"cgroup": {
"properties": {
"cpu": {
"properties": {
"id": {
"type": "keyword"
},
"cfs": {
"properties": {
"period": {
"properties": {
"us": {
"type": "long"
}
}
},
"quota": {
"properties": {
"us": {
"type": "long"
}
}
}
}
},
"stats": {
"properties": {
"periods": {
"type": "long"
},
"throttled": {
"properties": {
"periods": {
"type": "long"
},
"ns": {
"type": "long"
}
}
}
}
}
}
},
"cpuacct": {
"properties": {
"id": {
"type": "keyword"
},
"total": {
"properties": {
"ns": {
"type": "long"
}
}
}
}
},
"memory": {
"properties": {
"id": {
"type": "keyword"
},
"mem": {
"properties": {
"limit": {
"properties": {
"bytes": {
"type": "long"
}
}
},
"usage": {
"properties": {
"bytes": {
"type": "long"
}
}
}
}
}
}
}
}
},
"cpu": {
"properties": {
"system": {
Expand Down

0 comments on commit cf9aad2

Please sign in to comment.