
Security News
npm Adopts OIDC for Trusted Publishing in CI/CD Workflows
npm now supports Trusted Publishing with OIDC, enabling secure package publishing directly from CI/CD workflows without relying on long-lived tokens.
Fluentd plugin to investigate incoming messages in a short-hand.
Use RubyGems:
gem install fluent-plugin-debug
Do you use out_copy
and out_stdout
to see incoming messages?
<match **>
type copy
<store>
type stdout # output incoming messages here for debug
</store>
<store>
type file # something you want to do in production
</store>
</match>
This plugin enables to write the same thing in a short-hand, by just adding debug true
, as:
<match **>
type file # something you want to do in production
debug true # just add this for debug
</match>
This plugin is doing something tricky, which extends arbitrary plugins so that they can use debug
option parameter.
<source>
type debug # This makes available the `debug` option for all output plugins
</source>
<match **>
type file
debug true # Now you can use `debug true`
</match>
If you are lazy to write even debug true
, you may use debug_all
option.
<source>
type debug
debug_all true # This makes turn on the `debug` option for all output plugins
</source>
<match **>
type file # Now you don't need even to add `debug true`
</match>
debug_all
debug true
for all output pluginsThis plugin extends all output plugins and enables to use the following options:
debug (bool)
See CHANGELOG.md for details.
This plugin is dedicated to @hirose31.
git checkout -b my-new-feature
)git commit -am 'Add some feature'
)git push origin my-new-feature
)Copyright (c) 2014 Naotoshi Seo. See LICENSE for details.
FAQs
Unknown package
We found that fluent-plugin-debug 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
npm now supports Trusted Publishing with OIDC, enabling secure package publishing directly from CI/CD workflows without relying on long-lived tokens.
Research
/Security News
A RubyGems malware campaign used 60 malicious packages posing as automation tools to steal credentials from social media and marketing tool users.
Security News
The CNA Scorecard ranks CVE issuers by data completeness, revealing major gaps in patch info and software identifiers across thousands of vulnerabilities.