UNPKG

@elastic/makelogs

Version:

Simple log generator for testing kibana

14 lines (10 loc) 195 B
'use strict'; /** * @class RandomList */ module.exports = RandomList; function RandomList(list) { this.get = function () { return list[Math.floor(Math.random() * list.length)]; }; }