vreal
vreal

Reputation: 857

Is there any document of Apache Flink runtime contexts?

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

Answers (1)

Alex Chermenin
Alex Chermenin

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

Related Questions