Update generated files
This commit is contained in:
parent
0fc9123310
commit
0f058e5bff
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
|
@ -223,6 +223,14 @@ output.elasticsearch:
|
|||
# Path to the Elasticsearch 2.x version of the template file.
|
||||
#template.versions.2x.path: "${path.config}/icingabeat.template-es2x.json"
|
||||
|
||||
# If set to true, icingabeat checks the Elasticsearch version at connect time, and if it
|
||||
# is 6.x, it loads the file specified by the template.versions.6x.path setting. The
|
||||
# default is true.
|
||||
#template.versions.6x.enabled: true
|
||||
|
||||
# Path to the Elasticsearch 6.x version of the template file.
|
||||
#template.versions.6x.path: "${path.config}/icingabeat.template-es6x.json"
|
||||
|
||||
# Use SSL settings for HTTPS. Default is true.
|
||||
#ssl.enabled: true
|
||||
|
||||
|
@ -255,6 +263,10 @@ output.elasticsearch:
|
|||
# Configure curve types for ECDHE based cipher suites
|
||||
#ssl.curve_types: []
|
||||
|
||||
# Configure what types of renegotiation are supported. Valid options are
|
||||
# never, once, and freely. Default is never.
|
||||
#ssl.renegotiation: never
|
||||
|
||||
|
||||
#----------------------------- Logstash output ---------------------------------
|
||||
#output.logstash:
|
||||
|
@ -277,6 +289,11 @@ output.elasticsearch:
|
|||
# new batches.
|
||||
#pipelining: 0
|
||||
|
||||
# If enabled only a subset of events in a batch of events is transferred per
|
||||
# transaction. The number of events to be sent increases up to `bulk_max_size`
|
||||
# if no error is encountered.
|
||||
#slow_start: false
|
||||
|
||||
# Optional index name. The default index name is set to name of the beat
|
||||
# in all lowercase.
|
||||
#index: 'icingabeat'
|
||||
|
@ -319,6 +336,10 @@ output.elasticsearch:
|
|||
# Configure curve types for ECDHE based cipher suites
|
||||
#ssl.curve_types: []
|
||||
|
||||
# Configure what types of renegotiation are supported. Valid options are
|
||||
# never, once, and freely. Default is never.
|
||||
#ssl.renegotiation: never
|
||||
|
||||
#------------------------------- Kafka output ----------------------------------
|
||||
#output.kafka:
|
||||
# Boolean flag to enable or disable the output module.
|
||||
|
@ -454,6 +475,10 @@ output.elasticsearch:
|
|||
# Configure curve types for ECDHE based cipher suites
|
||||
#ssl.curve_types: []
|
||||
|
||||
# Configure what types of renegotiation are supported. Valid options are
|
||||
# never, once, and freely. Default is never.
|
||||
#ssl.renegotiation: never
|
||||
|
||||
#------------------------------- Redis output ----------------------------------
|
||||
#output.redis:
|
||||
# Boolean flag to enable or disable the output module.
|
||||
|
@ -551,6 +576,10 @@ output.elasticsearch:
|
|||
# Configure curve types for ECDHE based cipher suites
|
||||
#ssl.curve_types: []
|
||||
|
||||
# Configure what types of renegotiation are supported. Valid options are
|
||||
# never, once, and freely. Default is never.
|
||||
#ssl.renegotiation: never
|
||||
|
||||
|
||||
#------------------------------- File output -----------------------------------
|
||||
#output.file:
|
||||
|
@ -693,3 +722,6 @@ logging.files:
|
|||
# Number of rotated log files to keep. Oldest files will be deleted first.
|
||||
#keepfiles: 7
|
||||
|
||||
# The permissions mask to apply when rotating log files. The default value is 0600.
|
||||
# Must be a valid Unix-style file permissions mask expressed in octal notation.
|
||||
#permissions: 0600
|
||||
|
|
|
@ -7,7 +7,7 @@
|
|||
}
|
||||
},
|
||||
"_meta": {
|
||||
"version": "1.1.0"
|
||||
"version": "5.6.6"
|
||||
},
|
||||
"date_detection": false,
|
||||
"dynamic_templates": [
|
||||
|
@ -338,9 +338,6 @@
|
|||
"expiry": {
|
||||
"type": "date"
|
||||
},
|
||||
"fields": {
|
||||
"properties": {}
|
||||
},
|
||||
"host": {
|
||||
"ignore_above": 1024,
|
||||
"index": "not_analyzed",
|
||||
|
|
|
@ -0,0 +1,606 @@
|
|||
{
|
||||
"mappings": {
|
||||
"_default_": {
|
||||
"_meta": {
|
||||
"version": "5.6.6"
|
||||
},
|
||||
"date_detection": false,
|
||||
"dynamic_templates": [
|
||||
{
|
||||
"strings_as_keyword": {
|
||||
"mapping": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"match_mapping_type": "string"
|
||||
}
|
||||
}
|
||||
],
|
||||
"properties": {
|
||||
"@timestamp": {
|
||||
"type": "date"
|
||||
},
|
||||
"acknowledgement_type": {
|
||||
"type": "long"
|
||||
},
|
||||
"author": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"beat": {
|
||||
"properties": {
|
||||
"hostname": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"name": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"version": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
}
|
||||
}
|
||||
},
|
||||
"check_result": {
|
||||
"properties": {
|
||||
"active": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"check_source": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"command": {
|
||||
"norms": false,
|
||||
"type": "text"
|
||||
},
|
||||
"execution_end": {
|
||||
"type": "date"
|
||||
},
|
||||
"execution_start": {
|
||||
"type": "date"
|
||||
},
|
||||
"exit_status": {
|
||||
"type": "long"
|
||||
},
|
||||
"output": {
|
||||
"norms": false,
|
||||
"type": "text"
|
||||
},
|
||||
"performance_data": {
|
||||
"norms": false,
|
||||
"type": "text"
|
||||
},
|
||||
"schedule_end": {
|
||||
"type": "date"
|
||||
},
|
||||
"schedule_start": {
|
||||
"type": "date"
|
||||
},
|
||||
"state": {
|
||||
"type": "long"
|
||||
},
|
||||
"type": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"vars_after": {
|
||||
"properties": {
|
||||
"attempt": {
|
||||
"type": "long"
|
||||
},
|
||||
"reachable": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"state": {
|
||||
"type": "long"
|
||||
},
|
||||
"state_type": {
|
||||
"type": "long"
|
||||
}
|
||||
}
|
||||
},
|
||||
"vars_before": {
|
||||
"properties": {
|
||||
"attempt": {
|
||||
"type": "long"
|
||||
},
|
||||
"reachable": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"state": {
|
||||
"type": "long"
|
||||
},
|
||||
"state_type": {
|
||||
"type": "long"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"comment": {
|
||||
"properties": {
|
||||
"__name": {
|
||||
"norms": false,
|
||||
"type": "text"
|
||||
},
|
||||
"author": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"entry_time": {
|
||||
"type": "date"
|
||||
},
|
||||
"entry_type": {
|
||||
"type": "long"
|
||||
},
|
||||
"expire_time": {
|
||||
"type": "date"
|
||||
},
|
||||
"host_name": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"legacy_id": {
|
||||
"type": "long"
|
||||
},
|
||||
"name": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"package": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"service_name": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"templates": {
|
||||
"norms": false,
|
||||
"type": "text"
|
||||
},
|
||||
"text": {
|
||||
"norms": false,
|
||||
"type": "text"
|
||||
},
|
||||
"type": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"version": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"zone": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
}
|
||||
}
|
||||
},
|
||||
"downtime": {
|
||||
"properties": {
|
||||
"__name": {
|
||||
"norms": false,
|
||||
"type": "text"
|
||||
},
|
||||
"author": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"comment": {
|
||||
"norms": false,
|
||||
"type": "text"
|
||||
},
|
||||
"config_owner": {
|
||||
"norms": false,
|
||||
"type": "text"
|
||||
},
|
||||
"duration": {
|
||||
"type": "long"
|
||||
},
|
||||
"end_time": {
|
||||
"type": "date"
|
||||
},
|
||||
"entry_time": {
|
||||
"type": "date"
|
||||
},
|
||||
"fixed": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"host_name": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"legacy_id": {
|
||||
"type": "long"
|
||||
},
|
||||
"name": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"package": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"scheduled_by": {
|
||||
"norms": false,
|
||||
"type": "text"
|
||||
},
|
||||
"service_name": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"start_time": {
|
||||
"type": "date"
|
||||
},
|
||||
"templates": {
|
||||
"norms": false,
|
||||
"type": "text"
|
||||
},
|
||||
"trigger_time": {
|
||||
"type": "date"
|
||||
},
|
||||
"triggered_by": {
|
||||
"norms": false,
|
||||
"type": "text"
|
||||
},
|
||||
"triggers": {
|
||||
"norms": false,
|
||||
"type": "text"
|
||||
},
|
||||
"type": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"version": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"was_cancelled": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"zone": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
}
|
||||
}
|
||||
},
|
||||
"expiry": {
|
||||
"type": "date"
|
||||
},
|
||||
"host": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"meta": {
|
||||
"properties": {
|
||||
"cloud": {
|
||||
"properties": {
|
||||
"availability_zone": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"instance_id": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"machine_type": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"project_id": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"provider": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"region": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"notification_type": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"notify": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"service": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"state": {
|
||||
"type": "long"
|
||||
},
|
||||
"state_type": {
|
||||
"type": "long"
|
||||
},
|
||||
"status": {
|
||||
"properties": {
|
||||
"active_host_checks": {
|
||||
"type": "long"
|
||||
},
|
||||
"active_host_checks_15min": {
|
||||
"type": "long"
|
||||
},
|
||||
"active_host_checks_1min": {
|
||||
"type": "long"
|
||||
},
|
||||
"active_host_checks_5min": {
|
||||
"type": "long"
|
||||
},
|
||||
"active_service_checks": {
|
||||
"type": "long"
|
||||
},
|
||||
"active_service_checks_15min": {
|
||||
"type": "long"
|
||||
},
|
||||
"active_service_checks_1min": {
|
||||
"type": "long"
|
||||
},
|
||||
"active_service_checks_5min": {
|
||||
"type": "long"
|
||||
},
|
||||
"api": {
|
||||
"properties": {
|
||||
"identity": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"num_conn_endpoints": {
|
||||
"type": "long"
|
||||
},
|
||||
"num_endpoints": {
|
||||
"type": "long"
|
||||
},
|
||||
"num_not_conn_endpoints": {
|
||||
"type": "long"
|
||||
},
|
||||
"zones": {
|
||||
"properties": {
|
||||
"demo": {
|
||||
"properties": {
|
||||
"client_log_lag": {
|
||||
"type": "long"
|
||||
},
|
||||
"connected": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"endpoints": {
|
||||
"norms": false,
|
||||
"type": "text"
|
||||
},
|
||||
"parent_zone": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"avg_execution_time": {
|
||||
"type": "long"
|
||||
},
|
||||
"avg_latency": {
|
||||
"type": "long"
|
||||
},
|
||||
"checkercomponent": {
|
||||
"properties": {
|
||||
"checker": {
|
||||
"properties": {
|
||||
"idle": {
|
||||
"type": "long"
|
||||
},
|
||||
"pending": {
|
||||
"type": "long"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"filelogger": {
|
||||
"properties": {
|
||||
"main-log": {
|
||||
"type": "long"
|
||||
}
|
||||
}
|
||||
},
|
||||
"icingaapplication": {
|
||||
"properties": {
|
||||
"app": {
|
||||
"properties": {
|
||||
"enable_event_handlers": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"enable_flapping": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"enable_host_checks": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"enable_notifications": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"enable_perfdata": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"enable_service_checks": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"node_name": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"pid": {
|
||||
"type": "long"
|
||||
},
|
||||
"program_start": {
|
||||
"type": "long"
|
||||
},
|
||||
"version": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"idomysqlconnection": {
|
||||
"properties": {
|
||||
"ido-mysql": {
|
||||
"properties": {
|
||||
"connected": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"instance_name": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"query_queue_items": {
|
||||
"type": "long"
|
||||
},
|
||||
"version": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"max_execution_time": {
|
||||
"type": "long"
|
||||
},
|
||||
"max_latency": {
|
||||
"type": "long"
|
||||
},
|
||||
"min_execution_time": {
|
||||
"type": "long"
|
||||
},
|
||||
"min_latency": {
|
||||
"type": "long"
|
||||
},
|
||||
"notificationcomponent": {
|
||||
"properties": {
|
||||
"notification": {
|
||||
"type": "long"
|
||||
}
|
||||
}
|
||||
},
|
||||
"num_hosts_acknowledged": {
|
||||
"type": "long"
|
||||
},
|
||||
"num_hosts_down": {
|
||||
"type": "long"
|
||||
},
|
||||
"num_hosts_flapping": {
|
||||
"type": "long"
|
||||
},
|
||||
"num_hosts_in_downtime": {
|
||||
"type": "long"
|
||||
},
|
||||
"num_hosts_pending": {
|
||||
"type": "long"
|
||||
},
|
||||
"num_hosts_unreachable": {
|
||||
"type": "long"
|
||||
},
|
||||
"num_hosts_up": {
|
||||
"type": "long"
|
||||
},
|
||||
"num_services_acknowledged": {
|
||||
"type": "long"
|
||||
},
|
||||
"num_services_critical": {
|
||||
"type": "long"
|
||||
},
|
||||
"num_services_flapping": {
|
||||
"type": "long"
|
||||
},
|
||||
"num_services_in_downtime": {
|
||||
"type": "long"
|
||||
},
|
||||
"num_services_ok": {
|
||||
"type": "long"
|
||||
},
|
||||
"num_services_pending": {
|
||||
"type": "long"
|
||||
},
|
||||
"num_services_unknown": {
|
||||
"type": "long"
|
||||
},
|
||||
"num_services_unreachable": {
|
||||
"type": "long"
|
||||
},
|
||||
"num_services_warning": {
|
||||
"type": "long"
|
||||
},
|
||||
"passive_host_checks": {
|
||||
"type": "long"
|
||||
},
|
||||
"passive_host_checks_15min": {
|
||||
"type": "long"
|
||||
},
|
||||
"passive_host_checks_1min": {
|
||||
"type": "long"
|
||||
},
|
||||
"passive_host_checks_5min": {
|
||||
"type": "long"
|
||||
},
|
||||
"passive_service_checks": {
|
||||
"type": "long"
|
||||
},
|
||||
"passive_service_checks_15min": {
|
||||
"type": "long"
|
||||
},
|
||||
"passive_service_checks_1min": {
|
||||
"type": "long"
|
||||
},
|
||||
"passive_service_checks_5min": {
|
||||
"type": "long"
|
||||
},
|
||||
"uptime": {
|
||||
"type": "long"
|
||||
}
|
||||
}
|
||||
},
|
||||
"tags": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"text": {
|
||||
"norms": false,
|
||||
"type": "text"
|
||||
},
|
||||
"timestamp": {
|
||||
"type": "date"
|
||||
},
|
||||
"type": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"users": {
|
||||
"norms": false,
|
||||
"type": "text"
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"order": 0,
|
||||
"settings": {
|
||||
"index.mapping.total_fields.limit": 10000,
|
||||
"index.refresh_interval": "5s"
|
||||
},
|
||||
"template": "icingabeat-*"
|
||||
}
|
|
@ -1,11 +1,8 @@
|
|||
{
|
||||
"mappings": {
|
||||
"_default_": {
|
||||
"_all": {
|
||||
"norms": false
|
||||
},
|
||||
"_meta": {
|
||||
"version": "1.1.0"
|
||||
"version": "5.6.6"
|
||||
},
|
||||
"date_detection": false,
|
||||
"dynamic_templates": [
|
||||
|
@ -274,9 +271,6 @@
|
|||
"expiry": {
|
||||
"type": "date"
|
||||
},
|
||||
"fields": {
|
||||
"properties": {}
|
||||
},
|
||||
"host": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
|
|
Loading…
Reference in New Issue