]> granicus.if.org Git - icinga2/blob - itl/plugins-contrib.d/logmanagement.conf
1cd7f2a2285a60f80227380fb09af4127f8d38ae
[icinga2] / itl / plugins-contrib.d / logmanagement.conf
1 /******************************************************************************
2  * Icinga 2                                                                   *
3  * Copyright (C) 2012-2017 Icinga Development Team (https://www.icinga.com/)  *
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 object CheckCommand "logstash" {
21         import "ipv4-or-ipv6"
22         command = [ PluginContribDir + "/check_logstash" ]
23
24         arguments = {
25                 "-H" = {
26                         value = "$logstash_hostname$"
27                         description = "Hostname where Logstash is running"
28                 }
29                 "-p" = {
30                         value = "$logstash_port$"
31                         description = "Port where Logstash is listening for API requests"
32                 }
33                 "--file-descriptor-threshold-warn" = {
34                         value = "$logstash_filedesc_warn$"
35                         description = "Warning threshold of file descriptor usage in percent"
36                 }
37                 "--file-descriptor-threshold-crit" = {
38                         value = "$logstash_filedesc_crit$"
39                         description = "Critical threshold of file descriptor usage in percent"
40                 }
41                 "--heap-usage-threshold-warn" = {
42                         value = "$logstash_heap_warn$"
43                         description = "Warning threshold of heap usage in percent"
44                 }
45                 "--heap-usage-threshold-crit" = {
46                         value = "$logstash_heap_crit$"
47                         description = "Critical threshold of heap usage in percent"
48                 }
49                 "--inflight-events-warn" = {
50                         value = "$logstash_inflight_warn$"
51                         description = "Warning threshold of inflight events"
52                 }
53                 "--inflight-events-crit" = {
54                         value = "$logstash_inflight_crit$"
55                         description = "Critical threshold of inflight events"
56                 }
57                 "--cpu-usage-threshold-warn" = {
58                         value = "$logstash_cpu_warn$"
59                         description = "Warning threshold for cpu usage in percent"
60                 }
61                 "--cpu-usage-threshold-crit" = {
62                         value = "$logstash_cpu_crit$"
63                         description = "Critical threshold for cpu usage in percent"
64                 }
65
66         }
67         vars.logstash_hostname = "$check_address$"
68         vars.logstash_port = 9600
69         vars.logstash_filedesc_warn = 85
70         vars.logstash_filedesc_crit = 95
71         vars.logstash_heap_warn = 70
72         vars.logstash_heap_crit = 80
73 }