Skip to content

Commit

Permalink
Bump version to 0.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
mgumz committed Aug 28, 2023
1 parent 691e224 commit 7b230d0
Show file tree
Hide file tree
Showing 3 changed files with 47 additions and 1 deletion.
43 changes: 43 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,46 @@

## Changelog for mtr-exporter 0.3.0 (2023-08-28)

Features:

* allow tracing multiple mtr destinations at once
via mtr jobs file

* improve robustness on parsing mtr JSON output
(<=mtr:0.93, >=mtr:0.94 differ)

* add -flag.deprecatedMetrics to render deprecated metrics.
helps with transition time until deprecated metrics are
gone

Improvements:

* implemented Prometheus Best Practices, as a result, some metrics
are renamed, the old names are marked deprecated.

| deprecated | new |
| ---------------------------- | --------------------------- |
| mtr_report_duration_ms_gauge | mtr_report_duration_seconds |
| mtr_report_count_hubs_gauge | mtr_report_count_hubs |
| mtr_report_snt_gauge | mtr_report_snt |
| mtr_report_loss_gauge | mtr_report_loss |
| mtr_report_best_gauge | mtr_report_best |
| mtr_report_wrst_gauge | mtr_report_wrst |
| mtr_report_avg_gauge | mtr_report_avg |
| mtr_report_last_gauge | mtr_report_last |
| mtr_report_stdev_gauge | mtr_report_stdev |

Note: mtr_report_duration_seconds not only changed its name, but also
the unit: its **seconds** now, not **milliseconds** anymore.

With mtr-exporter:0.4.0 the deprecated ones will be removed.
Use -flag.deprecatedMetrics to have them exposed in the /metrics
response.

* internal: code adjustments, satisfying varios linters, code-quality
reporters, vulnerability checkers etc
* internal: build system

## Changelog for mtr-exporter 0.2.0 (2022-07-15)

Features:
Expand Down
3 changes: 3 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,9 @@ When [prometheus] scrapes the data, you can visualise the observed values:
FLAGS:
-bind <bind-address>
bind address (default ":8080")
-flag.deprecatedMetrics
render deprecated metrics (default: false)
helps with transition time until deprecated metrics are gone
-h
show help
-jobs <path-to-jobsfile>
Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.2.0
0.3.0

0 comments on commit 7b230d0

Please sign in to comment.