mirror of
https://github.com/nosqlbench/nosqlbench.git
synced 2025-02-25 18:55:28 -06:00
37 lines
1.0 KiB
JavaScript
37 lines
1.0 KiB
JavaScript
/*
|
|
*
|
|
* Copyright 2016 jshook
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
* you may not use this file except in compliance with the License.
|
|
* You may obtain a copy of the License at
|
|
*
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
*
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
* See the License for the specific language governing permissions and
|
|
* limitations under the License.
|
|
* /
|
|
*/
|
|
|
|
var csvlogger = csvmetrics.log("logs/csvmetricstestdir");
|
|
|
|
activitydef = {
|
|
"alias" : "csvmetrics",
|
|
"type" : "diag",
|
|
"cycles" : "50000",
|
|
"threads" : "20",
|
|
"interval" : "2000",
|
|
"targetrate" : "10000.0",
|
|
"async" : "1000"
|
|
};
|
|
scenario.start(activitydef);
|
|
csvlogger.add(metrics.csvmetrics.cycles.servicetime);
|
|
csvlogger.start(500,"MILLISECONDS");
|
|
|
|
scenario.waitMillis(2000);
|
|
scenario.stop(activitydef);
|
|
|
|
csvlogger.report();
|