Hi,

I'm currently using:

icingaweb2         git master from today ( 25/04/2016 )
icinga2                  2.4.7

With static services like ping4 for example, I can disable notification in 
icingaweb2 with no issues.. however.. if I attempt to disable notification on a 
service generated like so:

apply Service "ProcessCheck" for (processDetails in host.vars.snmp_processes) {
  import "generic-service"
  check_command = "check_snmp_processes"

  vars += processDetails;

  if ( vars.name ) {
    display_name = "Process " + vars.name
  }  else {
    display_name = "Process " + vars.process
  }

  vars.snmp_processname = vars.process


  /* Set service defaults. Can be overridden at host level */
  if ( vars.args ) { vars.snmp_processargs = vars.args }
  if ( ! vars.snmp_community )  { vars.snmp_community = "public" }
  if ( ! vars.snmp_port )       { vars.snmp_port      = 161 }
  if ( ! vars.snmp_timeout )    { vars.snmp_timeout   = 5 }

  assign where host.address && "SolarisServers" in host.groups && 
host.vars.snmp_process_check == 1
}

When disabling this service in icingaweb2 the dashboard keeps notification 
ticked, but in the icinga2.log file I get:

[2016-04-25 16:54:50 +0100] information/ExternalCommandListener: Executing 
external command: [1461599690] DISABLE_SVC_NOTIFICATIONS;*****;ProcessCheck{\n  
    args = "-bl -q15m"\n    process = "/usr/lib/sendmail"\n}
[2016-04-25 16:54:50 +0100] warning/ExternalCommandListener: External command 
failed.Error: Cannot disable service notifications for non-existent service 
'ProcessCheck{\n      args = "-bl -q15m"\n    process = "/usr/lib/sendmail"\n}' 
on host '*****'

        (0) libicinga.so: void 
boost::throw_exception<boost::exception_detail::error_info_injector<std::invalid_argument>
 >(boost::exception_detail::error_info_injector<std::invalid_argument> const&) 
(+0xe8) [0x7f9b79b7b998]
        (1) libicinga.so: void 
boost::exception_detail::throw_exception_<std::invalid_argument>(std::invalid_argument
 const&, char const*, char const*, int) (+0x69) [0x7f9b79b7ba59]
        (2) libicinga.so: 
icinga::ExternalCommandProcessor::DisableSvcNotifications(double, 
std::vector<icinga::String, std::allocator<icinga::String> > const&) (+0x1e4) 
[0x7f9b79ad3054]
        (3) libicinga.so: icinga::ExternalCommandProcessor::Execute(double, 
icinga::String const&, std::vector<icinga::String, 
std::allocator<icinga::String> > const&) (+0x1e8) [0x7f9b79b53238]
        (4) libicinga.so: 
icinga::ExternalCommandProcessor::Execute(icinga::String const&) (+0x1d3) 
[0x7f9b79b53b83]
        (5) libcompat.so: 
icinga::ExternalCommandListener::CommandPipeThread(icinga::String const&) 
(+0x299) [0x7f9b79238f49]
        (6) /usr/lib64/libboost_thread.so.1.53.0() [0x33cc60c5c3]
        (7) /lib64/libpthread.so.0() [0x33c5407a51]
        (8) libc.so.6: clone (+0x6d) [0x33c4ce893d]


In the icingaweb2 dashboard, the ProcessCheck instance details look like this:

ProcessCheck{ args = "-bl -q15m" process = "/usr/lib/sendmail" }

But in the icinga2.log error above, they look like this:

ProcessCheck{\n      args = "-bl -q15m"\n    process = "/usr/lib/sendmail"\n}

This issue occurs for each service generated by the above "apply Service". I've 
done several of these for different types of services and all the "Feature 
Commands" fail with the same type of error. Services, like ping4, work fine.

Any ideas?

Thanks,
Phil.
_______________________________________________
icinga-users mailing list
icinga-users@lists.icinga.org
https://lists.icinga.org/mailman/listinfo/icinga-users

Reply via email to