Skip to content

Commit

Permalink
Release 0.2.0
Browse files Browse the repository at this point in the history
The release introduces the integration with `httpd` role and latency observation for http
endpoint. Now it is possible to reuse server's address from `httpd` role config for
`metrics-export-role` configuration.

Added

- Introduce latency observation for http endpoint (#17).
- Support `roles.httpd` integration (#15).
  • Loading branch information
themilchenko committed Oct 2, 2024
1 parent 89e8ca3 commit d31d99a
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 4 deletions.
13 changes: 11 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,13 +8,22 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
## [Unreleased]

### Added
- Introduce latency observation for http endpoint (#17).
- Support `roles.httpd` integration (#15).

### Fixed

### Changed

## 0.2.0 - 2024-10-02

The release introduces the integration with `httpd` role and latency observation for http
endpoint. Now it is possible to [reuse server's address from `httpd` role config
for `metrics-export-role` configuration](README.md#integration-with-httpd-role).

### Added

- Introduce latency observation for http endpoint (#17).
- Support `roles.httpd` integration (#15).

## 0.1.0 - 2024-06-11

The release introduces the `metrics-export-role` module: export metrics
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ from Tarantool 3. For now only export via HTTP is supported.
```Lua
dependencies = {
...
'metrics-export-role == 0.1.0-1',
'metrics-export-role == 0.2.0-1',
...
}
```
Expand Down
2 changes: 1 addition & 1 deletion roles/metrics-export.lua
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ local M = {}

-- Сontains the module version.
-- Requires manual update in case of release commit.
M._VERSION = "0.1.0"
M._VERSION = "0.2.0"

local function is_array(tbl)
assert(type(tbl) == "table", "a table expected")
Expand Down

0 comments on commit d31d99a

Please sign in to comment.