I have been searching these forums and the web for guidance and haven't found much. We plan to use at least one, likely more, custom visualizations via Vega in our Kibana dashboards.
When thinking through productionalizing these dashboards, wondering what are some good approaches for:
-
Source control for Vega visualizations. It's based on JSON-ish markup, and applied to the visualization right there in the Kibana editor. All I am doing during development is copy/paste from code editor into the browser, and using GIT source control on the text files. Far from optimal, is there a better way?
-
Deployment to upper level environments (production). We plan to run production in a different Elastic cluster vs where we do development and test. In all of our other cloud deployments, we use CICD release pipelines to publish software to cloud services. Goal is to prevent human interaction in production - all automated. Is there something like that for Vega visualizations to get them into the Kibana environment? If nothing out of the box, perhaps I should be looking if there are APIs to create dashboards and the associated Vega source programmatically?