You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
vararrBatch=[];varintTimeStart=Date.now();varintLimit=1000;varfnOnMessage=function(objMsg){varintNow=Date.now();arrBatch.unshift(objMsg);if(intNow>intTimeStart+intLimit){intTimeStart=intNow;fnProcessBatch();}}varfnProcessBatch=function(){for(vari=0;i<arrBatch.length;i++){//process each record}}
API lookup example
varstrIp=objMsg.ip;varobjConfig={'url':
"https://www.threatcrowd.org/searchApi/v2/ip/report/?ip="+strIp};if(strIp!=='127.0.0.1'){$http(objConfig).then(functionfnSuccess(objResponse){//add the api response to the dataobjMsg.api={objResponse};},functionfnError(objResponse){});}
normalize the data structure, add defaults when missing
varobjTemplate={ip:'127.0.0.7',system:'unknown'};vararrTemplateKeys=Object.keys(objTemplate);varfnOnMessage=function(objMsg){for(vari=0;i<arrTemplateKeys.length;i++){if(typeofobjMsg[arrTemplateKeys[i]]==='undefined'){//this expected field doesnt exist, add it with default valobjMsg[arrTemplateKeys[i]]=objTemplate[arrTemplateKeys[i]];}}}
Example use of JSON Collection Decorator
varobjConfig={filters:[{path:"path.to.key",op:"eq",val:"value to match"}],decorate:[{find:[{path:"path.to.key",op:"eq",val:"value to match"}],do:[{path:"path.to.key",act:"set",val:"value to set"}]},{,find:{path:"path.to.key",op:"eq",val:"value to match"},do:{path:"path.to.key",act:"stack",val:"value to add to array"}}]}arrResults=decorate(objConfig,arrCollection);
Example of cumulative stats in javascript
//define whats being pushed into the arrayvarintData=42;//update the statsintCount++;intSum=intSum+intData;if(intData>intMax){intMax=intData;}if(intData<intMin){intMin=intData;}intMean=intSum/intCount;
Example sampling logic
varintSample=10;varintCount=0;//call the sampling function every timevarfnSample=function(objMsg){intCount++;if(intCount%intSample===0){//the nth count, fire the function to processfnOnMessage(objMsg);}};
Example throttle logic
varintCap=1000;varintCount=0;varintStart=Date.now();//call the throttling function every timevarfnThrottle=function(objMsg){varintNow=Date.now();//see if it's in a new time incrementif(intNow>intStart+1000){intStart=intNow;intCount=0;}else{intCount++;}if(intCount<intCap){//only run if under the cap per timeperiodfnOnMessage(objMsg);}};