Skip to content

Commit 42b91ba

Browse files
committed
Fix typo and add another link to the dashboard.
1 parent 963f406 commit 42b91ba

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

stubbornjava-webapp/ui/src/posts/grafana-cloud-dropwizard-metrics-reporter.hbs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<div class="anchored-md">
22
{{#assign "markdown"}}
3-
Time series metrics reporting and alerting and an essential tool when it comes to monitoring production services. Graphs help you monitor trends over time, identify spikes in load / latency, identify bottlenecks with constrained resources, etc. [Dropwizard Metrics](https://metrics.dropwizard.io/4.0.0/) is a great library for collecting metrics and has a lot of feature out of the box including various [JVM metrics](/posts/monitoring-your-jvm-with-dropwizard-metrics). There are also many third party library hooks for collections metrics on HikariCP connections pools, Redis client connections, HTTP client connections, and many more.
3+
Time series metrics reporting and alerting and an essential tool when it comes to monitoring production services. Graphs help you monitor trends over time, identify spikes in load / latency, identify bottlenecks with constrained resources, etc. [Dropwizard Metrics](https://metrics.dropwizard.io/4.0.0/) is a great library for collecting metrics and has a lot of features out of the box including various [JVM metrics](/posts/monitoring-your-jvm-with-dropwizard-metrics). There are also many third party library hooks for collections metrics on HikariCP connections pools, Redis client connections, HTTP client connections, and many more.
44

55
Once metrics are being collected we need a time series datastore as well as a graphing and alerting system to get the most out of our metrics. This exmaple will be utilizing [Grafana Cloud](https://grafana.com/cloud) which offers cloud hosted [Grafana](https://grafana.com/) a graphing and alerting application that hooks into many datasources, as well as two options for time series datasources [Graphite](https://graphiteapp.org/) and [Prometheus](https://prometheus.io/). [StubbornJava](https://www.stubbornjava.com) has public facing Grafana dashboards that will continue to add new metrics as new content is added. Take a look at the [StubbornJava Overview](https://stubbornjava.grafana.net/d/sYu06dviz/stubbornjava-overview?orgId=1) dashboard to start with.
66

@@ -13,7 +13,7 @@ This implementation should be fairly straight forward. Dropwizard Metrics report
1313
{{> templates/src/widgets/code/code-snippet file=sender section=sender.sections.sender}}
1414

1515
## DropwizardMetrics Reporter
16-
Once we have our custom `GraphiteSender` implemented all we are left to do is plug it into the existing `GraphiteReporter` and start it. We have our keys partitioned by environment and host so that all metrics are easier to split up and view aggregates or host by host metrics.
16+
Once we have our custom `GraphiteSender` implemented all we are left to do is plug it into the existing `GraphiteReporter` and start it. We have our keys partitioned by environment and host so that all metrics are easier to split up and view aggregates or host by host metrics. See it in action at [StubbornJava Overview](https://stubbornjava.grafana.net/d/sYu06dviz/stubbornjava-overview?orgId=1).
1717

1818
{{> templates/src/widgets/code/code-snippet file=reporters section=reporters.sections.reporters}}
1919

0 commit comments

Comments
 (0)