Book Image

Spring Boot Cookbook

By : Alex Antonov
Book Image

Spring Boot Cookbook

By: Alex Antonov

Overview of this book

Table of Contents (15 chapters)
Spring Boot Cookbook
Credits
About the Author
Acknowledgment
About the Reviewers
www.PacktPub.com
Preface
Index

Integrating Codahale/Dropwizard metrics with Dashing


The previous recipe has given us a glimpse of how we can collect the various metrics from our application during its runtime We've also seen how powerful the ability to visualize this data as a set of graphs of historical trends can be.

While Grafana and Graphite offers us a very powerful capability of manipulating the data in the form of graphs and building elaborate dashboards that are full of thresholds, applied data functions, and much more. Sometimes we want something simpler, more readable, and something widgetty. This is exactly the kind of dashboard experience that is provided by Dashing.

Dashing is a popular dashboard framework developed by Shopify and written in Ruby/Sinatra. It provides you with an ability to create an assortment of dashboards that are comprised of different types of widgets. We can have things such as Graphs, Meters, Lists, Numeric values, or just plain Text to display the information.

In this recipe, we will...