From e48b69f7b6cb2350cf745fd0a47767a5e64f67c9 Mon Sep 17 00:00:00 2001 From: brharrington Date: Mon, 24 Oct 2016 06:11:49 -0700 Subject: [PATCH] update docs to recommend 0.42.0 (#338) --- README.md | 2 +- docs/ext/jvm-gc.md | 2 +- docs/ext/log4j2.md | 2 +- docs/ext/placeholders.md | 2 +- docs/index.md | 2 +- docs/intro/netflix.md | 4 ++-- docs/registry/metrics3.md | 2 +- docs/registry/servo.md | 2 +- 8 files changed, 9 insertions(+), 9 deletions(-) diff --git a/README.md b/README.md index f70fe6827..cce392071 100644 --- a/README.md +++ b/README.md @@ -20,7 +20,7 @@ To instrument your code you need to depend on the api library. This provides the for you to code against and build test cases. The only dependency is slf4j. ``` -com.netflix.spectator:spectator-api:0.41.0 +com.netflix.spectator:spectator-api:0.42.0 ``` If running at Netflix with the standard platform, see the diff --git a/docs/ext/jvm-gc.md b/docs/ext/jvm-gc.md index 8b8e87b24..a3dc1283d 100644 --- a/docs/ext/jvm-gc.md +++ b/docs/ext/jvm-gc.md @@ -22,7 +22,7 @@ to 7u40. For G1 it is recommended to be on the latest version available. ### Dependencies ``` -com.netflix.spectator:spectator-ext-gc:0.41.0 +com.netflix.spectator:spectator-ext-gc:0.42.0 ``` ### Start Reporting diff --git a/docs/ext/log4j2.md b/docs/ext/log4j2.md index fb5c7bc7f..a8ddaa22c 100644 --- a/docs/ext/log4j2.md +++ b/docs/ext/log4j2.md @@ -8,7 +8,7 @@ log messages reported. To use it simply add a dependency: ``` -com.netflix.spectator:spectator-ext-log4j2:0.41.0 +com.netflix.spectator:spectator-ext-log4j2:0.42.0 ``` Then in your application initialization: diff --git a/docs/ext/placeholders.md b/docs/ext/placeholders.md index e3889ab85..553788e24 100644 --- a/docs/ext/placeholders.md +++ b/docs/ext/placeholders.md @@ -13,7 +13,7 @@ are to support: To use the placeholders support add a dependency on: ``` -com.netflix.spectator:spectator-ext-placeholders:0.41.0 +com.netflix.spectator:spectator-ext-placeholders:0.42.0 ``` ## Usage diff --git a/docs/index.md b/docs/index.md index 0587eb6c3..84a76e0b6 100644 --- a/docs/index.md +++ b/docs/index.md @@ -5,7 +5,7 @@ you are new to the library it is highly recommended to read the pages in the At a minimum you will need to: 1. Depend on the api library. It is in maven central, for gradle the dependency - would be `com.netflix.spectator:spectator-api:0.41.0`. + would be `com.netflix.spectator:spectator-api:0.42.0`. 2. Instrument some code, see the usage guides for [counters](intro/counter.md), [timers](intro/timer.md), and [gauges](intro/gauge.md). 3. Pick a registry to bind to when initializing the application. See the sidebar diff --git a/docs/intro/netflix.md b/docs/intro/netflix.md index 13d6aa14d..85c00baff 100644 --- a/docs/intro/netflix.md +++ b/docs/intro/netflix.md @@ -13,7 +13,7 @@ section for the type of project you are working on: For libraries, the only dependency that should be needed is: ``` -com.netflix.spectator:spectator-api:0.41.0 +com.netflix.spectator:spectator-api:0.42.0 ``` The bindings to integrate internally should be included with the application. In your code, @@ -80,7 +80,7 @@ If you are only interested in getting the GC logging, there is a library with an singleton that can be used: ``` -com.netflix.spectator:spectator-nflx:0.41.0 +com.netflix.spectator:spectator-nflx:0.42.0 ``` Assuming you are using karyon/base-server or governator with `com.netflix` in the list of base diff --git a/docs/registry/metrics3.md b/docs/registry/metrics3.md index cf48eca5c..da95298db 100644 --- a/docs/registry/metrics3.md +++ b/docs/registry/metrics3.md @@ -5,7 +5,7 @@ underlying implementation. To use the metrics registry, add a dependency on the `spectator-reg-metrics3` library. For gradle: ``` -com.netflix.spectator:spectator-reg-metrics3:0.41.0 +com.netflix.spectator:spectator-reg-metrics3:0.42.0 ``` Then when initializing the application, use the `MetricsRegistry`. For more diff --git a/docs/registry/servo.md b/docs/registry/servo.md index eceabd843..bda3c1402 100644 --- a/docs/registry/servo.md +++ b/docs/registry/servo.md @@ -5,7 +5,7 @@ implementation. To use the servo registry, add a dependency on the `spectator-reg-servo` library. For gradle: ``` -com.netflix.spectator:spectator-reg-servo:0.41.0 +com.netflix.spectator:spectator-reg-servo:0.42.0 ``` Then when initializing the application, use the `ServoRegistry`. If using guice