Source code for workbench.clients.pcap_meta_indexer

"""This client pushes PCAPs -> MetaDaa -> ELS Indexer."""
import zerorpc
import os
import client_helper

[docs]def run(): """This client pushes PCAPs -> MetaDaa -> ELS Indexer.""" # Grab server args args = client_helper.grab_server_args() # Start up workbench connection workbench = zerorpc.Client(timeout=300, heartbeat=60) workbench.connect('tcp://'+args['server']+':'+args['port']) # Test out PCAP data data_path = os.path.join(os.path.dirname(os.path.realpath(__file__)),'../data/pcap') file_list = [os.path.join(data_path, child) for child in os.listdir(data_path)] for filename in file_list: # Skip OS generated files if '.DS_Store' in filename: continue with open(filename,'rb') as pcap_file: base_name = os.path.basename(filename) md5 = workbench.store_sample(pcap_file.read(), base_name, 'pcap') # Index the view_pcap output (notice we can ask for any worker output) # Also (super important) it all happens on the server side. workbench.index_worker_output('view_pcap', md5, 'view_pcap', None) print '\n\n<<< PCAP Data: %s Indexed>>>' % (base_name)
[docs]def test(): """Executes pcap_meta_indexer test.""" run()
if __name__ == '__main__': run()