This repository was archived by the owner on Oct 11, 2022. It is now read-only.
Releases: withspectrum/rethinkdb-inspector
Releases · withspectrum/rethinkdb-inspector
Release list
v0.3.1: Hotfix size calculation
The module I used for the size calculation introduced in 0.3.1 handled complex objects very badly and crashed most of the time. (or went into an infinite loop)
This patch hotfixes it by just using JSON.stringify.
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);
}
})