Skip to content

Commit

Permalink
Inspector: workload dict without metrics and reporting
Browse files Browse the repository at this point in the history
  • Loading branch information
perdelt committed Jun 28, 2022
1 parent 7569a9f commit 662b2be
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion dbmsbenchmarker/inspector.py
Original file line number Diff line number Diff line change
Expand Up @@ -260,7 +260,12 @@ def get_experiment_query_properties(self, numQuery=None):
return self.e.evaluation['query']
def get_experiment_workload_properties(self):
# dict of workload properties
return self.e.evaluation['general']
workload = self.e.evaluation['general']
# remove metrics
del(workload['loadingmetrics'])
del(workload['streamingmetrics'])
del(workload['reporting'])
return workload
#def get_measures(self, numQuery, timer, warmup=0, cooldown=0):
def get_timer(self, numQuery, timer, warmup=0, cooldown=0):
# dataframe of dbms x measures
Expand Down

0 comments on commit 662b2be

Please sign in to comment.