-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1 from procore-oss/BL/zach-fork-updates
Bl/zach fork updates
- Loading branch information
Showing
15 changed files
with
246 additions
and
30 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,70 @@ | ||
module RspecProfiling | ||
module Collectors | ||
class JSON | ||
KEYS = %w{ | ||
branch | ||
commit_hash | ||
seed | ||
date | ||
file | ||
line_number | ||
description | ||
status | ||
exception | ||
time | ||
query_count | ||
query_time | ||
request_count | ||
request_time | ||
start_memory | ||
end_memory | ||
} | ||
|
||
def self.install | ||
# no op | ||
end | ||
|
||
def self.uninstall | ||
# no op | ||
end | ||
|
||
def self.reset | ||
# no op | ||
end | ||
|
||
def initialize(config=RspecProfiling.config) | ||
config.output_file_path ||= 'tmp/spec_benchmarks.json' | ||
|
||
@config = config | ||
end | ||
|
||
def insert(attributes) | ||
output << merge_attributes_and_events(attributes) + "\n" | ||
end | ||
|
||
private | ||
|
||
attr_reader :config | ||
|
||
def output | ||
@output ||= ::File.open(path, "w") | ||
end | ||
|
||
def path | ||
config.output_file_path.call | ||
end | ||
|
||
def merge_attributes_and_events(attributes) | ||
config.events.flat_map do |event| | ||
attributes["#{event}_counts"] = attributes[:event_counts][event] | ||
attributes["#{event}_times"] = attributes[:event_times][event] | ||
attributes["#{event}_events"] = attributes[:event_events][event] | ||
end | ||
|
||
attributes.merge!(config.additional_data) | ||
|
||
attributes.except(:event_counts, :event_times, :event_events, :events).to_json | ||
end | ||
end | ||
end | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.