v.1.7.1 changelog

This commit is contained in:
Alexey Lavrenuke 2015-02-06 20:49:48 +03:00
parent f4d2e053b2
commit 2969a70791
3 changed files with 282 additions and 72 deletions

190
.gitchangelog.rc Normal file
View File

@ -0,0 +1,190 @@
##
## Format
##
## ACTION: [AUDIENCE:] COMMIT_MSG [!TAG ...]
##
## Description
##
## ACTION is one of 'chg', 'fix', 'new'
##
## Is WHAT the change is about.
##
## 'chg' is for refactor, small improvement, cosmetic changes...
## 'fix' is for bug fixes
## 'new' is for new features, big improvement
##
## AUDIENCE is optional and one of 'dev', 'usr', 'pkg', 'test', 'doc'
##
## Is WHO is concerned by the change.
##
## 'dev' is for developpers (API changes, refactors...)
## 'usr' is for final users (UI changes)
## 'pkg' is for packagers (packaging changes)
## 'test' is for testers (test only related changes)
## 'doc' is for doc guys (doc only changes)
##
## COMMIT_MSG is ... well ... the commit message itself.
##
## TAGs are additionnal adjective as 'refactor' 'minor' 'cosmetic'
##
## They are preceded with a '!' or a '@' (prefer the former, as the
## latter is wrongly interpreted in github.) Commonly used tags are:
##
## 'refactor' is obviously for refactoring code only
## 'minor' is for a very meaningless change (a typo, adding a comment)
## 'cosmetic' is for cosmetic driven change (re-indentation, 80-col...)
## 'wip' is for partial functionality but complete subfunctionality.
##
## Example:
##
## new: usr: support of bazaar implemented
## chg: re-indentend some lines !cosmetic
## new: dev: updated code to be compatible with last version of killer lib.
## fix: pkg: updated year of licence coverage.
## new: test: added a bunch of test around user usability of feature X.
## fix: typo in spelling my name in comment. !minor
##
## Please note that multi-line commit message are supported, and only the
## first line will be considered as the "summary" of the commit message. So
## tags, and other rules only applies to the summary. The body of the commit
## message will be displayed in the changelog without reformatting.
##
## ``ignore_regexps`` is a line of regexps
##
## Any commit having its full commit message matching any regexp listed here
## will be ignored and won't be reported in the changelog.
##
ignore_regexps = [
r'@minor', r'!minor',
r'@cosmetic', r'!cosmetic',
r'@refactor', r'!refactor',
r'@wip', r'!wip',
r'^([cC]hg|[fF]ix|[nN]ew)\s*:\s*[p|P]kg:',
r'^([cC]hg|[fF]ix|[nN]ew)\s*:\s*[d|D]ev:',
r'^(.{3,3}\s*:)?\s*[fF]irst commit.?\s*$',
]
## ``section_regexps`` is a list of 2-tuples associating a string label and a
## list of regexp
##
## Commit messages will be classified in sections thanks to this. Section
## titles are the label, and a commit is classified under this section if any
## of the regexps associated is matching.
##
section_regexps = [
('New', [
r'^[nN]ew\s*:\s*((dev|use?r|pkg|test|doc)\s*:\s*)?([^\n]*)$',
]),
('Changes', [
r'^[cC]hg\s*:\s*((dev|use?r|pkg|test|doc)\s*:\s*)?([^\n]*)$',
]),
('Fix', [
r'^[fF]ix\s*:\s*((dev|use?r|pkg|test|doc)\s*:\s*)?([^\n]*)$',
]),
('Other', None ## Match all lines
),
]
## ``body_process`` is a callable
##
## This callable will be given the original body and result will
## be used in the changelog.
##
## Available constructs are:
##
## - any python callable that take one txt argument and return txt argument.
##
## - ReSub(pattern, replacement): will apply regexp substitution.
##
## - Indent(chars=" "): will indent the text with the prefix
## Please remember that template engines gets also to modify the text and
## will usually indent themselves the text if needed.
##
## - Wrap(regexp=r"\n\n"): re-wrap text in separate paragraph to fill 80-Columns
##
## - noop: do nothing
##
## - ucfirst: ensure the first letter is uppercase.
## (usually used in the ``subject_process`` pipeline)
##
## - final_dot: ensure text finishes with a dot
## (usually used in the ``subject_process`` pipeline)
##
## - strip: remove any spaces before or after the content of the string
##
## Additionally, you can `pipe` the provided filters, for instance:
#body_process = Wrap(regexp=r'\n(?=\w+\s*:)') | Indent(chars=" ")
#body_process = Wrap(regexp=r'\n(?=\w+\s*:)')
body_process = noop
## ``subject_process`` is a callable
##
## This callable will be given the original subject and result will
## be used in the changelog.
##
## Available constructs are those listed in ``body_process`` doc.
subject_process = (strip |
ReSub(r'^([cC]hg|[fF]ix|[nN]ew)\s*:\s*((dev|use?r|pkg|test|doc)\s*:\s*)?([^\n@]*)(@[a-z]+\s+)*$', r'\4') |
ucfirst | final_dot)
## ``tag_filter_regexp`` is a regexp
##
## Tags that will be used for the changelog must match this regexp.
##
tag_filter_regexp = r'^[0-9]+\.[0-9]+(\.[0-9]+)?$'
## ``unreleased_version_label`` is a string
##
## This label will be used as the changelog Title of the last set of changes
## between last valid tag and HEAD if any.
unreleased_version_label = "%%version%% (unreleased)"
## ``output_engine`` is a callable
##
## This will change the output format of the generated changelog file
##
## Available choices are:
##
## - rest_py
##
## Legacy pure python engine, outputs ReSTructured text.
## This is the default.
##
## - mustache(<template_name>)
##
## Template name could be any of the available templates in
## ``templates/mustache/*.tpl``.
## Requires python package ``pystache``.
## Examples:
## - mustache("markdown")
## - mustache("restructuredtext")
##
## - makotemplate(<template_name>)
##
## Template name could be any of the available templates in
## ``templates/mako/*.tpl``.
## Requires python package ``mako``.
## Examples:
## - makotemplate("restructuredtext")
##
output_engine = rest_py
#output_engine = mustache("restructuredtext")
#output_engine = mustache("markdown")
#output_engine = makotemplate("restructuredtext")
## ``include_merges`` is a boolean
##
## This option tells git-log whether to include merge commits in the log.
## The default is to include them.
include_merges = True

