Skip to content
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
16 changes: 12 additions & 4 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,20 @@

## [Unreleased]

### Added

- Adds new telemetry CLI arguments and environment variables ([#652]).
- Use `--file-log-max-files` (or `FILE_LOG_MAX_FILES`) to limit the number of log files kept.
- Use `--file-log-rotation-period` (or `FILE_LOG_ROTATION_PERIOD`) to configure the frequency of rotation.
- Use `--console-log-format` (or `CONSOLE_LOG_FORMAT`) to set the format to `plain` (default) or `json`.

### Changed

- BREAKING: Replace stackable-operator `initialize_logging` with stackable-telemetry `Tracing` ([#640], [#648]).
- The console log level was set by `HBASE_OPERATOR_LOG`, and is now set by `CONSOLE_LOG`.
- The file log level was set by `HBASE_OPERATOR_LOG`, and is now set by `FILE_LOG`.
- BREAKING: Replace stackable-operator `initialize_logging` with stackable-telemetry `Tracing` ([#640], [#648], [#652]).
- The console log level was set by `HBASE_OPERATOR_LOG`, and is now set by `CONSOLE_LOG_LEVEL`.
- The file log level was set by `HBASE_OPERATOR_LOG`, and is now set by `FILE_LOG_LEVEL`.
- The file log directory was set by `HBASE_OPERATOR_LOG_DIRECTORY`, and is now set
by `ROLLING_LOGS_DIR` (or via `--rolling-logs <DIRECTORY>`).
by `FILE_LOG_DIRECTORY` (or via `--file-log-directory <DIRECTORY>`).
- Replace stackable-operator `print_startup_string` with `tracing::info!` with fields.
- BREAKING: Inject the vector aggregator address into the vector config using the env var `VECTOR_AGGREGATOR_ADDRESS` instead
of having the operator write it to the vector config ([#645]).
Expand All @@ -22,6 +29,7 @@
[#645]: https://github.com/stackabletech/hbase-operator/pull/645
[#647]: https://github.com/stackabletech/hbase-operator/pull/647
[#648]: https://github.com/stackabletech/hbase-operator/pull/648
[#652]: https://github.com/stackabletech/hbase-operator/pull/652

## [25.3.0] - 2025-03-21

Expand Down
18 changes: 9 additions & 9 deletions Cargo.lock

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

32 changes: 16 additions & 16 deletions Cargo.nix

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
Expand Up @@ -11,7 +11,7 @@ repository = "https://github.com/stackabletech/hbase-operator"

[workspace.dependencies]
product-config = { git = "https://github.com/stackabletech/product-config.git", tag = "0.7.0" }
stackable-operator = { git = "https://github.com/stackabletech/operator-rs.git", features = ["telemetry", "versioned"], tag = "stackable-operator-0.91.1" }
stackable-operator = { git = "https://github.com/stackabletech/operator-rs.git", features = ["telemetry", "versioned"], tag = "stackable-operator-0.92.0" }

anyhow = "1.0"
built = { version = "0.7", features = ["chrono", "git2"] }
Expand Down
16 changes: 8 additions & 8 deletions crate-hashes.json

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