Fixed the function to get the agents ok counter

This commit is contained in:
Alejandro Gallardo Escobar 2015-02-20 12:22:32 +01:00
parent 61690d89b5
commit b7d76f6c9a
1 changed files with 4 additions and 2 deletions

View File

@ -1379,8 +1379,10 @@ function tags_get_normal_agents ($id_tag, $groups_and_tags = array()) {
ON ttm.id_tag = $id_tag
AND tam.id_agente_modulo = ttm.id_agente_modulo
WHERE ta.disabled = 0
AND ta.total_count > 0
AND ta.normal_count = ta.total_count
AND ta.critical_count = 0
AND ta.warning_count = 0
AND ta.unknown_count = 0
AND ta.normal_count > 0
$groups_clause";
return db_get_sql($ok_agents);