Merge pull request #361 from yandex/release-1.8.35

Release 1.8.35
This commit is contained in:
Alexey Lavrenuke 2017-04-14 12:34:09 +03:00 committed by GitHub
commit 4aee194233
4 changed files with 16 additions and 4 deletions

View File

@ -2,7 +2,7 @@ from setuptools import setup, find_packages
setup( setup(
name='yandextank', name='yandextank',
version='1.8.34', version='1.8.35',
description='a performance measurement tool', description='a performance measurement tool',
longer_description=''' longer_description='''
Yandex.Tank is a performance measurement and load testing automatization tool. Yandex.Tank is a performance measurement and load testing automatization tool.

View File

@ -5,7 +5,6 @@ plugin_ShellExec=yandextank.plugins.ShellExec
plugin_phantom=yandextank.plugins.Phantom plugin_phantom=yandextank.plugins.Phantom
plugin_aggregate=yandextank.plugins.Aggregator plugin_aggregate=yandextank.plugins.Aggregator
plugin_autostop=yandextank.plugins.Autostop plugin_autostop=yandextank.plugins.Autostop
;plugin_monitoring=yandextank.plugins.Monitoring
plugin_telegraf=yandextank.plugins.Telegraf plugin_telegraf=yandextank.plugins.Telegraf
plugin_console=yandextank.plugins.Console plugin_console=yandextank.plugins.Console
plugin_tips=yandextank.plugins.TipsAndTricks plugin_tips=yandextank.plugins.TipsAndTricks
@ -21,3 +20,9 @@ ammo_type=caseline
[overload] [overload]
api_address=https://overload.yandex.net/ api_address=https://overload.yandex.net/
[telegraf]
disguise_hostnames=1
[monitoring]
disguise_hostnames=1

View File

@ -5,7 +5,7 @@ plugin_ShellExec=yandextank.plugins.ShellExec
plugin_phantom=yandextank.plugins.Phantom plugin_phantom=yandextank.plugins.Phantom
plugin_aggregate=yandextank.plugins.Aggregator plugin_aggregate=yandextank.plugins.Aggregator
plugin_autostop=yandextank.plugins.Autostop plugin_autostop=yandextank.plugins.Autostop
plugin_monitoring=yandextank.plugins.Telegraf plugin_telegraf=yandextank.plugins.Telegraf
plugin_console=yandextank.plugins.Console plugin_console=yandextank.plugins.Console
plugin_tips=yandextank.plugins.TipsAndTricks plugin_tips=yandextank.plugins.TipsAndTricks
plugin_rcassert=yandextank.plugins.RCAssert plugin_rcassert=yandextank.plugins.RCAssert
@ -17,3 +17,9 @@ ammo_type=caseline
[overload] [overload]
api_address=https://overload.yandex.net/ api_address=https://overload.yandex.net/
[telegraf]
disguise_hostnames=1
[monitoring]
disguise_hostnames=1

View File

@ -585,10 +585,11 @@ class Plugin(AbstractPlugin, AggregateResultListener,
tank=self.core.job.tank, tank=self.core.job.tank,
notify_list=self.get_option("notify", '').split(' '), notify_list=self.get_option("notify", '').split(' '),
load_scheme=loadscheme, load_scheme=loadscheme,
version=self.get_option('ver', ''),
log_data_requests=bool(int(self.get_option('log_data_requests', '0'))), log_data_requests=bool(int(self.get_option('log_data_requests', '0'))),
log_monitoring_requests=bool(int(self.get_option('log_monitoring_requests', '0'))), log_monitoring_requests=bool(int(self.get_option('log_monitoring_requests', '0'))),
log_status_requests=bool(int(self.get_option('log_status_requests', '0'))), log_status_requests=bool(int(self.get_option('log_status_requests', '0'))),
log_other_requests=bool(int(self.get_option('log_other_requests', '0'))), ) log_other_requests=bool(int(self.get_option('log_other_requests', '0'))))
@property @property
def task(self): def task(self):