log the time it takes to load pins and to run the eviction script
This commit is contained in:
parent
469d674ca0
commit
c46e7f4021
@ -25,6 +25,12 @@ var store;
|
|||||||
var pins;
|
var pins;
|
||||||
var Log;
|
var Log;
|
||||||
var blobs;
|
var blobs;
|
||||||
|
|
||||||
|
var startTime = +new Date();
|
||||||
|
var msSinceStart = function () {
|
||||||
|
return (+new Date()) - startTime;
|
||||||
|
};
|
||||||
|
|
||||||
nThen(function (w) {
|
nThen(function (w) {
|
||||||
// load the store which will be used for iterating over channels
|
// load the store which will be used for iterating over channels
|
||||||
// and performing operations like archival and deletion
|
// and performing operations like archival and deletion
|
||||||
@ -57,6 +63,8 @@ nThen(function (w) {
|
|||||||
}
|
}
|
||||||
blobs = _;
|
blobs = _;
|
||||||
}));
|
}));
|
||||||
|
}).nThen(function () {
|
||||||
|
Log.info("EVICT_TIME_TO_LOAD_PINS", msSinceStart());
|
||||||
}).nThen(function (w) {
|
}).nThen(function (w) {
|
||||||
// this block will iterate over archived channels and removes them
|
// this block will iterate over archived channels and removes them
|
||||||
// if they've been in cold storage for longer than your configured archive time
|
// if they've been in cold storage for longer than your configured archive time
|
||||||
@ -276,6 +284,8 @@ nThen(function (w) {
|
|||||||
};
|
};
|
||||||
|
|
||||||
store.listChannels(handler, w(done));
|
store.listChannels(handler, w(done));
|
||||||
|
}).nThen(function (w) {
|
||||||
|
Log.info("EVICT_TIME_TO_RUN_SCRIPT", msSinceStart());
|
||||||
}).nThen(function () {
|
}).nThen(function () {
|
||||||
// the store will keep this script running if you don't shut it down
|
// the store will keep this script running if you don't shut it down
|
||||||
store.shutdown();
|
store.shutdown();
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user