
Security News
NVD Quietly Sweeps 100K+ CVEs Into a “Deferred” Black Hole
NVD now marks all pre-2018 CVEs as "Deferred," signaling it will no longer enrich older vulnerabilities, further eroding trust in its data.
juttle-sqlite-adapter
Advanced tools
SQLite adapter for the Juttle data flow language, with read & write support.
Read rows from your logs
SQL table where the log level
is info
, with the
read sqlite -table 'logs' level = 'info'
Perform an equivalent query using the -raw option:
read sqlite -raw 'select * from "logs" where "level" = "info" limit 10000'
Add a debug
option to return the final SQL query instead (before any pagination):
read sqlite -table "logs" -debug true level = "info"
will output: {query: 'select * from "logs" where "level" = 'info' limit 10000'}
.
If you have time series data in your table, indicate the column with the
timestamp using the timeField
option to paginate and sort data correctly:
read sqlite -timeField "create_time" -table "logs";
read sqlite -timeField "create_time" -table "logs -from :2 days ago: -to :1 hour ago:;"
The content of the column indicated by timeField
will appear as the time
field in resulting points.
Like Juttle itself, the adapter is installed as a npm package. Both Juttle and the adapter need to be installed side-by-side:
$ npm install juttle
$ npm install juttle-sqlite-adapter
The adapter needs to be registered and configured so that it can be used from
within Juttle. To do so, add the following to your ~/.juttle/config.json
file:
{
"adapters": {
"sqlite": {
"filename": "/tmp/mydb.sqlite"
}
}
}
The filename
key should point to your SQLite database.
More documentation on the connection object can be found in the knex.js documentation
Name | Type | Required | Description |
---|---|---|---|
table | string | yes | table to query |
raw | string | no | send a raw SQL query to SQLite |
debug | boolean | no | output a query corresponding to current set of options and filters |
timeField | string | no | assume date time column, to and from options will use this to limit rows by time |
fetchSize | integer | no | row limit, defaults to 10000 records |
from | moment | no | select points after this time (inclusive) |
to | moment | no | select points before this time (exclusive) |
db | string | no | select the database name to use in your instance |
id | string | no | select the config instance to use |
Name | Type | Required | Description |
---|---|---|---|
table | string | yes | table to write points into |
db | string | no | select the database name to use in your instance |
id | string | no | select the config instance to use |
Contributions are welcome! Please file an issue or open a pull request.
To check code style and run unit tests:
npm test
Both are run automatically by Travis.
FAQs
Juttle adapter for SQLite
We found that juttle-sqlite-adapter demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 2 open source maintainers 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
NVD now marks all pre-2018 CVEs as "Deferred," signaling it will no longer enrich older vulnerabilities, further eroding trust in its data.
Research
Security News
Lazarus-linked threat actors expand their npm malware campaign with new RAT loaders, hex obfuscation, and over 5,600 downloads across 11 packages.
Security News
Safari 18.4 adds support for Iterator Helpers and two other TC39 JavaScript features, bringing full cross-browser coverage to key parts of the ECMAScript spec.