Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fixed: Passive checks on CentOS 7.9 - requires two or more defined before it is listed in the GUI #896 #899

Open
wants to merge 1 commit into
base: maint
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGES.rst
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ Changelog
- NRDP connection timeout is missing in the admin section of the gui (#841) (ccztux)
- Updated psutil to address incorrectly reported mounts on Windows (#863)
- Changed the way NCPA detects the number of CPUs (#864)
- Fixed passive checks on CentOS 7.9 - requires two or more defined before it is listed in the GUI (#896) (ccztux)

2.4.0 - 2021-12-16
==================
Expand Down
4 changes: 2 additions & 2 deletions agent/listener/templates/admin/checks.html
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ <h3>Passive Checks</h3>
<div class="col-sm-12 col-lg-10 col-xl-8">
<div class="form-horizontal">

{% if checks|length > 1 %}
{% if checks|length > 0 %}
{% for check in checks %}
<pre>{{ check[0] }} = {{ check[1] }}</pre>
{% endfor %}
Expand All @@ -52,4 +52,4 @@ <h3>Passive Checks</h3>

</div>

{% endblock %}
{% endblock %}