Reputation: 857
I know flink has some predefined variables such as <host>
, I can get it via:
context.getMetricGroup().getAllVariables().get("<host>
")
Is there any detailed document about all those variables?
Thanks
Upvotes: 0
Views: 547
Reputation: 858
You can find all information about metrics (and also samples of using them) used in Apache Flink in the documentation here: https://ci.apache.org/projects/flink/flink-docs-release-1.3/monitoring/metrics.html
Upvotes: 1