Skip to content

Commit 4c9faf8

Browse files
Disable Vector agent by default (#526)
## Description Disable Vector agent by default
1 parent 5b00eca commit 4c9faf8

File tree

2 files changed

+7
-1
lines changed

2 files changed

+7
-1
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,12 @@ All notable changes to this project will be documented in this file.
44

55
## [Unreleased]
66

7+
### Changed
8+
9+
- Disable Vector agent by default ([#526]).
10+
11+
[#526]: https://github.com/stackabletech/operator-rs/pull/526
12+
713
## [0.30.1] - 2022-12-19
814

915
### Removed

src/product_logging/spec.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -368,7 +368,7 @@ where
368368
T: Clone + Display + Ord + strum::IntoEnumIterator,
369369
{
370370
LoggingFragment {
371-
enable_vector_agent: Some(true),
371+
enable_vector_agent: Some(false),
372372
containers: T::iter()
373373
.map(|container| (container, default_container_log_config()))
374374
.collect(),

0 commit comments

Comments
 (0)