Skip to content
This repository has been archived by the owner on Sep 1, 2024. It is now read-only.

Commit

Permalink
Merge pull request #131 from att/T101/cpu_metrics
Browse files Browse the repository at this point in the history
fix versions.
  • Loading branch information
kaylarizi authored Feb 14, 2024
2 parents 0b51dd5 + 7ccc152 commit b1fc89e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion api/src/utils/test_suite_serializer.py
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ def __get_test_runs_metrics(test_runs):
"average_cpu_cores": round(cpu_cores_avg, 2),
"average_cpu": round(cpu_avg, 2),
"average_memory": int(memory_avg),
"request_throughput": int(request_throughput),
"request_throughput": round(request_throughput, 2),
"bytes_throughput": int(bytes_throughput)
}
}
Expand Down
2 changes: 1 addition & 1 deletion run/kubernetes/charts/mysql/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
replicaCount: 1
image:
repository: qujata/mysql
tag: "1.1.0"
tag: "1.2.0"
pullPolicy: Always


Expand Down

0 comments on commit b1fc89e

Please sign in to comment.