]> granicus.if.org Git - icinga2/blob - itl/command-nscp-local.conf
Add the --load-all and --log options for nscp-local
[icinga2] / itl / command-nscp-local.conf
1 /******************************************************************************
2  * Icinga 2                                                                   *
3  * Copyright (C) 2012-2015 Icinga Development Team (http://www.icinga.org)    *
4  *                                                                            *
5  * This program is free software; you can redistribute it and/or              *
6  * modify it under the terms of the GNU General Public License                *
7  * as published by the Free Software Foundation; either version 2             *
8  * of the License, or (at your option) any later version.                     *
9  *                                                                            *
10  * This program is distributed in the hope that it will be useful,            *
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of             *
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the              *
13  * GNU General Public License for more details.                               *
14  *                                                                            *
15  * You should have received a copy of the GNU General Public License          *
16  * along with this program; if not, write to the Free Software Foundation     *
17  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA.             *
18  ******************************************************************************/
19
20 if (!globals.contains("NscpPath")) {
21         NscpPath = msi_get_component_path("{5C45463A-4AE9-4325-96DB-6E239C034F93}")
22 }
23
24 object CheckCommand "nscp-local" {
25         import  "plugin-check-command"
26
27         command = [ NscpPath, "client" ]
28
29         arguments = {
30                 "--log" = "$nscp_log_level$"
31                 "--load-all" = { set_if ="$nscp_load_all$" }
32                 "-q" = {
33                         value = "$nscp_query$"
34                         required = true
35                 }
36                 "-b" = {
37                         set_if = "$nscp_boot$"
38                 }
39                 "-a" = "$nscp_arguments$"
40         }
41
42         vars.nscp_path = {{ NscpPath }}
43         vars.nscp_log_level = "critical"
44         vars.nscp_load_all = true
45         vars.nscp_boot = true
46 }
47
48 object CheckCommand "nscp-local-cpu" {
49         import  "nscp-local"
50
51         vars.nscp_query = "check_cpu"
52 }
53
54 object CheckCommand "nscp-local-memory" {
55         import  "nscp-local"
56
57         vars.nscp_query = "check_memory"
58 }
59
60 object CheckCommand "nscp-local-os-version" {
61         import  "nscp-local"
62
63         vars.nscp_query = "check_os_version"
64 }
65
66 object CheckCommand "nscp-local-pagefile" {
67         import  "nscp-local"
68
69         vars.nscp_query = "check_pagefile"
70 }
71
72 object CheckCommand "nscp-local-process" {
73         import  "nscp-local"
74
75         vars.nscp_query = "check_process"
76 }
77
78 object CheckCommand "nscp-local-service" {
79         import  "nscp-local"
80
81         vars.nscp_query = "check_service"
82 }
83
84 object CheckCommand "nscp-local-uptime" {
85         import  "nscp-local"
86
87         vars.nscp_query = "check_uptime"
88 }
89
90 object CheckCommand "nscp-local-version" {
91         import  "nscp-local"
92
93         vars.nscp_query = "check_version"
94 }
95
96 object CheckCommand "nscp-local-disk" {
97         import "nscp-local"
98
99         vars.nscp_query = "check_drivesize"
100 }