mirror of
https://github.com/valitydev/yandex-tank.git
synced 2024-11-06 10:25:17 +00:00
logs symlinks for plugins
This commit is contained in:
parent
372293d67c
commit
b04ef7b102
@ -1,4 +1,5 @@
|
||||
import logging
|
||||
import os
|
||||
|
||||
|
||||
class AbstractPlugin(object):
|
||||
@ -87,6 +88,12 @@ class AbstractPlugin(object):
|
||||
"""
|
||||
pass
|
||||
|
||||
def make_symlink(self, name):
|
||||
PLUGIN_DIR = os.path.join(self.core.artifacts_base_dir, self.SECTION)
|
||||
if not os.path.exists(PLUGIN_DIR):
|
||||
os.makedirs(PLUGIN_DIR)
|
||||
os.symlink(self.core.artifacts_dir, os.path.join(PLUGIN_DIR, str(name)))
|
||||
|
||||
|
||||
class MonitoringDataListener(object):
|
||||
""" Monitoring interface
|
||||
|
@ -521,6 +521,7 @@ class TankCore(object):
|
||||
if not os.path.isdir(self.artifacts_dir):
|
||||
os.makedirs(self.artifacts_dir)
|
||||
os.chmod(self._artifacts_dir, 0o755)
|
||||
self._artifacts_dir = os.path.abspath(self._artifacts_dir)
|
||||
return self._artifacts_dir
|
||||
|
||||
|
||||
|
@ -10,8 +10,6 @@ import pwd
|
||||
import socket
|
||||
import sys
|
||||
|
||||
from ...common.interfaces import AbstractPlugin, MonitoringDataListener, AggregateResultListener, AbstractInfoWidget
|
||||
|
||||
from .client import OverloadClient
|
||||
from ..Aggregator import Plugin as AggregatorPlugin
|
||||
from ..Autostop import Plugin as AutostopPlugin
|
||||
@ -21,6 +19,7 @@ from ..Monitoring import Plugin as MonitoringPlugin
|
||||
from ..Pandora import Plugin as PandoraPlugin
|
||||
from ..Phantom import Plugin as PhantomPlugin
|
||||
from ..Telegraf import Plugin as TelegrafPlugin
|
||||
from ...common.interfaces import AbstractPlugin, MonitoringDataListener, AggregateResultListener, AbstractInfoWidget
|
||||
|
||||
logger = logging.getLogger(__name__) # pylint: disable=C0103
|
||||
|
||||
@ -229,9 +228,9 @@ class Plugin(AbstractPlugin, AggregateResultListener, MonitoringDataListener):
|
||||
logger.info("Web link: %s", web_link)
|
||||
self.publish("jobno", self.jobno)
|
||||
self.publish("web_link", web_link)
|
||||
if not self._core_with_tank_api():
|
||||
self.core.artifacts_dir = self.core.artifacts_base_dir + \
|
||||
'/' + str(self.jobno)
|
||||
|
||||
self.make_symlink(self.jobno)
|
||||
|
||||
self.set_option("jobno", self.jobno)
|
||||
if self.jobno_file:
|
||||
logger.debug("Saving jobno to: %s", self.jobno_file)
|
||||
|
Loading…
Reference in New Issue
Block a user