We are glad to announce that we released the Dashbuilder Quarkus extension! You can now render dashboards directly in your Quarkus app!
Installation
To start using this extension simply add the following dependency to your quarkus app pom.xml:
<dependency>
<groupId>io.quarkiverse.dashbuilder</groupId>
<artifactId>quarkus-dashbuilder</artifactId>
<version>0.26.1</version>
</dependency>
/dashboards
web context.Configuration
You can map specific dashboard files using the system property quarkus.dashbuilder.dashboards and change the dashboards web context using quarkus.dashbuilder.path:
Examples
We also have three examples ready for use:
- Hello World: This is the simplest example where the dashboards run on the client and use an inline dataset. Remember that datasets can be any JSON Array declared directly in the dataset or coming from a URL. Learn more about it in the article JSON DATASETS IN DASHBUILDER.
- Metrics: Datasets can also have a pre-processing for some specific formats. This is the case for metrics and CSV. In this example we consume Quarkus Micrometer metrics.
- DataSet: It is also possible to consume data generated from the Quarkus application. In this example we build a real time chart from data coming from a Quarkus endpoint.
Learn more about Dashbuilder Development
Dashbuilder is a tool for building dashboards and data visualizations. It runs entirely on client and you can develop dashboards using YAML on the online editor or using the VSCode extension.
Links to learn more:
Conclusion
In this article we announced the Dashbuilder Quarkus extension. We have plans for a better editor developer experience and new Dashbuilder features, so stay tuned!