apilloud commented on code in PR #23579:
URL: https://github.com/apache/beam/pull/23579#discussion_r995222733
##########
sdks/python/apache_beam/testing/benchmarks/nexmark/nexmark_launcher.py:
##########
@@ -170,6 +182,32 @@ def parse_args(self):
choices=['PUBLISH_ONLY', 'SUBSCRIBE_ONLY', 'COMBINED'],
help='Pubsub mode used in the pipeline.')
+ parser.add_argument(
+ '--exportSummaryToInfluxDB',
+ default=False,
+ action='store_true',
+ help='If set store results in influxdb')
+ parser.add_argument(
+ '--influxDatabase',
+ type=str,
+ default='beam_test_metrics',
+ help='Influx database name')
+ parser.add_argument(
+ '--influxHost',
+ type=str,
+ default='http://localhost:8086',
+ help='Influx database url')
+ parser.add_argument(
+ '--baseInfluxMeasurement',
+ type=str,
+ default='nexmark',
+ help='Prefix to influx measurement')
+ parser.add_argument(
+ '--influxRetentionPolicy',
+ type=str,
+ default='forever',
+ help='Retention policy for stored results')
Review Comment:
I made it camel case so I wouldn't have to translate the Java args, but I
can do that instead.
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]