Skip to content

Commit c5839b2

Browse files
author
Pavlos Parissis
committed
RELEASE 0.5.0 version
1 parent 4f955fd commit c5839b2

3 files changed

Lines changed: 22 additions & 16 deletions

File tree

AUTHORS

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
Christian Rovner <[email protected]>
12
23
34
Marcin Deranek <[email protected]>
@@ -6,4 +7,3 @@ Patrick Kaeding <[email protected]>
67
Pavlos Parissis <[email protected]>
78
Pavlos Parissis <[email protected]>
89
9-
Christian Rovner <[email protected]>

ChangeLog

Lines changed: 20 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,12 @@
11
CHANGES
22
=======
33

4+
0.5.0
5+
-----
6+
7+
* RELEASE 0.5.0 version
8+
* Support grouping metrics by frontend, backend and server names
9+
410
0.4.2
511
-----
612

@@ -31,7 +37,7 @@ CHANGES
3137
* Update reference of UNIX sockets to include TCP
3238
* PEP257 compatible docstring
3339
* Simplify the return logic of two functions
34-
* Add configuration\_check\_for\_servers()
40+
* Add configuration_check_for_servers()
3541
* PEP257 compatible docstrings
3642
* Disable pylint warning for too-many-branches
3743
* Change the log severity to info for task report
@@ -44,10 +50,10 @@ CHANGES
4450
------
4551

4652
* RELEASE 0.3.15 version
47-
* Add dcon and dses in the list of FRONTEND\_METRICS
48-
* Add ctime in the list of SERVER\_AVG\_METRICS
53+
* Add dcon and dses in the list of FRONTEND_METRICS
54+
* Add ctime in the list of SERVER_AVG_METRICS
4955
* Add chkdown in the list of server metrics
50-
* Add \`slim\` to server metrics, in addition to frontends and backends
56+
* Add `slim` to server metrics, in addition to frontends and backends
5157
* Mention in README about ansible and move code under contrib
5258
* fix update readme file
5359
* - Add Ansible Playbook For Fast Deploy haproxystats On CentOS 7.x - Update README File
@@ -60,13 +66,13 @@ CHANGES
6066
------
6167

6268
* RELEASE 0.3.14 version
63-
* Fix wrong calculation for Uptime\_sec
69+
* Fix wrong calculation for Uptime_sec
6470

6571
0.3.13
6672
------
6773

6874
* RELEASE 0.3.13 version
69-
* Convert Idle\_pct to CpuUsagePct
75+
* Convert Idle_pct to CpuUsagePct
7076

7177
0.3.12
7278
------
@@ -81,7 +87,7 @@ CHANGES
8187
------
8288

8389
* RELEASE 0.3.11 version
84-
* Compute standard deviation and percentiles for Idle\_pct
90+
* Compute standard deviation and percentiles for Idle_pct
8591
* Sanitize values in pxname and svname columns
8692
* Simplify the way we exclude frontends/backends
8793
* Add TotalServer metrics for backend, close #4
@@ -97,7 +103,7 @@ CHANGES
97103
-----
98104

99105
* RELEASE 0.3.9 version
100-
* Avoid replacing '.' with '\_' in namespace setting
106+
* Avoid replacing '.' with '_' in namespace setting
101107
* Avoid crashing when daemon statistics are inconsistent
102108
* Do a comparison to None singleton with is not
103109
* Rename variable epoch to timestamp
@@ -172,15 +178,15 @@ CHANGES
172178
-----
173179

174180
* RELEASE 0.3.3 version
175-
* Add a tcp\_server which simulates graphite-relay
181+
* Add a tcp_server which simulates graphite-relay
176182
* Add support for per process statistics
177183
* Make it more clear that we perform aggregation
178184

179185
0.3.2
180186
-----
181187

182188
* RELEASE 0.3.2 version
183-
* Make sure we can \_\_init\_\_ method of parent class
189+
* Make sure we can __init__ method of parent class
184190
* Remove unnecessary fallback
185191
* Catch the case where config is in invalid format
186192
* Perform a sanity check on configuration
@@ -208,7 +214,7 @@ CHANGES
208214
* Revert "Replace in README UTF-8 characters with plain text"
209215
* Refactor the loglevel part
210216
* Disable pylint checks for few cases
211-
* Make load\_file\_content to skip commented out lines
217+
* Make load_file_content to skip commented out lines
212218
* Catch the case when incoming directory disappears
213219
* Disable few pylint checks
214220
* Remove unnecessary fallback
@@ -248,9 +254,9 @@ CHANGES
248254
* RELEASE 0.1.15 version
249255
* Handle TCP socket failures in a better way
250256
* Remove unused variable
251-
* Rename decorator, retries --> retry\_on\_failures
257+
* Rename decorator, retries --> retry_on_failures
252258
* Add docstrings in functions
253-
* Remove log\_hook as it is not needed anymore
259+
* Remove log_hook as it is not needed anymore
254260
* Rearrange comments
255261
* Replace a for loop with a list comprehension
256262
* Remove unnecessary dependencies from Unit files
@@ -368,7 +374,7 @@ CHANGES
368374

369375
* RELEASE 0.1.2
370376
* Introduce pull-timeout
371-
* Keep isolate shutdown and write\_file functions
377+
* Keep isolate shutdown and write_file functions
372378
* Catch timeout during the connection
373379

374380
0.1.1

haproxystats/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
__title__ = 'haproxystats'
66
__author__ = 'Pavlos Parissis'
77
__license__ = 'Apache 2.0'
8-
__version__ = '0.4.2'
8+
__version__ = '0.5.0'
99
__copyright__ = 'Copyright 2016 Pavlos Parissis <[email protected]'
1010

1111
DEFAULT_OPTIONS = {

0 commit comments

Comments
 (0)