Dont get value of remote hosts

Hello everyone,
i have posted an issue about the check of disk for my remote hosts ( installed by agent) but the result i get is only for my master
for example i have used the monitoring of procs and disk but the result for my remote server are the same as my master server ( I’m using architecture of Master->client)
Here is an example in how i monitor procs :
host.conf ( exemple of node)
object Host “ssl3.domaine.com” {
import “generic-host”
address = “x.x.x.x”
check_command = “dummy”
vars.notification[“mail”] = {
groups = [ “icingaadmins” ]
users = [“icingaadmin”]
}
enable_notifications = true
vars.notification_type = “email”
}

My service.conf

apply Service “procs” {
display_name = “PROCS”
import “generic-service”
check_command = “procs”
vars.procs_warning = “800”
vars.procs_critical = “900”
assign where host.name == “ssl3.domaine.com
vars.notification[“mail”] = {
groups = [ “icingaadmins” ]
users = [“icingaadmin”]
}
}

its happening in disk and memory all time
What should i do please ?

PS : i’m NOT disabling the inclusion of conf.d
Thank you

7 posts were merged into an existing topic: Check disk not showing the right value and right result for my server