Sha256: fa6170653f3ab3c7fc84e12994c668c93195e9b2a3601951fbb926e5e5c8fddb
Contents?: true
Size: 952 Bytes
Versions: 3
Compression:
Stored size: 952 Bytes
Contents
#!/usr/bin/env ruby $:.unshift(File.expand_path('../../lib', __FILE__)) require 'bundler/setup' require 'fluq' require 'benchmark' ITER = 1_000 SLICE = 1_000 FileUtils.rm_rf FluQ.root.join("log/benchmark") events = (1..SLICE).map do FluQ::Event.new "a.b#{rand(4)}.c#{rand(10)}.d#{rand(100)}", Time.now.to_i, "k1" => "value", "k2" => "value", "k3" => "value" end handler = FluQ::Handler::Log.new FluQ::Reactor.new, path: "log/benchmark/%Y%m/%d/%H/%t.log", rewrite: lambda {|t| t.split(".")[1, 2].join("-") } puts "--> Started benchmark" processed = Benchmark.realtime do num = 0 ITER.times do handler.on_events(events) num += SLICE if (num % 10_000).zero? puts "--> Processed : #{num}" end end end puts "--> Processed : #{events.size} in #{processed.round(1)}s" files = Dir[FluQ.root.join("log/benchmark/**/*.log").to_s] lines = `cat #{files.join(' ')} | wc -l`.strip puts "--> Fsynched : #{lines} lines"
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
fluq-0.7.5 | benchmark/logging.rb |
fluq-0.7.3 | benchmark/logging.rb |
fluq-0.7.1 | benchmark/logging.rb |