diff options
author | Sree Kuchibhotla <sreek@google.com> | 2016-05-17 18:01:43 -0700 |
---|---|---|
committer | Sree Kuchibhotla <sreek@google.com> | 2016-05-17 18:37:52 -0700 |
commit | 4dd02fc63c4e23c797dbbd277db8359e6d1c3491 (patch) | |
tree | 5b6071613a4199c3ae76c3eaa41f9952548323e8 /tools/gcp/stress_test/stress_test_utils.py | |
parent | eaa307274473fd783d4b5f59020155c1a0008523 (diff) |
Misc changes
Diffstat (limited to 'tools/gcp/stress_test/stress_test_utils.py')
-rwxr-xr-x | tools/gcp/stress_test/stress_test_utils.py | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/tools/gcp/stress_test/stress_test_utils.py b/tools/gcp/stress_test/stress_test_utils.py index 19d59c0df1..b821fc8fcc 100755 --- a/tools/gcp/stress_test/stress_test_utils.py +++ b/tools/gcp/stress_test/stress_test_utils.py @@ -46,6 +46,7 @@ import big_query_utils as bq_utils class EventType: STARTING = 'STARTING' + RUNNING = 'RUNNING' SUCCESS = 'SUCCESS' FAILURE = 'FAILURE' @@ -195,11 +196,11 @@ class BigQueryHelper: ('image_type', 'STRING', 'Client or Server?'), ('pod_name', 'STRING', 'GKE pod hosting this image'), ('event_date', 'STRING', 'The date of this event'), - ('event_type', 'STRING', 'STARTED/SUCCESS/FAILURE'), + ('event_type', 'STRING', 'STARTING/RUNNING/SUCCESS/FAILURE'), ('details', 'STRING', 'Any other relevant details') ] - desc = ('The table that contains START/SUCCESS/FAILURE events for ' - ' the stress test clients and servers') + desc = ('The table that contains STARTING/RUNNING/SUCCESS/FAILURE events ' + 'for the stress test clients and servers') return bq_utils.create_table(self.bq, self.project_id, self.dataset_id, self.summary_table_id, summary_table_schema, desc) |