Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Preparing release v0.2.2 #100

Merged
merged 3 commits into from
Nov 19, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 12 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,20 @@
# vNEXT (????-??-??)
# v0.2.2 (2023-11-19)

## Features

* Exposed `consumer_groups` module metrics ([I#53](https://github.com/kafkesc/kommitted/issues/53), [I#55](https://github.com/kafkesc/kommitted/issues/55))
* Exposed `partition_offsets` module metrics ([I#57](https://github.com/kafkesc/kommitted/issues/57))
* Exposed `cluster_status` module metrics ([I#54](https://github.com/kafkesc/kommitted/issues/54), [I#56](https://github.com/kafkesc/kommitted/issues/56))

## Enhancements

* Reworked workflows that publish Docker image: triggering 1 dedicated workflow per target ([I#80](https://github.com/kafkesc/kommitted/issues/80))

## Notes

* Multiple rounds of dependencies upgrade
* Updated [`METRICS.md`](./METRICS.md) with documentation for each of the added metrics

# v0.2.1 (2023-10-04)

## Features
Expand Down
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "kommitted"
version = "0.2.1"
version = "0.2.2"
edition = "2021"
authors = [
"Ivan De Marino <detronizator@gmail.com>",
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,8 @@ Please see [DESIGN.md](./DESIGN.md) for details about the overall architecture,
* [x] Track Offset Lag for all consumers
* [x] Track Time Lag for all consumers
* [x] Offset and Lag metrics are tracked with all contextual information to identify exact topic partition assignments
* [ ] Exposes additional metrics to track status of Kafka cluster (topics, members, brokers, partitions)
* [ ] Exposes Kafka-polling metrics, to assess its own performance
* [x] Exposes additional metrics to track status of Kafka cluster (topics, members, brokers, partitions)
* [x] Exposes Kafka-polling metrics, to assess its own performance
* [x] Metrics exposed in [Prometheus format](https://prometheus.io/docs/instrumenting/exposition_formats/#exposition-formats), at `/metrics` endpoint
* [ ] REST API to build further automation on top of it (e.g. auto-scaling logics that depend on Consumer Group lag)

Expand Down Expand Up @@ -61,7 +61,7 @@ Kommitted supports _compact_ (`-h`) and _extended_ (`--help`) usage instructions
Use the former for a quick look up; use the latter to better understand what
each argument can do.

<details open>
<details>
<summary>Compact: `kommitted -h`</summary>

```shell
Expand Down
Loading