Skip to content

Commit 7e98c67

Browse files
committed
Bump to v4.2.0
1 parent c9e0c03 commit 7e98c67

File tree

6 files changed

+12
-5
lines changed

6 files changed

+12
-5
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

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

7-
__Version:__ 4.1.0
7+
__Version:__ 4.2.0
88

99
[![Hex.pm](https://img.shields.io/hexpm/v/prometheus.svg?maxAge=2592000?style=plastic)](https://hex.pm/packages/prometheus)
1010
[![Hex.pm](https://img.shields.io/hexpm/dt/prometheus.svg?maxAge=2592000)](https://hex.pm/packages/prometheus)

doc/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

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

7-
__Version:__ 4.1.0
7+
__Version:__ 4.2.0
88

99
[![Hex.pm](https://img.shields.io/hexpm/v/prometheus.svg?maxAge=2592000?style=plastic)](https://hex.pm/packages/prometheus)
1010
[![Hex.pm](https://img.shields.io/hexpm/dt/prometheus.svg?maxAge=2592000)](https://hex.pm/packages/prometheus)

doc/overview.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
@copyright 2016,2017 Ilya Khaprov <<[email protected]>>.
22
@title Prometheus.io client for Erlang
3-
@version 4.1.0
3+
@version 4.2.0
44

55
@doc
66
[![Hex.pm](https://img.shields.io/hexpm/v/prometheus.svg?maxAge=2592000?style=plastic)](https://hex.pm/packages/prometheus)

doc/prometheus_vm_system_info_collector.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -97,6 +97,11 @@ The number of atom currently existing at the local node.
9797
Type: gauge.<br />
9898
The maximum number of simultaneously existing atom at the local node.
9999

100+
* `erlang_vm_allocators`<br />
101+
Type: gauge.<br />
102+
Allocated (carriers_size) and used (blocks_size) memory
103+
for the different allocators in the VM. See erts_alloc(3).
104+
100105

101106

102107
### <a name="Configuration">Configuration</a> ###
@@ -142,5 +147,7 @@ erlang:system_info/1
142147

143148
* `atom_limit` for `erlang_vm_atom_limit`.
144149

150+
* `allocators` for `erlang_vm_allocators`.
151+
145152

146153
By default all metrics are enabled.

mix.exs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ defmodule Prometheus.Mixfile do
33

44
def project do
55
[app: :prometheus,
6-
version: "4.1.0",
6+
version: "4.2.0",
77
description: description(),
88
package: package()]
99
end

src/prometheus.app.src

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{application, prometheus,
22
[{description, "Prometheus.io client in Erlang"},
3-
{vsn, "4.1.0"},
3+
{vsn, "4.2.0"},
44
{registered, []},
55
{mod, { prometheus, []}},
66
{applications,

0 commit comments

Comments
 (0)