Skip to content

Commit

Permalink
Update beats template to include apm-server metrics (#33286)
Browse files Browse the repository at this point in the history
  • Loading branch information
chrisronline authored Sep 10, 2018
1 parent 80c4661 commit 369db8a
Showing 1 changed file with 268 additions and 0 deletions.
268 changes: 268 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 @@ -224,6 +224,274 @@
}
}
},
"apm-server": {
"properties": {
"server": {
"properties": {
"request": {
"properties": {
"count": {
"type": "long"
}
}
},
"concurrent": {
"properties": {
"wait": {
"properties": {
"ms": {
"type": "long"
}
}
}
}
},
"response": {
"properties": {
"count": {
"type": "long"
},
"errors": {
"properties": {
"count": {
"type": "long"
},
"toolarge": {
"type": "long"
},
"validate": {
"type": "long"
},
"ratelimit": {
"type": "long"
},
"queue": {
"type": "long"
},
"closed": {
"type": "long"
},
"forbidden": {
"type": "long"
},
"concurrency": {
"type": "long"
},
"unauthorized": {
"type": "long"
},
"decode": {
"type": "long"
},
"method": {
"type": "long"
}
}
},
"valid": {
"properties": {
"ok": {
"type": "long"
},
"accepted": {
"type": "long"
},
"count": {
"type": "long"
}
}
}
}
}
}
},
"decoder": {
"properties": {
"deflate": {
"properties": {
"content-length": {
"type": "long"
},
"count": {
"type": "long"
}
}
},
"gzip": {
"properties": {
"content-length": {
"type": "long"
},
"count": {
"type": "long"
}
}
},
"uncompressed": {
"properties": {
"content-length": {
"type": "long"
},
"count": {
"type": "long"
}
}
},
"reader": {
"properties": {
"size": {
"type": "long"
},
"count": {
"type": "long"
}
}
},
"missing-content-length": {
"properties": {
"count": {
"type": "long"
}
}
}
}

},
"processor": {
"properties": {
"metric": {
"properties": {
"decoding": {
"properties": {
"errors": {
"type": "long"
},
"count": {
"type": "long"
}
}
},
"validation": {
"properties": {
"errors": {
"type": "long"
},
"count": {
"type": "long"
}
}
},
"transformations": {
"type": "long"
}
}
},
"sourcemap": {
"properties": {
"counter": {
"type": "long"
},
"decoding": {
"properties": {
"errors": {
"type": "long"
},
"count": {
"type": "long"
}
}
},
"validation": {
"properties": {
"errors": {
"type": "long"
},
"count": {
"type": "long"
}
}
}
}
},
"transaction": {
"properties": {
"decoding": {
"properties": {
"errors": {
"type": "long"
},
"count": {
"type": "long"
}
}
},
"validation": {
"properties": {
"errors": {
"type": "long"
},
"count": {
"type": "long"
}
}
},
"transformations": {
"type": "long"
},
"transactions": {
"type": "long"
},
"spans": {
"type": "long"
},
"stacktraces": {
"type": "long"
},
"frames": {
"type": "long"
}
}
},
"error": {
"properties": {
"decoding": {
"properties": {
"errors": {
"type": "long"
},
"count": {
"type": "long"
}
}
},
"validation": {
"properties": {
"errors": {
"type": "long"
},
"count": {
"type": "long"
}
}
},
"transformations": {
"type": "long"
},
"errors": {
"type": "long"
},
"stacktraces": {
"type": "long"
},
"frames": {
"type": "long"
}
}
}
}
}
}
},
"libbeat": {
"properties": {
"config": {
Expand Down

0 comments on commit 369db8a

Please sign in to comment.