hello folks, I'm using datahub api's to feed the datahub from our various engines. While doing it, I create a DataJobInfo instance and add some custom properties to it.
I was wondering if there is a way to show these properties in a formatted way on the datahub ui.(html format for example)
Currently all properties are formatted as text and it looks ugly for our use case.
The piece of code is like:
DataJobInfo().setName(jobName).
...
...
setCustomProperties(customProps); //customProps is a Stringmap here