160
debian/changelog vendored
View File

@ -1,47 +1,67 @@
yandex-load-tank-base (1.6.7) precise; urgency=medium yandextank (1.7.1) precise; urgency=medium
* Fix Tx/rx packets counters big values (>2^32) [Mikhail Dyomin]
* Fix logging error in stepper when no first line can be read from ammo file. [asekretenko]
* Fix #110. Non-blocking console output. [Max Taldykin]
* Fix issues with changed loadosophia JSON API. [Andrey Pohilko]
* Fix cyrillic symbols in console screen in cases. [netortik]
* Fix collecting disk metrics of LVM devices on dom0. [netortik]
* Fix error after ending monitoring process [Gleb E Goncharov]
* Add installation info to readme, change version to 1.7.1. [Alexey Lavrenuke]
* Reorganize package in a pythonic way. [Alexey Lavrenuke]
* Remove OnlineReport module from a project. [Alexey Lavrenuke]
* Added suitable catch of exception in hostname resolving section. [netortik]
* Convert to lowercase monitoring hostnames. [netortik]
* Time limit criteria. [Alexey Lavrenuke]
* ZMQ Reader for BFG [Alexey Lavrenuke]
* Made NetTxRx.check() a bit better. [nnugumanov]
-- Alexey Lavrenuke (load testing) <direvius@yandex-team.ru> Fri, 06 Feb 2015 21:21:18 +0400
yandextank (1.6.7) precise; urgency=medium
* fix resolver for multi-address server * fix resolver for multi-address server
-- Andrey Pohilko (undera) <undera@yandex-team.ru> Fri, 04 Jul 2014 18:00:02 +0400 -- Andrey Pohilko (undera) <undera@yandex-team.ru> Fri, 04 Jul 2014 18:00:02 +0400
yandex-load-tank-base (1.6.6) precise; urgency=medium yandextank (1.6.6) precise; urgency=medium
* fix wrong port parsing * fix wrong port parsing
-- Andrey Pohilko (undera) <undera@yandex-team.ru> Mon, 30 Jun 2014 16:53:42 +0400 -- Andrey Pohilko (undera) <undera@yandex-team.ru> Mon, 30 Jun 2014 16:53:42 +0400
yandex-load-tank-base (1.6.5) precise; urgency=medium yandextank (1.6.5) precise; urgency=medium
* fix connection_test option parsing * fix connection_test option parsing
-- Andrey Pohilko (undera) <undera@yandex-team.ru> Mon, 30 Jun 2014 16:48:52 +0400 -- Andrey Pohilko (undera) <undera@yandex-team.ru> Mon, 30 Jun 2014 16:48:52 +0400
yandex-load-tank-base (1.6.4) precise; urgency=medium yandextank (1.6.4) precise; urgency=medium
* try to find available socket in resolver * try to find available socket in resolver
* fix instances info reading in phantom * fix instances info reading in phantom
-- Andrey Pohilko (undera) <undera@yandex-team.ru> Fri, 27 Jun 2014 16:56:17 +0400 -- Andrey Pohilko (undera) <undera@yandex-team.ru> Fri, 27 Jun 2014 16:56:17 +0400
yandex-load-tank-base (1.6.3) precise; urgency=medium yandextank (1.6.3) precise; urgency=medium
* fixed broken JMeter tests * fixed broken JMeter tests
-- Andrey Pohilko (undera) <undera@yandex-team.ru> Wed, 11 Jun 2014 14:07:23 +0400 -- Andrey Pohilko (undera) <undera@yandex-team.ru> Wed, 11 Jun 2014 14:07:23 +0400
yandex-load-tank-base (1.6.2) precise; urgency=medium yandextank (1.6.2) precise; urgency=medium
* more universal phantom stat reader * more universal phantom stat reader
-- Andrey Pohilko (undera) <undera@yandex-team.ru> Tue, 10 Jun 2014 19:38:42 +0400 -- Andrey Pohilko (undera) <undera@yandex-team.ru> Tue, 10 Jun 2014 19:38:42 +0400
yandex-load-tank-base (1.6.1) precise; urgency=medium yandextank (1.6.1) precise; urgency=medium
* fix bugs for 1.6.0 * fix bugs for 1.6.0
-- Andrey Pohilko (undera) <undera@yandex-team.ru> Tue, 10 Jun 2014 16:42:11 +0400 -- Andrey Pohilko (undera) <undera@yandex-team.ru> Tue, 10 Jun 2014 16:42:11 +0400
yandex-load-tank-base (1.6.0) precise; urgency=medium yandextank (1.6.0) precise; urgency=medium
* Rely on phantom pre~45 and greater in phantom configs * Rely on phantom pre~45 and greater in phantom configs
* Rework address parse/resolve functionality for phantom * Rework address parse/resolve functionality for phantom
@ -54,7 +74,7 @@ yandex-load-tank-base (1.6.0) precise; urgency=medium
-- Andrey Pohilko (undera) <undera@yandex-team.ru> Fri, 06 Jun 2014 14:58:48 +0400 -- Andrey Pohilko (undera) <undera@yandex-team.ru> Fri, 06 Jun 2014 14:58:48 +0400
yandex-load-tank-base (1.5.0) precise; urgency=low yandextank (1.5.0) precise; urgency=low
* Static HTML report with Highcharts graphs: tank metrics and monitoring * Static HTML report with Highcharts graphs: tank metrics and monitoring
* Highcharts template for Graphite reports * Highcharts template for Graphite reports
@ -68,13 +88,13 @@ yandex-load-tank-base (1.5.0) precise; urgency=low
-- Andrey Pohilko (undera) <undera@yandex-team.ru> Wed, 19 Mar 2014 15:34:24 +0400 -- Andrey Pohilko (undera) <undera@yandex-team.ru> Wed, 19 Mar 2014 15:34:24 +0400
yandex-load-tank-base (1.4.9) precise; urgency=low yandextank (1.4.9) precise; urgency=low
* fixed monitoring collector bug * fixed monitoring collector bug
-- Andrey Pohilko (undera) <undera@yandex-team.ru> Tue, 25 Feb 2014 13:56:31 +0400 -- Andrey Pohilko (undera) <undera@yandex-team.ru> Tue, 25 Feb 2014 13:56:31 +0400
yandex-load-tank-base (1.4.8) precise; urgency=low yandextank (1.4.8) precise; urgency=low
* add BFG startup script * add BFG startup script
* skip bad formatted line in stepper with access.log (fix #59) * skip bad formatted line in stepper with access.log (fix #59)
@ -92,7 +112,7 @@ yandex-load-tank-base (1.4.8) precise; urgency=low
-- Andrey Pohilko (undera) <undera@yandex-team.ru> Fri, 21 Feb 2014 19:27:11 +0400 -- Andrey Pohilko (undera) <undera@yandex-team.ru> Fri, 21 Feb 2014 19:27:11 +0400
yandex-load-tank-base (1.4.7) precise; urgency=low yandextank (1.4.7) precise; urgency=low
* move some depends to recommended * move some depends to recommended
* smarter uri marker * smarter uri marker
@ -103,33 +123,33 @@ yandex-load-tank-base (1.4.7) precise; urgency=low
-- Andrey Pohilko (undera) <undera@yandex-team.ru> Fri, 01 Nov 2013 18:13:57 +0400 -- Andrey Pohilko (undera) <undera@yandex-team.ru> Fri, 01 Nov 2013 18:13:57 +0400
yandex-load-tank-base (1.4.6) precise; urgency=low yandextank (1.4.6) precise; urgency=low
* fix some stepper bugs * fix some stepper bugs
* imporve BFG plugin * imporve BFG plugin
-- Andrey Pohilko (undera) <undera@yandex-team.ru> Fri, 13 Sep 2013 17:09:19 +0400 -- Andrey Pohilko (undera) <undera@yandex-team.ru> Fri, 13 Sep 2013 17:09:19 +0400
yandex-load-tank-base (1.4.5) precise; urgency=low yandextank (1.4.5) precise; urgency=low
* fix uri-style from config * fix uri-style from config
* fix unit tests * fix unit tests
-- Andrey Pohilko (undera) <undera@yandex-team.ru> Fri, 06 Sep 2013 19:53:07 +0400 -- Andrey Pohilko (undera) <undera@yandex-team.ru> Fri, 06 Sep 2013 19:53:07 +0400
yandex-load-tank-base (1.4.4) precise; urgency=low yandextank (1.4.4) precise; urgency=low
* fix uri-style from file * fix uri-style from file
-- Andrey Pohilko (undera) <undera@yandex-team.ru> Thu, 05 Sep 2013 19:03:17 +0400 -- Andrey Pohilko (undera) <undera@yandex-team.ru> Thu, 05 Sep 2013 19:03:17 +0400
yandex-load-tank-base (1.4.3) precise; urgency=low yandextank (1.4.3) precise; urgency=low
* fix stepper bugs * fix stepper bugs
-- Andrey Pohilko (undera) <undera@yandex-team.ru> Tue, 03 Sep 2013 21:20:08 +0400 -- Andrey Pohilko (undera) <undera@yandex-team.ru> Tue, 03 Sep 2013 21:20:08 +0400
yandex-load-tank-base (1.4.0) precise; urgency=low yandextank (1.4.0) precise; urgency=low
* new stepper for phantom module * new stepper for phantom module
* fix unnecessary check in aggregator * fix unnecessary check in aggregator
@ -142,7 +162,7 @@ yandex-load-tank-base (1.4.0) precise; urgency=low
-- Andrey Pohilko (undera) <undera@yandex-team.ru> Mon, 02 Sep 2013 17:52:28 +0400 -- Andrey Pohilko (undera) <undera@yandex-team.ru> Mon, 02 Sep 2013 17:52:28 +0400
yandex-load-tank-base (1.3.10) precise; urgency=low yandextank (1.3.10) precise; urgency=low
* don't support old config format anymore * don't support old config format anymore
* don't interrupt test on local web start failure * don't interrupt test on local web start failure
@ -155,7 +175,7 @@ yandex-load-tank-base (1.3.10) precise; urgency=low
-- Andrey Pohilko (undera) <undera@yandex-team.ru> Fri, 07 Jun 2013 18:04:56 +0400 -- Andrey Pohilko (undera) <undera@yandex-team.ru> Fri, 07 Jun 2013 18:04:56 +0400
yandex-load-tank-base (1.3.9) precise; urgency=low yandextank (1.3.9) precise; urgency=low
* add bash completion * add bash completion
* add support for Loadosophia.org active tests * add support for Loadosophia.org active tests
@ -163,7 +183,7 @@ yandex-load-tank-base (1.3.9) precise; urgency=low
-- Andrey Pohilko (undera) <undera@yandex-team.ru> Tue, 26 Mar 2013 19:43:07 +0400 -- Andrey Pohilko (undera) <undera@yandex-team.ru> Tue, 26 Mar 2013 19:43:07 +0400
yandex-load-tank-base (1.3.8) precise; urgency=low yandextank (1.3.8) precise; urgency=low
* fix and optimize phantom results reading * fix and optimize phantom results reading
* add new phantom-stderr log file * add new phantom-stderr log file
@ -175,19 +195,19 @@ yandex-load-tank-base (1.3.8) precise; urgency=low
-- Andrey Pohilko (undera) <undera@yandex-team.ru> Fri, 15 Mar 2013 14:43:29 +0400 -- Andrey Pohilko (undera) <undera@yandex-team.ru> Fri, 15 Mar 2013 14:43:29 +0400
yandex-load-tank-base (1.3.7) precise; urgency=low yandextank (1.3.7) precise; urgency=low
* fix http code getting bug * fix http code getting bug
-- Andrey Pohilko (undera) <undera@yandex-team.ru> Mon, 18 Feb 2013 13:57:42 +0400 -- Andrey Pohilko (undera) <undera@yandex-team.ru> Mon, 18 Feb 2013 13:57:42 +0400
yandex-load-tank-base (1.3.6) precise; urgency=low yandextank (1.3.6) precise; urgency=low
* optimize phout reading * optimize phout reading
-- Andrey Pohilko (undera) <undera@yandex-team.ru> Fri, 08 Feb 2013 18:11:57 +0400 -- Andrey Pohilko (undera) <undera@yandex-team.ru> Fri, 08 Feb 2013 18:11:57 +0400
yandex-load-tank-base (1.3.5) precise; urgency=low yandextank (1.3.5) precise; urgency=low
* Double limit for phout reading, fixes console bug * Double limit for phout reading, fixes console bug
* Update progressbar on looping in stepping * Update progressbar on looping in stepping
@ -195,19 +215,19 @@ yandex-load-tank-base (1.3.5) precise; urgency=low
-- Andrey Pohilko (undera) <undera@yandex-team.ru> Wed, 06 Feb 2013 13:51:18 +0400 -- Andrey Pohilko (undera) <undera@yandex-team.ru> Wed, 06 Feb 2013 13:51:18 +0400
yandex-load-tank-base (1.3.4) precise; urgency=high yandextank (1.3.4) precise; urgency=high
* fix broken build * fix broken build
-- Andrey Pohilko (undera) <undera@yandex-team.ru> Fri, 01 Feb 2013 19:57:04 +0400 -- Andrey Pohilko (undera) <undera@yandex-team.ru> Fri, 01 Feb 2013 19:57:04 +0400
yandex-load-tank-base (1.3.3) precise; urgency=high yandextank (1.3.3) precise; urgency=high
* fix broken phantom config * fix broken phantom config
-- Andrey Pohilko (undera) <undera@yandex-team.ru> Fri, 01 Feb 2013 19:44:26 +0400 -- Andrey Pohilko (undera) <undera@yandex-team.ru> Fri, 01 Feb 2013 19:44:26 +0400
yandex-load-tank-base (1.3.2) precise; urgency=low yandextank (1.3.2) precise; urgency=low
* add support for phantom additional modules (for elliptics project) * add support for phantom additional modules (for elliptics project)
* fix phout import mode * fix phout import mode
@ -215,13 +235,13 @@ yandex-load-tank-base (1.3.2) precise; urgency=low
-- Andrey Pohilko (undera) <undera@yandex-team.ru> Fri, 01 Feb 2013 15:49:06 +0400 -- Andrey Pohilko (undera) <undera@yandex-team.ru> Fri, 01 Feb 2013 15:49:06 +0400
yandex-load-tank-base (1.3.1) precise; urgency=low yandextank (1.3.1) precise; urgency=low
* change multi-phantom separator to dash * change multi-phantom separator to dash
-- Andrey Pohilko (undera) <undera@yandex-team.ru> Tue, 29 Jan 2013 19:34:32 +0400 -- Andrey Pohilko (undera) <undera@yandex-team.ru> Tue, 29 Jan 2013 19:34:32 +0400
yandex-load-tank-base (1.3.0) precise; urgency=low yandextank (1.3.0) precise; urgency=low
* add multi-stream phantom tests * add multi-stream phantom tests
* split console messages to stdout and stderr * split console messages to stdout and stderr
@ -229,13 +249,13 @@ yandex-load-tank-base (1.3.0) precise; urgency=low
-- Andrey Pohilko (undera) <undera@yandex-team.ru> Tue, 29 Jan 2013 14:25:57 +0400 -- Andrey Pohilko (undera) <undera@yandex-team.ru> Tue, 29 Jan 2013 14:25:57 +0400
yandex-load-tank-base (1.2.5) precise; urgency=low yandextank (1.2.5) precise; urgency=low
* correct work with external phantom conf * correct work with external phantom conf
-- Andrey Pohilko (undera) <undera@yandex-team.ru> Thu, 24 Jan 2013 18:01:01 +0400 -- Andrey Pohilko (undera) <undera@yandex-team.ru> Thu, 24 Jan 2013 18:01:01 +0400
yandex-load-tank-base (1.2.4) precise; urgency=low yandextank (1.2.4) precise; urgency=low
* Report poll hook exit code as test RC * Report poll hook exit code as test RC
* Fix ip resolving bugs * Fix ip resolving bugs
@ -243,13 +263,13 @@ yandex-load-tank-base (1.2.4) precise; urgency=low
-- Andrey Pohilko (undera) <undera@yandex-team.ru> Thu, 17 Jan 2013 20:36:33 +0400 -- Andrey Pohilko (undera) <undera@yandex-team.ru> Thu, 17 Jan 2013 20:36:33 +0400
yandex-load-tank-base (1.2.3~doomsday-fixed) precise; urgency=high yandextank (1.2.3~doomsday-fixed) precise; urgency=high
* fix phantom buffer and set it to 2 seconds * fix phantom buffer and set it to 2 seconds
-- Andrey Pohilko (undera) <undera@yandex-team.ru> Fri, 21 Dec 2012 15:37:55 +0400 -- Andrey Pohilko (undera) <undera@yandex-team.ru> Fri, 21 Dec 2012 15:37:55 +0400
yandex-load-tank-base (1.2.3~doomsday) precise; urgency=low yandextank (1.2.3~doomsday) precise; urgency=low
* add duration to JMeter info widget * add duration to JMeter info widget
* add 2 total autostop criteria * add 2 total autostop criteria
@ -262,7 +282,7 @@ yandex-load-tank-base (1.2.3~doomsday) precise; urgency=low
-- Andrey Pohilko (undera) <undera@yandex-team.ru> Fri, 21 Dec 2012 14:33:26 +0400 -- Andrey Pohilko (undera) <undera@yandex-team.ru> Fri, 21 Dec 2012 14:33:26 +0400
yandex-load-tank-base (1.2.2) precise; urgency=low yandextank (1.2.2) precise; urgency=low
* new module: tank resources check * new module: tank resources check
* phantom address separated from resolved IP * phantom address separated from resolved IP
@ -271,7 +291,7 @@ yandex-load-tank-base (1.2.2) precise; urgency=low
-- Andrey Pohilko (undera) <undera@yandex-team.ru> Wed, 05 Dec 2012 15:28:22 +0400 -- Andrey Pohilko (undera) <undera@yandex-team.ru> Wed, 05 Dec 2012 15:28:22 +0400
yandex-load-tank-base (1.2.1) precise; urgency=low yandextank (1.2.1) precise; urgency=low
* a pair of new autostop criteria: http_trend and negative_net * a pair of new autostop criteria: http_trend and negative_net
* add color flag and test title to loadosophia uploader * add color flag and test title to loadosophia uploader
@ -280,7 +300,7 @@ yandex-load-tank-base (1.2.1) precise; urgency=low
-- Andrey Pohilko (undera) <undera@yandex-team.ru> Mon, 03 Dec 2012 15:59:58 +0400 -- Andrey Pohilko (undera) <undera@yandex-team.ru> Mon, 03 Dec 2012 15:59:58 +0400
yandex-load-tank-base (1.2.0) precise; urgency=low yandextank (1.2.0) precise; urgency=low
* add more graphs to web online * add more graphs to web online
* better monitoring agent logging and shutdown * better monitoring agent logging and shutdown
@ -289,7 +309,7 @@ yandex-load-tank-base (1.2.0) precise; urgency=low
-- Andrey Pohilko (undera) <undera@yandex-team.ru> Tue, 27 Nov 2012 15:16:59 +0400 -- Andrey Pohilko (undera) <undera@yandex-team.ru> Tue, 27 Nov 2012 15:16:59 +0400
yandex-load-tank-base (1.1.9) precise; urgency=low yandextank (1.1.9) precise; urgency=low
* remove expensive logging in phantom parser * remove expensive logging in phantom parser
* fix custom monitoring autostop failure * fix custom monitoring autostop failure
@ -298,7 +318,7 @@ yandex-load-tank-base (1.1.9) precise; urgency=low
-- Andrey Pohilko (undera) <undera@yandex-team.ru> Fri, 23 Nov 2012 12:00:09 +0400 -- Andrey Pohilko (undera) <undera@yandex-team.ru> Fri, 23 Nov 2012 12:00:09 +0400
yandex-load-tank-base (1.1.8) precise; urgency=low yandextank (1.1.8) precise; urgency=low
* Fix lost samples and RPS data in Phantom results * Fix lost samples and RPS data in Phantom results
* Don't clean console colors before sending to transmitter * Don't clean console colors before sending to transmitter
@ -309,13 +329,13 @@ yandex-load-tank-base (1.1.8) precise; urgency=low
-- Andrey Pohilko (undera) <undera@yandex-team.ru> Tue, 20 Nov 2012 14:59:57 +0400 -- Andrey Pohilko (undera) <undera@yandex-team.ru> Tue, 20 Nov 2012 14:59:57 +0400
yandex-load-tank-base (1.1.7) precise; urgency=low yandextank (1.1.7) precise; urgency=low
* change screen layout * change screen layout
-- Andrey Pohilko (undera) <undera@yandex-team.ru> Fri, 16 Nov 2012 17:55:50 +0400 -- Andrey Pohilko (undera) <undera@yandex-team.ru> Fri, 16 Nov 2012 17:55:50 +0400
yandex-load-tank-base (1.1.6) precise; urgency=low yandextank (1.1.6) precise; urgency=low
* fix minor bugs * fix minor bugs
* load.ini is default * load.ini is default
@ -327,7 +347,7 @@ yandex-load-tank-base (1.1.6) precise; urgency=low
-- Andrey Pohilko (undera) <undera@yandex-team.ru> Mon, 12 Nov 2012 19:16:34 +0400 -- Andrey Pohilko (undera) <undera@yandex-team.ru> Mon, 12 Nov 2012 19:16:34 +0400
yandex-load-tank-base (1.1.5) precise; urgency=low yandextank (1.1.5) precise; urgency=low
* fix fd leaking * fix fd leaking
* graphite uploader enabled by default * graphite uploader enabled by default
@ -338,13 +358,13 @@ yandex-load-tank-base (1.1.5) precise; urgency=low
-- Andrey Pohilko (undera) <undera@yandex-team.ru> Thu, 25 Oct 2012 13:46:14 +0400 -- Andrey Pohilko (undera) <undera@yandex-team.ru> Thu, 25 Oct 2012 13:46:14 +0400
yandex-load-tank-base (1.1.4) precise; urgency=low yandextank (1.1.4) precise; urgency=low
* fix file descriptor leaks * fix file descriptor leaks
-- Andrey Pohilko (undera) <undera@yandex-team.ru> Mon, 22 Oct 2012 16:01:47 +0400 -- Andrey Pohilko (undera) <undera@yandex-team.ru> Mon, 22 Oct 2012 16:01:47 +0400
yandex-load-tank-base (1.1.3) precise; urgency=high yandextank (1.1.3) precise; urgency=high
* fix bug with phantom timeout * fix bug with phantom timeout
* ability to send console view to listener * ability to send console view to listener
@ -352,20 +372,20 @@ yandex-load-tank-base (1.1.3) precise; urgency=high
-- Andrey Pohilko (undera) <undera@yandex-team.ru> Wed, 17 Oct 2012 16:32:41 +0400 -- Andrey Pohilko (undera) <undera@yandex-team.ru> Wed, 17 Oct 2012 16:32:41 +0400
yandex-load-tank-base (1.1.2) precise; urgency=low yandextank (1.1.2) precise; urgency=low
* phantom class refactored * phantom class refactored
* fixed some bugs * fixed some bugs
-- Andrey Pohilko (undera) <undera@yandex-team.ru> Tue, 16 Oct 2012 16:21:13 +0400 -- Andrey Pohilko (undera) <undera@yandex-team.ru> Tue, 16 Oct 2012 16:21:13 +0400
yandex-load-tank-base (1.1.1) precise; urgency=low yandextank (1.1.1) precise; urgency=low
* polish work with artifacts * polish work with artifacts
-- Andrey Pohilko (undera) <undera@yandex-team.ru> Mon, 08 Oct 2012 20:58:45 +0400 -- Andrey Pohilko (undera) <undera@yandex-team.ru> Mon, 08 Oct 2012 20:58:45 +0400
yandex-load-tank-base (1.1.0) precise; urgency=low yandextank (1.1.0) precise; urgency=low
* make core pyshared object * make core pyshared object
* allow external test interruption * allow external test interruption
@ -374,7 +394,7 @@ yandex-load-tank-base (1.1.0) precise; urgency=low
-- Andrey Pohilko (undera) <undera@yandex-team.ru> Mon, 08 Oct 2012 16:59:57 +0400 -- Andrey Pohilko (undera) <undera@yandex-team.ru> Mon, 08 Oct 2012 16:59:57 +0400
yandex-load-tank-base (1.0.15) precise; urgency=low yandextank (1.0.15) precise; urgency=low
* change core module layout * change core module layout
* add Graphite Uploader module * add Graphite Uploader module
@ -383,13 +403,13 @@ yandex-load-tank-base (1.0.15) precise; urgency=low
-- Andrey Pohilko (undera) <undera@yandex-team.ru> Thu, 04 Oct 2012 13:17:59 +0400 -- Andrey Pohilko (undera) <undera@yandex-team.ru> Thu, 04 Oct 2012 13:17:59 +0400
yandex-load-tank-base (1.0.14) precise; urgency=low yandextank (1.0.14) precise; urgency=low
* added web online module * added web online module
-- Andrey Pohilko (undera) <undera@yandex-team.ru> Tue, 02 Oct 2012 13:44:11 +0400 -- Andrey Pohilko (undera) <undera@yandex-team.ru> Tue, 02 Oct 2012 13:44:11 +0400
yandex-load-tank-base (1.0.13) precise; urgency=low yandextank (1.0.13) precise; urgency=low
* fix bug with disabled monitoring * fix bug with disabled monitoring
* add loadosophia.org uploading module * add loadosophia.org uploading module
@ -399,7 +419,7 @@ yandex-load-tank-base (1.0.13) precise; urgency=low
-- Andrey Pohilko (undera) <undera@yandex-team.ru> Mon, 01 Oct 2012 17:46:33 +0400 -- Andrey Pohilko (undera) <undera@yandex-team.ru> Mon, 01 Oct 2012 17:46:33 +0400
yandex-load-tank-base (1.0.11) precise; urgency=low yandextank (1.0.11) precise; urgency=low
* default artiacts dir name with datetime * default artiacts dir name with datetime
* don't interrupt test if default monitoring failed to install * don't interrupt test if default monitoring failed to install
@ -407,46 +427,46 @@ yandex-load-tank-base (1.0.11) precise; urgency=low
-- Andrey Pohilko (undera) <undera@yandex-team.ru> Fri, 28 Sep 2012 13:26:54 +0400 -- Andrey Pohilko (undera) <undera@yandex-team.ru> Fri, 28 Sep 2012 13:26:54 +0400
yandex-load-tank-base (1.0.10) precise; urgency=low yandextank (1.0.10) precise; urgency=low
* remove old perl code completely * remove old perl code completely
-- Andrey Pohilko (undera) <undera@yandex-team.ru> Wed, 26 Sep 2012 18:21:37 +0400 -- Andrey Pohilko (undera) <undera@yandex-team.ru> Wed, 26 Sep 2012 18:21:37 +0400
yandex-load-tank-base (1.0.9) precise; urgency=low yandextank (1.0.9) precise; urgency=low
* add ab functionality * add ab functionality
* add JMeter functionality * add JMeter functionality
-- Andrey Pohilko (undera) <undera@yandex-team.ru> Tue, 25 Sep 2012 17:29:42 +0400 -- Andrey Pohilko (undera) <undera@yandex-team.ru> Tue, 25 Sep 2012 17:29:42 +0400
yandex-load-tank-base (1.0.8) precise; urgency=low yandextank (1.0.8) precise; urgency=low
* change screen layout * change screen layout
* fix bugs reported from test usages * fix bugs reported from test usages
-- Andrey Pohilko (undera) <undera@yandex-team.ru> Mon, 24 Sep 2012 19:16:33 +0400 -- Andrey Pohilko (undera) <undera@yandex-team.ru> Mon, 24 Sep 2012 19:16:33 +0400
yandex-load-tank-base (1.0.7) precise; urgency=low yandextank (1.0.7) precise; urgency=low
* increase aggregator speed and fix its bugs * increase aggregator speed and fix its bugs
* return progressbar to stepper * return progressbar to stepper
-- Andrey Pohilko (undera) <undera@yandex-team.ru> Mon, 24 Sep 2012 13:54:36 +0400 -- Andrey Pohilko (undera) <undera@yandex-team.ru> Mon, 24 Sep 2012 13:54:36 +0400
yandex-load-tank-base (1.0.6) precise; urgency=low yandextank (1.0.6) precise; urgency=low
* added several screen info blocks * added several screen info blocks
-- Andrey Pohilko (undera) <undera@yandex-team.ru> Sun, 23 Sep 2012 21:01:57 +0400 -- Andrey Pohilko (undera) <undera@yandex-team.ru> Sun, 23 Sep 2012 21:01:57 +0400
yandex-load-tank-base (1.0.5) precise; urgency=low yandextank (1.0.5) precise; urgency=low
* rewrite aggregator with python * rewrite aggregator with python
-- Andrey Pohilko (undera) <undera@yandex-team.ru> Fri, 21 Sep 2012 17:08:27 +0400 -- Andrey Pohilko (undera) <undera@yandex-team.ru> Fri, 21 Sep 2012 17:08:27 +0400
yandex-load-tank-base (1.0.4) precise; urgency=low yandextank (1.0.4) precise; urgency=low
* add interactive metainfo querying * add interactive metainfo querying
* mon agent logs as usual artifacts * mon agent logs as usual artifacts
@ -456,7 +476,7 @@ yandex-load-tank-base (1.0.4) precise; urgency=low
-- Andrey Pohilko (undera) <undera@yandex-team.ru> Thu, 20 Sep 2012 11:20:27 +0400 -- Andrey Pohilko (undera) <undera@yandex-team.ru> Thu, 20 Sep 2012 11:20:27 +0400
yandex-load-tank-base (1.0.3) precise; urgency=low yandextank (1.0.3) precise; urgency=low
* implemented gatling and request limits for phantom * implemented gatling and request limits for phantom
* beautified console * beautified console
@ -464,38 +484,38 @@ yandex-load-tank-base (1.0.3) precise; urgency=low
-- Andrey Pohilko (undera) <undera@yandex-team.ru> Mon, 17 Sep 2012 22:09:59 +0400 -- Andrey Pohilko (undera) <undera@yandex-team.ru> Mon, 17 Sep 2012 22:09:59 +0400
yandex-load-tank-base (1.0.2) precise; urgency=low yandextank (1.0.2) precise; urgency=low
* added monitoring to new console * added monitoring to new console
-- Andrey Pohilko (undera) <undera@yandex-team.ru> Mon, 17 Sep 2012 13:32:12 +0400 -- Andrey Pohilko (undera) <undera@yandex-team.ru> Mon, 17 Sep 2012 13:32:12 +0400
yandex-load-tank-base (1.0.1) precise; urgency=low yandextank (1.0.1) precise; urgency=low
* many changes on the way of new tool development * many changes on the way of new tool development
-- Andrey Pohilko (undera) <undera@yandex-team.ru> Fri, 14 Sep 2012 21:25:38 +0400 -- Andrey Pohilko (undera) <undera@yandex-team.ru> Fri, 14 Sep 2012 21:25:38 +0400
yandex-load-tank-base (1.0.0) precise; urgency=low yandextank (1.0.0) precise; urgency=low
* begin migrating to new yandex-tank tool * begin migrating to new yandex-tank tool
-- Andrey Pohilko (undera) <undera@yandex-team.ru> Wed, 12 Sep 2012 17:43:43 +0400 -- Andrey Pohilko (undera) <undera@yandex-team.ru> Wed, 12 Sep 2012 17:43:43 +0400
yandex-load-tank-base (0.2.7) precise; urgency=low yandextank (0.2.7) precise; urgency=low
* less error messages from prd.pl * less error messages from prd.pl
* some code cleanup * some code cleanup
-- Andrey Pohilko (undera) <undera@yandex-team.ru> Fri, 07 Sep 2012 11:55:33 +0400 -- Andrey Pohilko (undera) <undera@yandex-team.ru> Fri, 07 Sep 2012 11:55:33 +0400
yandex-load-tank-base (0.2.6) precise; urgency=low yandextank (0.2.6) precise; urgency=low
* lower phantom version requirements * lower phantom version requirements
-- Andrey Pohilko (undera) <undera@yandex-team.ru> Fri, 24 Aug 2012 14:34:39 +0400 -- Andrey Pohilko (undera) <undera@yandex-team.ru> Fri, 24 Aug 2012 14:34:39 +0400
yandex-load-tank-base (0.2.5) precise; urgency=low yandextank (0.2.5) precise; urgency=low
* eliminate dpkg calls * eliminate dpkg calls
* fix issue #6 * fix issue #6
@ -504,44 +524,44 @@ yandex-load-tank-base (0.2.5) precise; urgency=low
-- Andrey Pohilko (undera) <undera@yandex-team.ru> Mon, 13 Aug 2012 17:45:59 +0400 -- Andrey Pohilko (undera) <undera@yandex-team.ru> Mon, 13 Aug 2012 17:45:59 +0400
yandex-load-tank-base (0.2.0) precise; urgency=low yandextank (0.2.0) precise; urgency=low
* first build for public * first build for public
-- Andrey Pohilko (undera) <undera@yandex-team.ru> Wed, 25 Jul 2012 16:42:34 +0400 -- Andrey Pohilko (undera) <undera@yandex-team.ru> Wed, 25 Jul 2012 16:42:34 +0400
yandex-load-tank-base (0.1.7) common; urgency=low yandextank (0.1.7) common; urgency=low
* remove API host * remove API host
-- Andrey Pohilko (undera) <undera@yandex-team.ru> Thu, 07 Jun 2012 16:50:35 +0400 -- Andrey Pohilko (undera) <undera@yandex-team.ru> Thu, 07 Jun 2012 16:50:35 +0400
yandex-load-tank-base (0.1.6) common; urgency=low yandextank (0.1.6) common; urgency=low
* lunapark -c creates default config * lunapark -c creates default config
* man pages shipped * man pages shipped
-- Andrey Pohilko (undera) <undera@yandex-team.ru> Wed, 06 Jun 2012 19:06:05 +0400 -- Andrey Pohilko (undera) <undera@yandex-team.ru> Wed, 06 Jun 2012 19:06:05 +0400
yandex-load-tank-base (0.1.5) common; urgency=low yandextank (0.1.5) common; urgency=low
* fixed: phout import does not pass load scheme to API * fixed: phout import does not pass load scheme to API
-- Andrey Pohilko (undera) <undera@yandex-team.ru> Mon, 04 Jun 2012 15:34:09 +0400 -- Andrey Pohilko (undera) <undera@yandex-team.ru> Mon, 04 Jun 2012 15:34:09 +0400
yandex-load-tank-base (0.1.4) common; urgency=low yandextank (0.1.4) common; urgency=low
* reverted db.conf * reverted db.conf
-- Andrey Pohilko (undera) <undera@yandex-team.ru> Fri, 01 Jun 2012 20:50:46 +0400 -- Andrey Pohilko (undera) <undera@yandex-team.ru> Fri, 01 Jun 2012 20:50:46 +0400
yandex-load-tank-base (0.1.3) common; urgency=low yandextank (0.1.3) common; urgency=low
* rebuild for common * rebuild for common
-- Andrey Pohilko (undera) <undera@yandex-team.ru> Fri, 01 Jun 2012 20:05:26 +0400 -- Andrey Pohilko (undera) <undera@yandex-team.ru> Fri, 01 Jun 2012 20:05:26 +0400
yandex-load-tank-base (0.1.0) hardy; urgency=low yandextank (0.1.0) hardy; urgency=low
* Initial release of internal Yandex code * Initial release of internal Yandex code

View File

@ -15,8 +15,8 @@ It uses other load generators such as JMeter, ab or phantom inside of it for
load generation and provides a common configuration system for them and load generation and provides a common configuration system for them and
analytic tools for the results they produce. analytic tools for the results they produce.
''', ''',
maintainer='Alexey Lavrenuke', maintainer='Alexey Lavrenuke (load testing)',
maintainer_email='direvius@gmail.com', maintainer_email='direvius@yandex-team.ru',
url='http://yandex.github.io/yandex-tank/', url='http://yandex.github.io/yandex-tank/',
packages=find_packages(), packages=find_packages(),
install_requires=[ install_requires=[