Originally I had:
*public static void *main(String[] args) {
StreamExecutionEnvironment env = StreamExecutionEnvironment.
*getExecutionEnvironment*();
…
This was nice because this would work just as well in my kubernetes
deployment as it did when I just ran the main directly.
However there
What's the best way to enable the JMX Reporter while I am developing an
applicaiton in an IDE? The reason is I would like to experiment with adding
detailed metrics to my pipelines (and also see what standard operators
provide) without having to deploy to a regular cluster.
Thanks,
Frank