This repository has been archived by the owner on Oct 11, 2022. It is now read-only.
Releases: withspectrum/rethinkdb-inspector
Releases · withspectrum/rethinkdb-inspector
v0.3.1: Hotfix size calculation
v0.3.0: New onQueryComplete API, add size information
onQueryComplete
now has a new API which returns an object as the second argument to the callback, and also returns the size information of the response from the database:
inspect(r, {
onQueryComplete: (query, { size, time }) => {
console.log(query, size, time);
}
})
This will allow for more extensibility in the future.
v0.2.0: onQueryComplete
Add onQueryComplete
callback to get performance information from queries! 🎉
inspect(r, {
onQueryComplete: (query, time) => {
console.log(query, time);
},
});
The First Release
rethinkdb-inspector
is alive! This initial release supports one callback, onQuery
:
inspect(r, {
onQuery: (query) => {
console.log(query);
}
})