Skip to content
Snippets Groups Projects
Commit cc6ae097 authored by Sören Henning's avatar Sören Henning
Browse files

Fix parsing of execution time

parent 2de30eb5
No related branches found
No related tags found
No related merge requests found
Pipeline #488 passed with warnings
...@@ -11,7 +11,7 @@ exp_id = sys.argv[1] ...@@ -11,7 +11,7 @@ exp_id = sys.argv[1]
benchmark = sys.argv[2] benchmark = sys.argv[2]
dim_value = sys.argv[3] dim_value = sys.argv[3]
instances = sys.argv[4] instances = sys.argv[4]
execution_minutes = sys.argv[5] execution_minutes = int(sys.argv[5])
time_diff_ms = int(os.getenv('CLOCK_DIFF_MS', 0)) time_diff_ms = int(os.getenv('CLOCK_DIFF_MS', 0))
#http://localhost:9090/api/v1/query_range?query=sum%20by(job,topic)(kafka_consumer_consumer_fetch_manager_metrics_records_lag)&start=2015-07-01T20:10:30.781Z&end=2020-07-01T20:11:00.781Z&step=15s #http://localhost:9090/api/v1/query_range?query=sum%20by(job,topic)(kafka_consumer_consumer_fetch_manager_metrics_records_lag)&start=2015-07-01T20:10:30.781Z&end=2020-07-01T20:11:00.781Z&step=15s
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment