Skip to content

Commit

Permalink
Reviewed apache metrics
Browse files Browse the repository at this point in the history
  • Loading branch information
Adrien Delle Cave committed Jul 3, 2018
1 parent 3ea828a commit a732c04
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 7 deletions.
2 changes: 1 addition & 1 deletion bin/covenant
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ __license__ = """
You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.
"""
__version__ = '0.0.6.25'
__version__ = '0.0.6.26'

# TODO: load Python logging configuration (using standard logging.config)

Expand Down
10 changes: 8 additions & 2 deletions debian/changelog
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
covenant (0.0.6.26) unstable; urgency=medium

* Reviewed apache metrics.

-- Adrien Delle Cave <adrien.delle.cave@commandersact.com> Tue, 03 Jul 2018 15:22:13 +0200

covenant (0.0.6.25) unstable; urgency=medium

* Added jmespath filter.
Expand All @@ -12,7 +18,7 @@ covenant (0.0.6.24) unstable; urgency=medium

covenant (0.0.6.23) unstable; urgency=medium

* Clean nginx metrics.
* Clean nginx metrics.

-- Adrien Delle Cave <adrien.delle.cave@commandersact.com> Mon, 02 Jul 2018 13:38:36 +0200

Expand Down Expand Up @@ -84,7 +90,7 @@ covenant (0.0.6.12) unstable; urgency=medium

covenant (0.0.6.11) unstable; urgency=medium

* Fixed covenant user and group in daemon.
* Fixed covenant user and group in daemon.

-- Adrien Delle Cave <adrien.delle.cave@commandersact.com> Fri, 29 Jun 2018 18:36:31 +0200

Expand Down
6 changes: 3 additions & 3 deletions etc/covenant/metrics.d/apache.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
format: text
collects:
- accesses_total:
type: counter
type: gauge
value_tasks:
- '@filter': regex
func: search
Expand All @@ -15,7 +15,7 @@
'func': float
documentation: Current total apache accesses (*).
- sent_kilobytes_total:
type: counter
type: gauge
value_tasks:
- '@filter': regex
func: search
Expand All @@ -41,7 +41,7 @@
value: 1
documentation: Could the apache server be reached.
- uptime_seconds_total:
type: counter
type: gauge
value_tasks:
- '@filter': regex
func: search
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
import os
from setuptools import find_packages, setup

version = '0.0.6.25'
version = '0.0.6.26'

current_dir = os.path.abspath(os.path.dirname(__file__))
requirements = [line.strip() for line in open(os.path.join(current_dir, 'requirements.txt'), 'r').readlines()]
Expand Down

0 comments on commit a732c04

Please sign in to comment.