Security News
Research
Data Theft Repackaged: A Case Study in Malicious Wrapper Packages on npm
The Socket Research Team breaks down a malicious wrapper package that uses obfuscation to harvest credentials and exfiltrate sensitive data.
fluent-plugin-vertica-query
Advanced tools
Fluentd Input plugin to execute vertica query and fetch rows. It is useful for stationary interval metrics measurement.
install with gem or fluent-gem command as:
# for fluentd
$ gem install fluent-plugin-vertica-query
# for td-agent
$ sudo /usr/lib64/fluent/ruby/bin/fluent-gem install fluent-plugin-vertica-query
<source>
type vertica_query
host localhost # Optional (default: localhost)
port 5433 # Optional (default: 5433)
username nagios # Optional (default: dbadmin)
password passw0rd # Optional (default not set)
interval 30s # Optional (default: 1m)
database db # Optional (default: not set as there is only one database per cluster)
ssl true # Optional connection via ssl (default: false)
role pseudosuperuser # Optional additional role(s) to set for the user
search_path test_date # Optional (default: not set)
tag input.vertica # Required
query SELECT * FROM V_CATALOG.RESOURCE_POOLS; # Required
# record hostname into message.
record_host yes # Optional (default: no)
# multi row results into nested record or separated message.
nest_result yes # Optional (default: no)
nest_key data # Optional (default: result)
# record the number of lines of a query result
row_count yes # Optional (default: no)
row_count_key row_count # Optional (default: row_count)
</source>
<match input.vertica>
type stdout
</match>
record_hostname: yes, nest_result: no
input.vertica: {"hostname":"myhost.example.com","Variable_name":"thread_cache_size","Value":"16"}
input.vertica: {"hostname":"myhost.example.com","Variable_name":"thread_stack","Value":"262144"}
record_hostname: yes, nest_result: yes, nest_key: data
input.vertica: {"hostname":"myhost.example.com","data":[{"Variable_name":"thread_cache_size","Value":"16"},{"Variable_name":"thread_stack","Value":"262144"}]}
record_hostname: yes, nest_result: yes, nest_key: data, row_count: yes, row_count_key: row_count
input.vertica: {"hostname":"myhost.example.com","row_count":2,"data":[{"Variable_name":"thread_cache_size","Value":"16"},{"Variable_name":"thread_stack","Value":"262144"}]}
FAQs
Unknown package
We found that fluent-plugin-vertica-query 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
Research
The Socket Research Team breaks down a malicious wrapper package that uses obfuscation to harvest credentials and exfiltrate sensitive data.
Research
Security News
Attackers used a malicious npm package typosquatting a popular ESLint plugin to steal sensitive data, execute commands, and exploit developer systems.
Security News
The Ultralytics' PyPI Package was compromised four times in one weekend through GitHub Actions cache poisoning and failure to rotate previously compromised API tokens.