Skip to content

Commit

Permalink
chore(filter transform): add log namespace support to filter transform (
Browse files Browse the repository at this point in the history
vectordotdev#15036)

add log namespace support
  • Loading branch information
fuchsnj authored Nov 1, 2022
1 parent b0559bb commit 265d9cf
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/transforms/filter.rs
Original file line number Diff line number Diff line change
Expand Up @@ -46,8 +46,8 @@ impl TransformConfig for FilterConfig {
Input::all()
}

fn outputs(&self, _: &schema::Definition) -> Vec<Output> {
vec![Output::default(DataType::all())]
fn outputs(&self, merged_definition: &schema::Definition) -> Vec<Output> {
vec![Output::default(DataType::all()).with_schema_definition(merged_definition.clone())]
}

fn enable_concurrency(&self) -> bool {
Expand Down

0 comments on commit 265d9cf

Please sign in to comment.