
Security News
Deno 2.4 Brings Back deno bundle, Improves Dependency Management and Observability
Deno 2.4 brings back bundling, improves dependency updates and telemetry, and makes the runtime more practical for real-world JavaScript projects.
fluent-plugin-json-schema-filter
Advanced tools
Fluentd filter plugin to validate records against a json-schema
Use RubyGems:
gem install fluent-plugin-json-schema-filter
Discard Example:
<match foo.**>
@type json_schema
mode discard
schema_file /some/path.json #defaults to /etc/td-agent/schema.json
</match>
will result in records that do not validate being completely discarded.
Isolate Example:
<match foo.**>
@type json_schema
mode isolate
schema_file ...
isolate_tag_prefix invalid
add_validation_error true # results in a validation-error key being added to the record
</match>
will result in invalid records being tagged as "invalid.". In the example above, invalid records would be invalid.foo.**
Enrich Example
<match foo.**>
@type json_schema
mode enrich
schema_file ...
enrich_valid {
'valid': 'This is a great document'
} # default valid: true
enrich_invalid {
'invalid': 'You suck at the JSON'
} # default valid: false
add_validation_error true # results in a validation-error key being added to the record
</match>
will result in messages gaining either the enrich_valid or enrich_invalid depending on how the record validates.
git checkout -b my-new-feature
)git commit -am 'Add some feature'
)git push origin my-new-feature
)FAQs
Unknown package
We found that fluent-plugin-json-schema-filter demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Deno 2.4 brings back bundling, improves dependency updates and telemetry, and makes the runtime more practical for real-world JavaScript projects.
Security News
CVEForecast.org uses machine learning to project a record-breaking surge in vulnerability disclosures in 2025.
Security News
Browserslist-rs now uses static data to reduce binary size by over 1MB, improving memory use and performance for Rust-based frontend tools.