
Security News
Axios Maintainer Confirms Social Engineering Attack Behind npm Compromise
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.
Hapi plugin for sending metrics to InfluxDB.
npm install outflux
outflux provides the ability to send metrics to InfluxDB from
Hapi plugins.
exports.register = function (plugin, options, done) {
. . .
plugin.plugins.outflux.point("metric", { a : 1, b : 2 });
. . .
};
The outflux plugin can be configured with the following options:
| name | required | description |
|---|---|---|
| url | yes | The Influx series URL. |
The series URL should be the fully qualified URL (including the username and
password) as specified in the InfluxDB documentation. For
example http://example.com/db/somedb/series?u=username&p=password.
| parameter | description |
|---|---|
| type | The type of point to create. |
| data | The data point. |
Creates a new data point. The data object is a standard JavaScript object.
The key names are used as the column names for the point. Points are batched on
one second intervals to improve performance. Returns a promise that is resolved
or rejected when the point is actually sent to the server depending on whether
or not the request was successful.
FAQs
Hapi plugin for sending metrics to InfluxDB.
We found that outflux 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
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.

Security News
The Axios compromise shows how time-dependent dependency resolution makes exposure harder to detect and contain.