Skip to content

Commit

Permalink
Bump version to 0.2.0. Update README for new flags
Browse files Browse the repository at this point in the history
  • Loading branch information
ewr committed Jun 17, 2015
1 parent 424609c commit 6fe32bc
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 1 deletion.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
# See the License for the specific language governing permissions and
# limitations under the License.

VERSION := 0.1.0
VERSION := 0.2.0
TARGET := consul_exporter

include Makefile.COMMON
14 changes: 14 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,20 @@ make
the address of a Consul server.
* __`web.listen-address`:__ Address to listen on for web interface and telemetry.
* __`web.telemetry-path`:__ Path under which to expose metrics.
* __`log.level`:__ Logging level. `info` by default.

#### Key/Value Checks

This exporter supports grabbing key/value pairs from Consul's KV store and
exposing them to Prometheus. This can be useful, for instance, if you use
Consul KV to store your intended cluster size, and want to graph that value
against the actual value found via monitoring.

* __`kv.prefix`:__ Prefix under which to look for KV pairs.
* __`kv.filter`:__ Only store keys that match this regex pattern.

A prefix must be supplied to activate this feature. Pass `/` if you want to
search the entire keyspace.

## Useful Queries

Expand Down

0 comments on commit 6fe32bc

Please sign in to comment.