Skip to content

Commit

Permalink
Bump to v3.4.1
Browse files Browse the repository at this point in the history
  • Loading branch information
deadtrickster committed Sep 29, 2017
1 parent f337309 commit 5ce104a
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

Copyright (c) 2016,2017 Ilya Khaprov <<[email protected]>>.

__Version:__ 3.4.0
__Version:__ 3.4.1

[![Hex.pm](https://img.shields.io/hexpm/v/prometheus.svg?maxAge=2592000?style=plastic)](https://hex.pm/packages/prometheus)
[![Hex.pm](https://img.shields.io/hexpm/dt/prometheus.svg?maxAge=2592000)](https://hex.pm/packages/prometheus)
Expand Down Expand Up @@ -212,7 +212,7 @@ You'll use that if you want to create custom collector.

Prometheus.erl supports standard Erlang app configuration.
- `collectors` - List of custom collectors modules to be registered automatically. If undefined list of all modules implementing `prometheus_collector` behaviour will be used.
- `default_metrics` - List of metrics to be registered during app startup. Metric format: `{Type, Spec}` where `Type` is metric type (counter, gauge ... etc), `Spec` is a list to be passed to `Metric:declare/1`.
- `default_metrics` - List of metrics to be registered during app startup. Metric format: `{Type, Spec}` where `Type` is a metric type (counter, gauge, etc), `Spec` is a list to be passed to `Metric:declare/1`. Deprecated format `{Registry, Metric, Spec}` also supported.

Collectors config also supports "alias" option `default`. When used these collectors will be registered:
<pre>
Expand Down
4 changes: 2 additions & 2 deletions doc/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

Copyright (c) 2016,2017 Ilya Khaprov <<[email protected]>>.

__Version:__ 3.4.0
__Version:__ 3.4.1

[![Hex.pm](https://img.shields.io/hexpm/v/prometheus.svg?maxAge=2592000?style=plastic)](https://hex.pm/packages/prometheus)
[![Hex.pm](https://img.shields.io/hexpm/dt/prometheus.svg?maxAge=2592000)](https://hex.pm/packages/prometheus)
Expand Down Expand Up @@ -212,7 +212,7 @@ You'll use that if you want to create custom collector.

Prometheus.erl supports standard Erlang app configuration.
- `collectors` - List of custom collectors modules to be registered automatically. If undefined list of all modules implementing `prometheus_collector` behaviour will be used.
- `default_metrics` - List of metrics to be registered during app startup. Metric format: `{Type, Spec}` where `Type` is metric type (counter, gauge ... etc), `Spec` is a list to be passed to `Metric:declare/1`.
- `default_metrics` - List of metrics to be registered during app startup. Metric format: `{Type, Spec}` where `Type` is a metric type (counter, gauge, etc), `Spec` is a list to be passed to `Metric:declare/1`. Deprecated format `{Registry, Metric, Spec}` also supported.

Collectors config also supports "alias" option `default`. When used these collectors will be registered:
<pre>
Expand Down
2 changes: 1 addition & 1 deletion doc/overview.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
@copyright 2016,2017 Ilya Khaprov <<[email protected]>>.
@title Prometheus.io client for Erlang
@version 3.4.0
@version 3.4.1

@doc
[![Hex.pm](https://img.shields.io/hexpm/v/prometheus.svg?maxAge=2592000?style=plastic)](https://hex.pm/packages/prometheus)
Expand Down
2 changes: 1 addition & 1 deletion mix.exs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ defmodule Prometheus.Mixfile do

def project do
[app: :prometheus,
version: "3.4.0",
version: "3.4.1",
description: description(),
package: package()]
end
Expand Down
2 changes: 1 addition & 1 deletion src/prometheus.app.src
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{application, prometheus,
[{description, "Prometheus.io client in Erlang"},
{vsn, "3.4.0"},
{vsn, "3.4.1"},
{registered, []},
{mod, { prometheus, []}},
{applications,
Expand Down

0 comments on commit 5ce104a

Please sign in to comment.