--- apiVersion: v1 kind: ConfigMap metadata: name: logging-configmap namespace: logstash data: logstash.yml: | http.host: "0.0.0.0" path.config: /usr/share/logstash/pipeline logstash.conf: | input { beats { port => 5044 } } filter { if "metricbeat" in [tags] { date { match => ["timestamp", "MMM dd HH:mm:ss"] target => "@timestamp" add_tag => [ "parsed_time" ] } } } output { if "metricbeat" in [tags] { opensearch { hosts => ["${OPENSEARCH_DOMAIN}"] user => "${OPENSEARCH_USER}" password => "${OPENSEARCH_PWD}" index => "metricbeat-%{+yyyy.MM.dd}" ssl => true ssl_certificate_verification => false template_overwrite => true template => "/usr/share/logstash/config/metricbeat-template.json" template_name => "metricbeat_logs" } } } jvm.options: | ## JVM configuration # Xms represents the initial size of total heap space # Xmx represents the maximum size of total heap space -Xms1g -Xmx1g ################################################################ ## Expert settings ################################################################ ## ## All settings below this section are considered ## expert settings. Don't tamper with them unless ## you understand what you are doing ## ################################################################ ## GC configuration # -XX:+UseConcMarkSweepGC # -XX:CMSInitiatingOccupancyFraction=75 # -XX:+UseCMSInitiatingOccupancyOnly # -XX:MaxRAMFraction=2 ## Locale # Set the locale language #-Duser.language=en # Set the locale country #-Duser.country=US # Set the locale variant, if any #-Duser.variant= ## basic # set the I/O temp directory #-Djava.io.tmpdir=$HOME # set to headless, just in case -Djava.awt.headless=true # ensure UTF-8 encoding by default (e.g. filenames) -Dfile.encoding=UTF-8 # use our provided JNA always versus the system one #-Djna.nosys=true # Turn on JRuby invokedynamic -Djruby.compile.invokedynamic=true # Force Compilation -Djruby.jit.threshold=0 ## heap dumps # generate a heap dump when an allocation from the Java heap fails # heap dumps are created in the working directory of the JVM -XX:+HeapDumpOnOutOfMemoryError # specify an alternative path for heap dumps # ensure the directory exists and has sufficient space #-XX:HeapDumpPath=${LOGSTASH_HOME}/heapdump.hprof ## GC logging #-XX:+PrintGCDetails #-XX:+PrintGCTimeStamps #-XX:+PrintGCDateStamps #-XX:+PrintClassHistogram #-XX:+PrintTenuringDistribution #-XX:+PrintGCApplicationStoppedTime # log GC status to a file with time stamps # ensure the directory exists #-Xloggc:${LS_GC_LOG_FILE} # Entropy source for randomness -Djava.security.egd=file:/dev/urandom metricbeat-template.json: | { "order": 1, "index_patterns": [ "metricbeat-*" ], "settings": { "index": { "mapping": { "total_fields": { "limit": "10000" } }, "refresh_interval": "5s" } }, "mappings": { "dynamic_templates": [ { "labels": { "mapping": { "type": "keyword" }, "match_mapping_type": "string", "path_match": "labels.*" } }, { "container.labels": { "mapping": { "type": "keyword" }, "match_mapping_type": "string", "path_match": "container.labels.*" } }, { "fields": { "mapping": { "type": "keyword" }, "match_mapping_type": "string", "path_match": "fields.*" } }, { "docker.container.labels": { "mapping": { "type": "keyword" }, "match_mapping_type": "string", "path_match": "docker.container.labels.*" } }, { "docker.cpu.core.*.pct": { "match_mapping_type": "*", "path_match": "docker.cpu.core.*.pct", "mapping": { "type": "scaled_float", "scaling_factor": 1000 } } }, { "docker.cpu.core.*.ticks": { "mapping": { "type": "long" }, "match_mapping_type": "long", "path_match": "docker.cpu.core.*.ticks" } }, { "docker.event.actor.attributes": { "mapping": { "type": "keyword" }, "match_mapping_type": "string", "path_match": "docker.event.actor.attributes.*" } }, { "docker.image.labels": { "mapping": { "type": "keyword" }, "match_mapping_type": "string", "path_match": "docker.image.labels.*" } }, { "etcd.disk.wal_fsync_duration.ns.bucket.*": { "mapping": { "type": "long" }, "match_mapping_type": "long", "path_match": "etcd.disk.wal_fsync_duration.ns.bucket.*" } }, { "etcd.disk.backend_commit_duration.ns.bucket.*": { "mapping": { "type": "long" }, "match_mapping_type": "long", "path_match": "etcd.disk.backend_commit_duration.ns.bucket.*" } }, { "kubernetes.apiserver.request.latency.bucket.*": { "mapping": { "type": "long" }, "match_mapping_type": "long", "path_match": "kubernetes.apiserver.request.latency.bucket.*" } }, { "kubernetes.controllermanager.http.request.duration.us.percentile.*": { "mapping": { "type": "double" }, "match_mapping_type": "double", "path_match": "kubernetes.controllermanager.http.request.duration.us.percentile.*" } }, { "kubernetes.controllermanager.http.request.size.bytes.percentile.*": { "match_mapping_type": "long", "path_match": "kubernetes.controllermanager.http.request.size.bytes.percentile.*", "mapping": { "type": "long" } } }, { "kubernetes.controllermanager.http.response.size.bytes.percentile.*": { "mapping": { "type": "long" }, "match_mapping_type": "long", "path_match": "kubernetes.controllermanager.http.response.size.bytes.percentile.*" } }, { "kubernetes.proxy.http.request.duration.us.percentile.*": { "mapping": { "type": "double" }, "match_mapping_type": "double", "path_match": "kubernetes.proxy.http.request.duration.us.percentile.*" } }, { "kubernetes.proxy.http.request.size.bytes.percentile.*": { "match_mapping_type": "long", "path_match": "kubernetes.proxy.http.request.size.bytes.percentile.*", "mapping": { "type": "long" } } }, { "kubernetes.proxy.http.response.size.bytes.percentile.*": { "match_mapping_type": "long", "path_match": "kubernetes.proxy.http.response.size.bytes.percentile.*", "mapping": { "type": "long" } } }, { "kubernetes.proxy.sync.rules.duration.us.bucket.*": { "match_mapping_type": "long", "path_match": "kubernetes.proxy.sync.rules.duration.us.bucket.*", "mapping": { "type": "long" } } }, { "kubernetes.proxy.sync.networkprogramming.duration.us.bucket.*": { "path_match": "kubernetes.proxy.sync.networkprogramming.duration.us.bucket.*", "mapping": { "type": "long" }, "match_mapping_type": "long" } }, { "kubernetes.scheduler.http.request.duration.us.percentile.*": { "path_match": "kubernetes.scheduler.http.request.duration.us.percentile.*", "mapping": { "type": "double" }, "match_mapping_type": "double" } }, { "kubernetes.scheduler.http.request.size.bytes.percentile.*": { "mapping": { "type": "long" }, "match_mapping_type": "long", "path_match": "kubernetes.scheduler.http.request.size.bytes.percentile.*" } }, { "kubernetes.scheduler.http.response.size.bytes.percentile.*": { "mapping": { "type": "long" }, "match_mapping_type": "long", "path_match": "kubernetes.scheduler.http.response.size.bytes.percentile.*" } }, { "kubernetes.scheduler.scheduling.e2e.duration.us.bucket.*": { "match_mapping_type": "long", "path_match": "kubernetes.scheduler.scheduling.e2e.duration.us.bucket.*", "mapping": { "type": "long" } } }, { "kubernetes.scheduler.scheduling.duration.seconds.percentile.*": { "mapping": { "type": "double" }, "match_mapping_type": "double", "path_match": "kubernetes.scheduler.scheduling.duration.seconds.percentile.*" } }, { "munin.metrics.*": { "mapping": { "type": "double" }, "match_mapping_type": "*", "path_match": "munin.metrics.*" } }, { "prometheus.labels.*": { "match_mapping_type": "string", "path_match": "prometheus.labels.*", "mapping": { "type": "keyword" } } }, { "prometheus.metrics.*": { "mapping": { "type": "double" }, "match_mapping_type": "*", "path_match": "prometheus.metrics.*" } }, { "system.process.env": { "mapping": { "type": "keyword" }, "match_mapping_type": "string", "path_match": "system.process.env.*" } }, { "system.process.cgroup.cpuacct.percpu": { "mapping": { "type": "long" }, "match_mapping_type": "long", "path_match": "system.process.cgroup.cpuacct.percpu.*" } }, { "system.raid.disks.states.*": { "mapping": { "type": "keyword" }, "match_mapping_type": "string", "path_match": "system.raid.disks.states.*" } }, { "traefik.health.response.status_codes.*": { "path_match": "traefik.health.response.status_codes.*", "mapping": { "type": "long" }, "match_mapping_type": "long" } }, { "vsphere.virtualmachine.custom_fields": { "mapping": { "type": "keyword" }, "match_mapping_type": "string", "path_match": "vsphere.virtualmachine.custom_fields.*" } }, { "strings_as_keyword": { "mapping": { "type": "keyword", "ignore_above": 256 }, "match_mapping_type": "string" } } ], "date_detection": false, "properties": { "network": { "properties": { "direction": { "type": "keyword", "ignore_above": 256 }, "name": { "type": "keyword", "ignore_above": 256 }, "transport": { "type": "keyword", "ignore_above": 256 }, "application": { "type": "keyword", "ignore_above": 256 }, "bytes": { "type": "long" }, "community_id": { "type": "keyword", "ignore_above": 256 }, "forwarded_ip": { "type": "ip" }, "iana_number": { "type": "keyword", "ignore_above": 256 }, "packets": { "type": "long" }, "protocol": { "type": "keyword", "ignore_above": 256 }, "type": { "type": "keyword", "ignore_above": 256 } } }, "beat": { "properties": { "type": { "ignore_above": 256, "type": "keyword" }, "state": { "properties": { "management": { "properties": { "enabled": { "type": "boolean" } } }, "module": { "properties": { "count": { "type": "long" } } }, "output": { "properties": { "name": { "type": "keyword", "ignore_above": 256 } } }, "queue": { "properties": { "name": { "type": "keyword", "ignore_above": 256 } } } } }, "stats": { "properties": { "uptime": { "properties": { "ms": { "type": "long" } } }, "runtime": { "properties": { "goroutines": { "type": "long" } } }, "libbeat": { "properties": { "output": { "properties": { "type": { "type": "keyword", "ignore_above": 256 }, "events": { "properties": { "acked": { "type": "long" }, "active": { "type": "long" }, "batches": { "type": "long" }, "dropped": { "type": "long" }, "duplicates": { "type": "long" }, "failed": { "type": "long" }, "toomany": { "type": "long" }, "total": { "type": "long" } } }, "read": { "properties": { "errors": { "type": "long" }, "bytes": { "type": "long" } } }, "write": { "properties": { "bytes": { "type": "long" }, "errors": { "type": "long" } } } } } } } } }, "id": { "type": "keyword", "ignore_above": 256 } } }, "elasticsearch": { "properties": { "cluster": { "properties": { "state": { "properties": { "id": { "type": "keyword", "ignore_above": 256 } } }, "stats": { "properties": { "status": { "type": "keyword", "ignore_above": 256 }, "nodes": { "properties": { "count": { "type": "long" }, "master": { "type": "long" }, "data": { "type": "long" } } }, "indices": { "properties": { "shards": { "properties": { "count": { "type": "long" }, "primaries": { "type": "long" } } }, "fielddata": { "properties": { "memory": { "properties": { "bytes": { "type": "long" } } } } }, "count": { "type": "long" } } } } }, "pending_task": { "properties": { "insert_order": { "type": "long" }, "priority": { "type": "long" }, "source": { "type": "keyword", "ignore_above": 256 }, "time_in_queue": { "properties": { "ms": { "type": "long" } } } } }, "name": { "type": "keyword", "ignore_above": 256 }, "id": { "type": "keyword", "ignore_above": 256 } } }, "node": { "properties": { "id": { "type": "keyword", "ignore_above": 256 }, "name": { "type": "keyword", "ignore_above": 256 }, "version": { "type": "keyword", "ignore_above": 256 }, "jvm": { "properties": { "version": { "type": "keyword", "ignore_above": 256 }, "memory": { "properties": { "heap": { "properties": { "init": { "properties": { "bytes": { "type": "long" } } }, "max": { "properties": { "bytes": { "type": "long" } } } } }, "nonheap": { "properties": { "max": { "properties": { "bytes": { "type": "long" } } }, "init": { "properties": { "bytes": { "type": "long" } } } } } } } } }, "process": { "properties": { "mlockall": { "type": "boolean" } } }, "stats": { "properties": { "fs": { "properties": { "summary": { "properties": { "free": { "properties": { "bytes": { "type": "long" } } }, "available": { "properties": { "bytes": { "type": "long" } } }, "total": { "properties": { "bytes": { "type": "long" } } } } } } }, "indices": { "properties": { "docs": { "properties": { "count": { "type": "long" }, "deleted": { "type": "long" } } }, "segments": { "properties": { "count": { "type": "long" }, "memory": { "properties": { "bytes": { "type": "long" } } } } }, "store": { "properties": { "size": { "properties": { "bytes": { "type": "long" } } } } } } }, "jvm": { "properties": { "mem": { "properties": { "pools": { "properties": { "old": { "properties": { "peak_max": { "properties": { "bytes": { "type": "long" } } }, "used": { "properties": { "bytes": { "type": "long" } } }, "max": { "properties": { "bytes": { "type": "long" } } }, "peak": { "properties": { "bytes": { "type": "long" } } } } }, "young": { "properties": { "max": { "properties": { "bytes": { "type": "long" } } }, "peak": { "properties": { "bytes": { "type": "long" } } }, "peak_max": { "properties": { "bytes": { "type": "long" } } }, "used": { "properties": { "bytes": { "type": "long" } } } } }, "survivor": { "properties": { "max": { "properties": { "bytes": { "type": "long" } } }, "peak": { "properties": { "bytes": { "type": "long" } } }, "peak_max": { "properties": { "bytes": { "type": "long" } } }, "used": { "properties": { "bytes": { "type": "long" } } } } } } } } }, "gc": { "properties": { "collectors": { "properties": { "old": { "properties": { "collection": { "properties": { "count": { "type": "long" }, "ms": { "type": "long" } } } } }, "young": { "properties": { "collection": { "properties": { "count": { "type": "long" }, "ms": { "type": "long" } } } } } } } } } } } } } } }, "ccr": { "properties": { "leader": { "properties": { "index": { "type": "keyword", "ignore_above": 256 }, "max_seq_no": { "type": "long" } } }, "follower": { "properties": { "shard": { "properties": { "number": { "type": "long" } } }, "operations_written": { "type": "long" }, "time_since_last_read": { "properties": { "ms": { "type": "long" } } }, "global_checkpoint": { "type": "long" }, "index": { "type": "keyword", "ignore_above": 256 } } } } }, "index": { "properties": { "name": { "type": "keyword", "ignore_above": 256 }, "total": { "properties": { "docs": { "properties": { "count": { "type": "long" }, "deleted": { "type": "long" } } }, "store": { "properties": { "size": { "properties": { "bytes": { "type": "long" } } } } }, "segments": { "properties": { "count": { "type": "long" }, "memory": { "properties": { "bytes": { "type": "long" } } } } } } }, "recovery": { "properties": { "type": { "type": "keyword", "ignore_above": 256 }, "primary": { "type": "boolean" }, "stage": { "type": "keyword", "ignore_above": 256 }, "target": { "properties": { "name": { "type": "keyword", "ignore_above": 256 }, "id": { "type": "keyword", "ignore_above": 256 }, "host": { "ignore_above": 256, "type": "keyword" } } }, "source": { "properties": { "id": { "type": "keyword", "ignore_above": 256 }, "host": { "type": "keyword", "ignore_above": 256 }, "name": { "ignore_above": 256, "type": "keyword" } } }, "id": { "type": "long" } } }, "summary": { "properties": { "primaries": { "properties": { "docs": { "properties": { "deleted": { "type": "long" }, "count": { "type": "long" } } }, "store": { "properties": { "size": { "properties": { "bytes": { "type": "long" } } } } }, "segments": { "properties": { "count": { "type": "long" }, "memory": { "properties": { "bytes": { "type": "long" } } } } } } }, "total": { "properties": { "docs": { "properties": { "count": { "type": "long" }, "deleted": { "type": "long" } } }, "store": { "properties": { "size": { "properties": { "bytes": { "type": "long" } } } } }, "segments": { "properties": { "count": { "type": "long" }, "memory": { "properties": { "bytes": { "type": "long" } } } } } } } } } } }, "ml": { "properties": { "job": { "properties": { "id": { "type": "keyword", "ignore_above": 256 }, "state": { "type": "keyword", "ignore_above": 256 }, "data_counts": { "properties": { "invalid_date_count": { "type": "long" }, "processed_record_count": { "type": "long" } } } } } } }, "shard": { "properties": { "relocating_node": { "properties": { "name": { "ignore_above": 256, "type": "keyword" } } }, "primary": { "type": "boolean" }, "number": { "type": "long" }, "state": { "type": "keyword", "ignore_above": 256 } } } } }, "haproxy": { "properties": { "info": { "properties": { "tasks": { "type": "long" }, "uptime": { "properties": { "sec": { "type": "long" } } }, "compress": { "properties": { "bps": { "properties": { "in": { "type": "long" }, "out": { "type": "long" }, "rate_limit": { "type": "long" } } } } }, "zlib_mem_usage": { "properties": { "value": { "type": "long" }, "max": { "type": "long" } } }, "idle": { "properties": { "pct": { "type": "scaled_float", "scaling_factor": 1000 } } }, "processes": { "type": "long" }, "run_queue": { "type": "long" }, "session": { "properties": { "rate": { "properties": { "limit": { "type": "long" }, "max": { "type": "long" }, "value": { "type": "long" } } } } }, "requests": { "properties": { "total": { "type": "long" }, "max": { "type": "long" } } }, "sockets": { "properties": { "max": { "type": "long" } } }, "ssl": { "properties": { "rate": { "properties": { "value": { "type": "long" }, "limit": { "type": "long" }, "max": { "type": "long" } } }, "frontend": { "properties": { "key_rate": { "properties": { "value": { "type": "long" }, "max": { "type": "long" } } }, "session_reuse": { "properties": { "pct": { "scaling_factor": 1000, "type": "scaled_float" } } } } }, "backend": { "properties": { "key_rate": { "properties": { "value": { "type": "long" }, "max": { "type": "long" } } } } }, "cached_lookups": { "type": "long" }, "cache_misses": { "type": "long" } } }, "process_num": { "type": "long" }, "pipes": { "properties": { "used": { "type": "long" }, "free": { "type": "long" }, "max": { "type": "long" } } }, "connection": { "properties": { "current": { "type": "long" }, "total": { "type": "long" }, "ssl": { "properties": { "max": { "type": "long" }, "current": { "type": "long" }, "total": { "type": "long" } } }, "max": { "type": "long" }, "hard_max": { "type": "long" }, "rate": { "properties": { "value": { "type": "long" }, "limit": { "type": "long" }, "max": { "type": "long" } } } } }, "memory": { "properties": { "max": { "properties": { "bytes": { "type": "long" } } } } }, "ulimit_n": { "type": "long" } } }, "stat": { "properties": { "in": { "properties": { "bytes": { "type": "long" } } }, "throttle": { "properties": { "pct": { "type": "scaled_float", "scaling_factor": 1000 } } }, "response": { "properties": { "errors": { "type": "long" }, "time": { "properties": { "avg": { "type": "long" } } }, "denied": { "type": "long" }, "http": { "properties": { "4xx": { "type": "long" }, "5xx": { "type": "long" }, "other": { "type": "long" }, "1xx": { "type": "long" }, "2xx": { "type": "long" }, "3xx": { "type": "long" } } } } }, "proxy": { "properties": { "id": { "type": "long" }, "name": { "type": "keyword", "ignore_above": 256 } } }, "tracked": { "properties": { "id": { "type": "long" } } }, "request": { "properties": { "rate": { "properties": { "value": { "type": "long" }, "max": { "type": "long" } } }, "total": { "type": "long" }, "denied": { "type": "long" }, "queued": { "properties": { "current": { "type": "long" }, "max": { "type": "long" } } }, "errors": { "type": "long" }, "redispatched": { "type": "long" }, "connection": { "properties": { "errors": { "type": "long" } } } } }, "check": { "properties": { "code": { "type": "long" }, "duration": { "type": "long" }, "health": { "properties": { "last": { "type": "keyword", "ignore_above": 256 }, "fail": { "type": "long" } } }, "agent": { "properties": { "last": { "type": "long" } } }, "failed": { "type": "long" }, "down": { "type": "long" }, "status": { "type": "keyword", "ignore_above": 256 } } }, "server": { "properties": { "active": { "type": "long" }, "backup": { "type": "long" }, "id": { "type": "long" }, "aborted": { "type": "long" } } }, "downtime": { "type": "long" }, "service_name": { "type": "keyword", "ignore_above": 256 }, "out": { "properties": { "bytes": { "type": "long" } } }, "last_change": { "type": "long" }, "queue": { "properties": { "time": { "properties": { "avg": { "type": "long" } } }, "limit": { "type": "long" } } }, "component_type": { "type": "long" }, "session": { "properties": { "current": { "type": "long" }, "max": { "type": "long" }, "limit": { "type": "long" }, "rate": { "properties": { "value": { "type": "long" }, "limit": { "type": "long" }, "max": { "type": "long" } } } } }, "client": { "properties": { "aborted": { "type": "long" } } }, "compressor": { "properties": { "in": { "properties": { "bytes": { "type": "long" } } }, "out": { "properties": { "bytes": { "type": "long" } } }, "bypassed": { "properties": { "bytes": { "type": "long" } } }, "response": { "properties": { "bytes": { "type": "long" } } } } }, "status": { "type": "keyword", "ignore_above": 256 }, "weight": { "type": "long" }, "selected": { "properties": { "total": { "type": "long" } } }, "connection": { "properties": { "total": { "type": "long" }, "retried": { "type": "long" }, "time": { "properties": { "avg": { "type": "long" } } } } } } } } }, "nats": { "properties": { "connections": { "properties": { "total": { "type": "long" } } }, "routes": { "properties": { "total": { "type": "long" } } }, "stats": { "properties": { "cores": { "type": "long" }, "total_connections": { "type": "long" }, "remotes": { "type": "long" }, "out": { "properties": { "messages": { "type": "long" }, "bytes": { "type": "long" } } }, "mem": { "properties": { "bytes": { "type": "long" } } }, "cpu": { "scaling_factor": 1000, "type": "scaled_float" }, "in": { "properties": { "bytes": { "type": "long" }, "messages": { "type": "long" } } }, "slow_consumers": { "type": "long" }, "http": { "properties": { "req_stats": { "properties": { "uri": { "properties": { "routez": { "type": "long" }, "connz": { "type": "long" }, "varz": { "type": "long" }, "subsz": { "type": "long" }, "root": { "type": "long" } } } } } } }, "uptime": { "type": "long" } } }, "subscriptions": { "properties": { "total": { "type": "long" }, "inserts": { "type": "long" }, "removes": { "type": "long" }, "matches": { "type": "long" }, "cache": { "properties": { "size": { "type": "long" }, "hit_rate": { "type": "scaled_float", "scaling_factor": 1000 }, "fanout": { "properties": { "max": { "type": "long" }, "avg": { "type": "double" } } } } } } }, "server": { "properties": { "time": { "type": "date" }, "id": { "ignore_above": 256, "type": "keyword" } } } } }, "php_fpm": { "properties": { "pool": { "properties": { "start_time": { "type": "date" }, "name": { "type": "keyword", "ignore_above": 256 }, "process_manager": { "type": "keyword", "ignore_above": 256 }, "connections": { "properties": { "accepted": { "type": "long" }, "queued": { "type": "long" }, "max_listen_queue": { "type": "long" }, "listen_queue_len": { "type": "long" } } }, "processes": { "properties": { "active": { "type": "long" }, "total": { "type": "long" }, "max_active": { "type": "long" }, "max_children_reached": { "type": "long" }, "idle": { "type": "long" } } }, "slow_requests": { "type": "long" }, "start_since": { "type": "long" } } }, "process": { "properties": { "start_since": { "type": "long" }, "requests": { "type": "long" }, "request_duration": { "type": "long" }, "script": { "type": "keyword", "ignore_above": 256 }, "last_request_cpu": { "type": "long" }, "last_request_memory": { "type": "long" }, "state": { "type": "keyword", "ignore_above": 256 }, "start_time": { "type": "date" } } } } }, "@timestamp": { "type": "date" }, "jolokia": { "properties": { "secured": { "type": "boolean" }, "agent": { "properties": { "version": { "type": "keyword", "ignore_above": 256 }, "id": { "ignore_above": 256, "type": "keyword" } } }, "server": { "properties": { "version": { "type": "keyword", "ignore_above": 256 }, "vendor": { "type": "keyword", "ignore_above": 256 }, "product": { "type": "keyword", "ignore_above": 256 } } }, "url": { "type": "keyword", "ignore_above": 256 } } }, "kafka": { "properties": { "broker": { "properties": { "id": { "type": "long" }, "address": { "type": "keyword", "ignore_above": 256 } } }, "topic": { "properties": { "name": { "type": "keyword", "ignore_above": 256 }, "error": { "properties": { "code": { "type": "long" } } } } }, "partition": { "properties": { "offset": { "properties": { "newest": { "type": "long" }, "oldest": { "type": "long" } } }, "partition": { "properties": { "is_leader": { "type": "boolean" }, "error": { "properties": { "code": { "type": "long" } } }, "id": { "type": "long" }, "leader": { "type": "long" }, "isr": { "type": "keyword", "ignore_above": 256 }, "replica": { "type": "long" }, "insync_replica": { "type": "boolean" } } }, "topic": { "properties": { "error": { "properties": { "code": { "type": "long" } } }, "name": { "type": "keyword", "ignore_above": 256 } } }, "broker": { "properties": { "id": { "type": "long" }, "address": { "type": "keyword", "ignore_above": 256 } } }, "id": { "type": "long" }, "topic_id": { "type": "keyword", "ignore_above": 256 }, "topic_broker_id": { "type": "keyword", "ignore_above": 256 } } }, "consumergroup": { "properties": { "meta": { "type": "keyword", "ignore_above": 256 }, "error": { "properties": { "code": { "type": "long" } } }, "client": { "properties": { "member_id": { "type": "keyword", "ignore_above": 256 }, "id": { "ignore_above": 256, "type": "keyword" }, "host": { "type": "keyword", "ignore_above": 256 } } }, "broker": { "properties": { "id": { "type": "long" }, "address": { "type": "keyword", "ignore_above": 256 } } }, "id": { "type": "keyword", "ignore_above": 256 }, "topic": { "type": "keyword", "ignore_above": 256 }, "partition": { "type": "long" }, "offset": { "type": "long" } } } } }, "labels": { "type": "object" }, "geo": { "properties": { "region_name": { "type": "keyword", "ignore_above": 256 }, "city_name": { "type": "keyword", "ignore_above": 256 }, "continent_name": { "ignore_above": 256, "type": "keyword" }, "country_iso_code": { "type": "keyword", "ignore_above": 256 }, "country_name": { "type": "keyword", "ignore_above": 256 }, "location": { "type": "geo_point" }, "name": { "type": "keyword", "ignore_above": 256 }, "region_iso_code": { "type": "keyword", "ignore_above": 256 } } }, "type": { "type": "keyword", "ignore_above": 256 }, "postgresql": { "properties": { "activity": { "properties": { "database": { "properties": { "oid": { "type": "long" }, "name": { "type": "keyword", "ignore_above": 256 } } }, "pid": { "type": "long" }, "user": { "properties": { "id": { "type": "long" }, "name": { "type": "keyword", "ignore_above": 256 } } }, "application_name": { "type": "keyword", "ignore_above": 256 }, "backend_start": { "type": "date" }, "state_change": { "type": "date" }, "waiting": { "type": "boolean" }, "client": { "properties": { "address": { "type": "keyword", "ignore_above": 256 }, "hostname": { "type": "keyword", "ignore_above": 256 }, "port": { "type": "long" } } }, "transaction_start": { "type": "date" }, "query_start": { "type": "date" }, "state": { "type": "keyword", "ignore_above": 256 }, "query": { "type": "keyword", "ignore_above": 256 } } }, "bgwriter": { "properties": { "checkpoints": { "properties": { "times": { "properties": { "write": { "properties": { "ms": { "type": "float" } } }, "sync": { "properties": { "ms": { "type": "float" } } } } }, "scheduled": { "type": "long" }, "requested": { "type": "long" } } }, "buffers": { "properties": { "allocated": { "type": "long" }, "checkpoints": { "type": "long" }, "clean": { "type": "long" }, "clean_full": { "type": "long" }, "backend": { "type": "long" }, "backend_fsync": { "type": "long" } } }, "stats_reset": { "type": "date" } } }, "database": { "properties": { "name": { "type": "keyword", "ignore_above": 256 }, "transactions": { "properties": { "commit": { "type": "long" }, "rollback": { "type": "long" } } }, "rows": { "properties": { "updated": { "type": "long" }, "deleted": { "type": "long" }, "returned": { "type": "long" }, "fetched": { "type": "long" }, "inserted": { "type": "long" } } }, "conflicts": { "type": "long" }, "temporary": { "properties": { "files": { "type": "long" }, "bytes": { "type": "long" } } }, "oid": { "type": "long" }, "number_of_backends": { "type": "long" }, "blocks": { "properties": { "hit": { "type": "long" }, "time": { "properties": { "read": { "properties": { "ms": { "type": "long" } } }, "write": { "properties": { "ms": { "type": "long" } } } } }, "read": { "type": "long" } } }, "deadlocks": { "type": "long" }, "stats_reset": { "type": "date" } } }, "statement": { "properties": { "user": { "properties": { "id": { "type": "long" } } }, "database": { "properties": { "oid": { "type": "long" } } }, "query": { "properties": { "id": { "type": "long" }, "text": { "type": "keyword", "ignore_above": 256 }, "calls": { "type": "long" }, "rows": { "type": "long" }, "time": { "properties": { "stddev": { "properties": { "ms": { "type": "long" } } }, "total": { "properties": { "ms": { "type": "float" } } }, "min": { "properties": { "ms": { "type": "float" } } }, "max": { "properties": { "ms": { "type": "float" } } }, "mean": { "properties": { "ms": { "type": "long" } } } } }, "memory": { "properties": { "shared": { "properties": { "hit": { "type": "long" }, "read": { "type": "long" }, "dirtied": { "type": "long" }, "written": { "type": "long" } } }, "local": { "properties": { "dirtied": { "type": "long" }, "written": { "type": "long" }, "hit": { "type": "long" }, "read": { "type": "long" } } }, "temp": { "properties": { "read": { "type": "long" }, "written": { "type": "long" } } } } } } } } } } }, "tags": { "type": "keyword", "ignore_above": 256 }, "zookeeper": { "properties": { "connection": { "properties": { "interest_ops": { "type": "long" }, "queued": { "type": "long" }, "received": { "type": "long" }, "sent": { "type": "long" } } }, "mntr": { "properties": { "znode_count": { "type": "long" }, "approximate_data_size": { "type": "long" }, "watch_count": { "type": "long" }, "synced_followers": { "type": "long" }, "hostname": { "type": "keyword", "ignore_above": 256 }, "pending_syncs": { "type": "long" }, "followers": { "type": "long" }, "max_file_descriptor_count": { "type": "long" }, "latency": { "properties": { "avg": { "type": "long" }, "max": { "type": "long" }, "min": { "type": "long" } } }, "ephemerals_count": { "type": "long" }, "outstanding_requests": { "type": "long" }, "packets": { "properties": { "received": { "type": "long" }, "sent": { "type": "long" } } }, "server_state": { "type": "keyword", "ignore_above": 256 }, "num_alive_connections": { "type": "long" }, "open_file_descriptor_count": { "type": "long" } } }, "server": { "properties": { "version_date": { "type": "date" }, "zxid": { "type": "keyword", "ignore_above": 256 }, "count": { "type": "long" }, "connections": { "type": "long" }, "latency": { "properties": { "avg": { "type": "long" }, "max": { "type": "long" }, "min": { "type": "long" } } }, "node_count": { "type": "long" }, "received": { "type": "long" }, "mode": { "type": "keyword", "ignore_above": 256 }, "outstanding": { "type": "long" }, "sent": { "type": "long" }, "epoch": { "type": "long" } } } } }, "http": { "properties": { "request": { "properties": { "body": { "properties": { "bytes": { "type": "long" }, "content": { "type": "keyword", "ignore_above": 256 } } }, "bytes": { "type": "long" }, "method": { "type": "keyword", "ignore_above": 256 }, "referrer": { "type": "keyword", "ignore_above": 256 }, "headers": { "type": "object" } } }, "response": { "properties": { "phrase": { "type": "keyword", "ignore_above": 256 }, "body": { "properties": { "bytes": { "type": "long" }, "content": { "type": "keyword", "ignore_above": 256 } } }, "bytes": { "type": "long" }, "status_code": { "type": "long" }, "headers": { "type": "object" }, "code": { "ignore_above": 256, "type": "keyword" } } }, "version": { "type": "keyword", "ignore_above": 256 }, "json": { "properties": {} }, "server": { "properties": {} } } }, "organization": { "properties": { "id": { "type": "keyword", "ignore_above": 256 }, "name": { "type": "keyword", "ignore_above": 256 } } }, "url": { "properties": { "full": { "type": "keyword", "ignore_above": 256 }, "password": { "type": "keyword", "ignore_above": 256 }, "path": { "type": "keyword", "ignore_above": 256 }, "port": { "type": "long" }, "scheme": { "type": "keyword", "ignore_above": 256 }, "domain": { "type": "keyword", "ignore_above": 256 }, "fragment": { "type": "keyword", "ignore_above": 256 }, "username": { "type": "keyword", "ignore_above": 256 }, "original": { "type": "keyword", "ignore_above": 256 }, "query": { "type": "keyword", "ignore_above": 256 } } }, "metricset": { "properties": { "name": { "type": "keyword", "ignore_above": 256 } } }, "vsphere": { "properties": { "virtualmachine": { "properties": { "name": { "ignore_above": 256, "type": "keyword" }, "os": { "type": "keyword", "ignore_above": 256 }, "cpu": { "properties": { "used": { "properties": { "mhz": { "type": "long" } } } } }, "memory": { "properties": { "total": { "properties": { "guest": { "properties": { "bytes": { "type": "long" } } } } }, "free": { "properties": { "guest": { "properties": { "bytes": { "type": "long" } } } } }, "used": { "properties": { "guest": { "properties": { "bytes": { "type": "long" } } }, "host": { "properties": { "bytes": { "type": "long" } } } } } } }, "custom_fields": { "type": "object" }, "network_names": { "type": "keyword", "ignore_above": 256 }, "host": { "type": "keyword", "ignore_above": 256 } } }, "datastore": { "properties": { "fstype": { "type": "keyword", "ignore_above": 256 }, "capacity": { "properties": { "total": { "properties": { "bytes": { "type": "long" } } }, "free": { "properties": { "bytes": { "type": "long" } } }, "used": { "properties": { "bytes": { "type": "long" }, "pct": { "type": "long" } } } } }, "name": { "type": "keyword", "ignore_above": 256 } } }, "host": { "properties": { "name": { "type": "keyword", "ignore_above": 256 }, "cpu": { "properties": { "used": { "properties": { "mhz": { "type": "long" } } }, "total": { "properties": { "mhz": { "type": "long" } } }, "free": { "properties": { "mhz": { "type": "long" } } } } }, "memory": { "properties": { "used": { "properties": { "bytes": { "type": "long" } } }, "total": { "properties": { "bytes": { "type": "long" } } }, "free": { "properties": { "bytes": { "type": "long" } } } } }, "network_names": { "type": "keyword", "ignore_above": 256 } } } } }, "container": { "properties": { "runtime": { "type": "keyword", "ignore_above": 256 }, "id": { "type": "keyword", "ignore_above": 256 }, "image": { "properties": { "name": { "type": "keyword", "ignore_above": 256 }, "tag": { "type": "keyword", "ignore_above": 256 } } }, "labels": { "type": "object" }, "name": { "type": "keyword", "ignore_above": 256 } } }, "destination": { "properties": { "user": { "properties": { "full_name": { "type": "keyword", "ignore_above": 256 }, "group": { "properties": { "id": { "type": "keyword", "ignore_above": 256 }, "name": { "type": "keyword", "ignore_above": 256 } } }, "hash": { "type": "keyword", "ignore_above": 256 }, "id": { "type": "keyword", "ignore_above": 256 }, "name": { "type": "keyword", "ignore_above": 256 }, "email": { "type": "keyword", "ignore_above": 256 } } }, "address": { "type": "keyword", "ignore_above": 256 }, "domain": { "type": "keyword", "ignore_above": 256 }, "geo": { "properties": { "name": { "ignore_above": 256, "type": "keyword" }, "region_iso_code": { "type": "keyword", "ignore_above": 256 }, "region_name": { "type": "keyword", "ignore_above": 256 }, "city_name": { "ignore_above": 256, "type": "keyword" }, "continent_name": { "type": "keyword", "ignore_above": 256 }, "country_iso_code": { "type": "keyword", "ignore_above": 256 }, "country_name": { "type": "keyword", "ignore_above": 256 }, "location": { "type": "geo_point" } } }, "ip": { "type": "ip" }, "bytes": { "type": "long" }, "mac": { "type": "keyword", "ignore_above": 256 }, "packets": { "type": "long" }, "port": { "type": "long" } } }, "process": { "properties": { "thread": { "properties": { "id": { "type": "long" } } }, "working_directory": { "ignore_above": 256, "type": "keyword" }, "executable": { "ignore_above": 256, "type": "keyword" }, "name": { "ignore_above": 256, "type": "keyword" }, "ppid": { "type": "long" }, "title": { "type": "keyword", "ignore_above": 256 }, "pgid": { "type": "long" }, "args": { "type": "keyword", "ignore_above": 256 }, "pid": { "type": "long" }, "start": { "type": "date" } } }, "fields": { "type": "object" }, "error": { "properties": { "message": { "type": "text", "norms": false }, "type": { "ignore_above": 256, "type": "keyword" }, "code": { "type": "keyword", "ignore_above": 256 }, "id": { "type": "keyword", "ignore_above": 256 } } }, "file": { "properties": { "ctime": { "type": "date" }, "extension": { "type": "keyword", "ignore_above": 256 }, "gid": { "type": "keyword", "ignore_above": 256 }, "size": { "type": "long" }, "inode": { "type": "keyword", "ignore_above": 256 }, "path": { "type": "keyword", "ignore_above": 256 }, "target_path": { "type": "keyword", "ignore_above": 256 }, "uid": { "type": "keyword", "ignore_above": 256 }, "group": { "type": "keyword", "ignore_above": 256 }, "mode": { "type": "keyword", "ignore_above": 256 }, "owner": { "type": "keyword", "ignore_above": 256 }, "device": { "type": "keyword", "ignore_above": 256 }, "mtime": { "type": "date" }, "type": { "type": "keyword", "ignore_above": 256 } } }, "host": { "properties": { "user": { "properties": { "hash": { "type": "keyword", "ignore_above": 256 }, "id": { "ignore_above": 256, "type": "keyword" }, "name": { "ignore_above": 256, "type": "keyword" }, "email": { "type": "keyword", "ignore_above": 256 }, "full_name": { "type": "keyword", "ignore_above": 256 }, "group": { "properties": { "id": { "ignore_above": 256, "type": "keyword" }, "name": { "type": "keyword", "ignore_above": 256 } } } } }, "containerized": { "type": "boolean" }, "architecture": { "type": "keyword", "ignore_above": 256 }, "geo": { "properties": { "country_name": { "type": "keyword", "ignore_above": 256 }, "location": { "type": "geo_point" }, "name": { "type": "keyword", "ignore_above": 256 }, "region_iso_code": { "type": "keyword", "ignore_above": 256 }, "region_name": { "type": "keyword", "ignore_above": 256 }, "city_name": { "type": "keyword", "ignore_above": 256 }, "continent_name": { "type": "keyword", "ignore_above": 256 }, "country_iso_code": { "ignore_above": 256, "type": "keyword" } } }, "hostname": { "type": "keyword", "ignore_above": 256 }, "id": { "type": "keyword", "ignore_above": 256 }, "mac": { "type": "keyword", "ignore_above": 256 }, "type": { "type": "keyword", "ignore_above": 256 }, "ip": { "type": "ip" }, "name": { "type": "keyword", "ignore_above": 256 }, "os": { "properties": { "codename": { "type": "keyword", "ignore_above": 256 }, "family": { "type": "keyword", "ignore_above": 256 }, "full": { "type": "keyword", "ignore_above": 256 }, "kernel": { "type": "keyword", "ignore_above": 256 }, "name": { "type": "keyword", "ignore_above": 256 }, "platform": { "type": "keyword", "ignore_above": 256 }, "version": { "ignore_above": 256, "type": "keyword" }, "build": { "type": "keyword", "ignore_above": 256 } } } } }, "related": { "properties": { "ip": { "type": "ip" } } }, "couchbase": { "properties": { "cluster": { "properties": { "hdd": { "properties": { "free": { "properties": { "bytes": { "type": "long" } } }, "quota": { "properties": { "total": { "properties": { "bytes": { "type": "long" } } } } }, "total": { "properties": { "bytes": { "type": "long" } } }, "used": { "properties": { "value": { "properties": { "bytes": { "type": "long" } } }, "by_data": { "properties": { "bytes": { "type": "long" } } } } } } }, "max_bucket_count": { "type": "long" }, "quota": { "properties": { "index_memory": { "properties": { "mb": { "type": "long" } } }, "memory": { "properties": { "mb": { "type": "long" } } } } }, "ram": { "properties": { "used": { "properties": { "value": { "properties": { "bytes": { "type": "long" } } }, "by_data": { "properties": { "bytes": { "type": "long" } } } } }, "quota": { "properties": { "total": { "properties": { "value": { "properties": { "bytes": { "type": "long" } } }, "per_node": { "properties": { "bytes": { "type": "long" } } } } }, "used": { "properties": { "value": { "properties": { "bytes": { "type": "long" } } }, "per_node": { "properties": { "bytes": { "type": "long" } } } } } } }, "total": { "properties": { "bytes": { "type": "long" } } } } } } }, "node": { "properties": { "ep_bg_fetched": { "type": "long" }, "get_hits": { "type": "long" }, "hostname": { "type": "keyword", "ignore_above": 256 }, "mcd_memory": { "properties": { "allocated": { "properties": { "bytes": { "type": "long" } } }, "reserved": { "properties": { "bytes": { "type": "long" } } } } }, "memory": { "properties": { "free": { "properties": { "bytes": { "type": "long" } } }, "total": { "properties": { "bytes": { "type": "long" } } }, "used": { "properties": { "bytes": { "type": "long" } } } } }, "uptime": { "properties": { "sec": { "type": "long" } } }, "vb_replica_curr_items": { "type": "long" }, "current_items": { "properties": { "value": { "type": "long" }, "total": { "type": "long" } } }, "couch": { "properties": { "docs": { "properties": { "disk_size": { "properties": { "bytes": { "type": "long" } } }, "data_size": { "properties": { "bytes": { "type": "long" } } } } }, "spatial": { "properties": { "data_size": { "properties": { "bytes": { "type": "long" } } }, "disk_size": { "properties": { "bytes": { "type": "long" } } } } }, "views": { "properties": { "disk_size": { "properties": { "bytes": { "type": "long" } } }, "data_size": { "properties": { "bytes": { "type": "long" } } } } } } }, "cpu_utilization_rate": { "properties": { "pct": { "type": "scaled_float", "scaling_factor": 1000 } } }, "ops": { "type": "long" }, "swap": { "properties": { "total": { "properties": { "bytes": { "type": "long" } } }, "used": { "properties": { "bytes": { "type": "long" } } } } }, "cmd_get": { "type": "long" } } }, "bucket": { "properties": { "disk": { "properties": { "fetches": { "type": "long" }, "used": { "properties": { "bytes": { "type": "long" } } } } }, "memory": { "properties": { "used": { "properties": { "bytes": { "type": "long" } } } } }, "quota": { "properties": { "ram": { "properties": { "bytes": { "type": "long" } } }, "use": { "properties": { "pct": { "type": "scaled_float", "scaling_factor": 1000 } } } } }, "ops_per_sec": { "type": "long" }, "item_count": { "type": "long" }, "name": { "type": "keyword", "ignore_above": 256 }, "type": { "type": "keyword", "ignore_above": 256 }, "data": { "properties": { "used": { "properties": { "bytes": { "type": "long" } } } } } } } } }, "kibana": { "properties": { "stats": { "properties": { "index": { "type": "keyword", "ignore_above": 256 }, "host": { "properties": { "name": { "ignore_above": 256, "type": "keyword" } } }, "concurrent_connections": { "type": "long" }, "process": { "properties": { "event_loop_delay": { "properties": { "ms": { "type": "scaled_float", "scaling_factor": 1000 } } }, "memory": { "properties": { "heap": { "properties": { "uptime": { "properties": { "ms": { "type": "long" } } }, "total": { "properties": { "bytes": { "type": "long" } } }, "used": { "properties": { "bytes": { "type": "long" } } }, "size_limit": { "properties": { "bytes": { "type": "long" } } } } } } } } }, "response_time": { "properties": { "avg": { "properties": { "ms": { "type": "long" } } }, "max": { "properties": { "ms": { "type": "long" } } } } }, "name": { "ignore_above": 256, "type": "keyword" }, "snapshot": { "type": "boolean" }, "status": { "ignore_above": 256, "type": "keyword" }, "request": { "properties": { "disconnects": { "type": "long" }, "total": { "type": "long" } } } } }, "status": { "properties": { "name": { "type": "keyword", "ignore_above": 256 }, "status": { "properties": { "overall": { "properties": { "state": { "type": "keyword", "ignore_above": 256 } } } } }, "metrics": { "properties": { "concurrent_connections": { "type": "long" }, "requests": { "properties": { "disconnects": { "type": "long" }, "total": { "type": "long" } } } } } } } } }, "message": { "type": "text", "norms": false }, "observer": { "properties": { "serial_number": { "ignore_above": 256, "type": "keyword" }, "hostname": { "type": "keyword", "ignore_above": 256 }, "ip": { "type": "ip" }, "mac": { "type": "keyword", "ignore_above": 256 }, "os": { "properties": { "name": { "type": "keyword", "ignore_above": 256 }, "platform": { "type": "keyword", "ignore_above": 256 }, "version": { "type": "keyword", "ignore_above": 256 }, "family": { "type": "keyword", "ignore_above": 256 }, "full": { "type": "keyword", "ignore_above": 256 }, "kernel": { "type": "keyword", "ignore_above": 256 } } }, "geo": { "properties": { "region_name": { "type": "keyword", "ignore_above": 256 }, "city_name": { "type": "keyword", "ignore_above": 256 }, "continent_name": { "type": "keyword", "ignore_above": 256 }, "country_iso_code": { "type": "keyword", "ignore_above": 256 }, "country_name": { "type": "keyword", "ignore_above": 256 }, "location": { "type": "geo_point" }, "name": { "type": "keyword", "ignore_above": 256 }, "region_iso_code": { "type": "keyword", "ignore_above": 256 } } }, "type": { "type": "keyword", "ignore_above": 256 }, "vendor": { "type": "keyword", "ignore_above": 256 }, "version": { "type": "keyword", "ignore_above": 256 } } }, "os": { "properties": { "name": { "type": "keyword", "ignore_above": 256 }, "platform": { "type": "keyword", "ignore_above": 256 }, "version": { "type": "keyword", "ignore_above": 256 }, "family": { "type": "keyword", "ignore_above": 256 }, "full": { "type": "keyword", "ignore_above": 256 }, "kernel": { "type": "keyword", "ignore_above": 256 } } }, "mysql": { "properties": { "galera_status": { "properties": { "cert": { "properties": { "deps_distance": { "type": "double" }, "index_size": { "type": "long" }, "interval": { "type": "double" } } }, "commit": { "properties": { "oooe": { "type": "double" }, "window": { "type": "long" } } }, "connected": { "type": "keyword", "ignore_above": 256 }, "local": { "properties": { "replays": { "type": "long" }, "send": { "properties": { "queue_max": { "type": "long" }, "queue_min": { "type": "long" }, "queue": { "type": "long" }, "queue_avg": { "type": "double" } } }, "state": { "ignore_above": 256, "type": "keyword" }, "bf_aborts": { "type": "long" }, "cert_failures": { "type": "long" }, "commits": { "type": "long" }, "recv": { "properties": { "queue": { "type": "long" }, "queue_avg": { "type": "double" }, "queue_max": { "type": "long" }, "queue_min": { "type": "long" } } } } }, "ready": { "type": "keyword", "ignore_above": 256 }, "received": { "properties": { "count": { "type": "long" }, "bytes": { "type": "long" } } }, "apply": { "properties": { "oooe": { "type": "double" }, "oool": { "type": "double" }, "window": { "type": "double" } } }, "evs": { "properties": { "evict": { "type": "keyword", "ignore_above": 256 }, "state": { "ignore_above": 256, "type": "keyword" } } }, "flow_ctl": { "properties": { "recv": { "type": "long" }, "sent": { "type": "long" }, "paused": { "type": "double" }, "paused_ns": { "type": "long" } } }, "last_committed": { "type": "long" }, "repl": { "properties": { "data_bytes": { "type": "long" }, "keys": { "type": "long" }, "keys_bytes": { "type": "long" }, "other_bytes": { "type": "long" }, "count": { "type": "long" }, "bytes": { "type": "long" } } }, "cluster": { "properties": { "size": { "type": "long" }, "status": { "type": "keyword", "ignore_above": 256 }, "conf_id": { "type": "long" } } } } }, "status": { "properties": { "created": { "properties": { "tmp": { "properties": { "disk_tables": { "type": "long" }, "files": { "type": "long" }, "tables": { "type": "long" } } } } }, "max_used_connections": { "type": "long" }, "opened_tables": { "type": "long" }, "command": { "properties": { "delete": { "type": "long" }, "insert": { "type": "long" }, "select": { "type": "long" }, "update": { "type": "long" } } }, "questions": { "type": "long" }, "aborted": { "properties": { "clients": { "type": "long" }, "connects": { "type": "long" } } }, "binlog": { "properties": { "cache": { "properties": { "disk_use": { "type": "long" }, "use": { "type": "long" } } } } }, "bytes": { "properties": { "received": { "type": "long" }, "sent": { "type": "long" } } }, "threads": { "properties": { "cached": { "type": "long" }, "created": { "type": "long" }, "connected": { "type": "long" }, "running": { "type": "long" } } }, "flush_commands": { "type": "long" }, "delayed": { "properties": { "errors": { "type": "long" }, "insert_threads": { "type": "long" }, "writes": { "type": "long" } } }, "handler": { "properties": { "read": { "properties": { "key": { "type": "long" }, "last": { "type": "long" }, "next": { "type": "long" }, "prev": { "type": "long" }, "rnd": { "type": "long" }, "rnd_next": { "type": "long" }, "first": { "type": "long" } } }, "rollback": { "type": "long" }, "savepoint": { "type": "long" }, "savepoint_rollback": { "type": "long" }, "write": { "type": "long" }, "commit": { "type": "long" }, "mrr_init": { "type": "long" }, "prepare": { "type": "long" }, "delete": { "type": "long" }, "external_lock": { "type": "long" }, "update": { "type": "long" } } }, "connections": { "type": "long" }, "open": { "properties": { "files": { "type": "long" }, "streams": { "type": "long" }, "tables": { "type": "long" } } }, "queries": { "type": "long" }, "innodb": { "properties": { "buffer_pool": { "properties": { "write_requests": { "type": "long" }, "dump_status": { "type": "long" }, "load_status": { "type": "long" }, "bytes": { "properties": { "data": { "type": "long" }, "dirty": { "type": "long" } } }, "pages": { "properties": { "latched": { "type": "long" }, "misc": { "type": "long" }, "total": { "type": "long" }, "data": { "type": "long" }, "dirty": { "type": "long" }, "flushed": { "type": "long" }, "free": { "type": "long" } } }, "read": { "properties": { "ahead": { "type": "long" }, "ahead_evicted": { "type": "long" }, "ahead_rnd": { "type": "long" }, "requests": { "type": "long" } } }, "pool": { "properties": { "wait_free": { "type": "long" }, "reads": { "type": "long" }, "resize_status": { "type": "long" } } } } } } } } } } }, "prometheus": { "properties": { "labels": { "properties": { "*": { "type": "object" } } }, "metrics": { "properties": { "*": { "type": "object" } } } } }, "agent": { "properties": { "name": { "type": "keyword", "ignore_above": 256 }, "type": { "ignore_above": 256, "type": "keyword" }, "version": { "type": "keyword", "ignore_above": 256 }, "hostname": { "type": "keyword", "ignore_above": 256 }, "ephemeral_id": { "type": "keyword", "ignore_above": 256 }, "id": { "type": "keyword", "ignore_above": 256 } } }, "event": { "properties": { "hash": { "type": "keyword", "ignore_above": 256 }, "risk_score": { "type": "float" }, "risk_score_norm": { "type": "float" }, "duration": { "type": "long" }, "kind": { "type": "keyword", "ignore_above": 256 }, "module": { "type": "keyword", "ignore_above": 256 }, "timezone": { "type": "keyword", "ignore_above": 256 }, "action": { "type": "keyword", "ignore_above": 256 }, "category": { "type": "keyword", "ignore_above": 256 }, "created": { "type": "date" }, "dataset": { "type": "keyword", "ignore_above": 256 }, "id": { "type": "keyword", "ignore_above": 256 }, "outcome": { "type": "keyword", "ignore_above": 256 }, "type": { "type": "keyword", "ignore_above": 256 }, "end": { "type": "date" }, "original": { "type": "keyword", "ignore_above": 256 }, "severity": { "type": "long" }, "start": { "type": "date" } } }, "log": { "properties": { "original": { "type": "keyword", "ignore_above": 256 }, "level": { "type": "keyword", "ignore_above": 256 } } }, "dropwizard": { "properties": {} }, "kvm": { "properties": { "dommemstat": { "properties": { "stat": { "properties": { "name": { "type": "keyword", "ignore_above": 256 }, "value": { "type": "long" } } }, "id": { "type": "long" }, "name": { "type": "keyword", "ignore_above": 256 } } } } }, "traefik": { "properties": { "health": { "properties": { "uptime": { "properties": { "sec": { "type": "long" } } }, "response": { "properties": { "count": { "type": "long" }, "avg_time": { "properties": { "us": { "type": "long" } } }, "status_codes": { "properties": { "*": { "type": "object" } } } } } } } } }, "consul": { "properties": { "agent": { "properties": { "autopilot": { "properties": { "healthy": { "type": "boolean" } } }, "runtime": { "properties": { "sys": { "properties": { "bytes": { "type": "long" } } }, "malloc_count": { "type": "long" }, "heap_objects": { "type": "long" }, "goroutines": { "type": "long" }, "alloc": { "properties": { "bytes": { "type": "long" } } }, "garbage_collector": { "properties": { "runs": { "type": "long" }, "pause": { "properties": { "current": { "properties": { "ns": { "type": "long" } } }, "total": { "properties": { "ns": { "type": "long" } } } } } } } } } } } } }, "graphite": { "properties": { "server": { "properties": { "example": { "type": "keyword", "ignore_above": 256 } } } } }, "cloud": { "properties": { "image": { "properties": { "id": { "type": "keyword", "ignore_above": 256 } } }, "account": { "properties": { "id": { "ignore_above": 256, "type": "keyword" } } }, "availability_zone": { "ignore_above": 256, "type": "keyword" }, "instance": { "properties": { "id": { "type": "keyword", "ignore_above": 256 }, "name": { "type": "keyword", "ignore_above": 256 } } }, "machine": { "properties": { "type": { "type": "keyword", "ignore_above": 256 } } }, "provider": { "type": "keyword", "ignore_above": 256 }, "region": { "type": "keyword", "ignore_above": 256 }, "project": { "properties": { "id": { "type": "keyword", "ignore_above": 256 } } } } }, "docker": { "properties": { "network": { "properties": { "interface": { "type": "keyword", "ignore_above": 256 }, "in": { "properties": { "bytes": { "type": "long" }, "dropped": { "type": "scaled_float", "scaling_factor": 1000 }, "errors": { "type": "long" }, "packets": { "type": "long" } } }, "out": { "properties": { "bytes": { "type": "long" }, "dropped": { "scaling_factor": 1000, "type": "scaled_float" }, "errors": { "type": "long" }, "packets": { "type": "long" } } }, "inbound": { "properties": { "packets": { "type": "long" }, "bytes": { "type": "long" }, "dropped": { "type": "long" }, "errors": { "type": "long" } } }, "outbound": { "properties": { "bytes": { "type": "long" }, "dropped": { "type": "long" }, "errors": { "type": "long" }, "packets": { "type": "long" } } } } }, "container": { "properties": { "created": { "type": "date" }, "status": { "type": "keyword", "ignore_above": 256 }, "ip_addresses": { "type": "ip" }, "size": { "properties": { "root_fs": { "type": "long" }, "rw": { "type": "long" } } }, "tags": { "type": "keyword", "ignore_above": 256 }, "labels": { "type": "object" }, "command": { "type": "keyword", "ignore_above": 256 } } }, "cpu": { "properties": { "system": { "properties": { "pct": { "type": "scaled_float", "scaling_factor": 1000 }, "ticks": { "type": "long" } } }, "user": { "properties": { "pct": { "type": "scaled_float", "scaling_factor": 1000 }, "ticks": { "type": "long" } } }, "total": { "properties": { "pct": { "type": "scaled_float", "scaling_factor": 1000 } } }, "core": { "properties": { "*": { "properties": { "pct": { "type": "object" }, "ticks": { "type": "object" } } } } }, "kernel": { "properties": { "pct": { "type": "scaled_float", "scaling_factor": 1000 }, "ticks": { "type": "long" } } } } }, "image": { "properties": { "tags": { "type": "keyword", "ignore_above": 256 }, "id": { "properties": { "current": { "type": "keyword", "ignore_above": 256 }, "parent": { "type": "keyword", "ignore_above": 256 } } }, "created": { "type": "date" }, "size": { "properties": { "virtual": { "type": "long" }, "regular": { "type": "long" } } }, "labels": { "type": "object" } } }, "memory": { "properties": { "commit": { "properties": { "total": { "type": "long" }, "peak": { "type": "long" } } }, "private_working_set": { "properties": { "total": { "type": "long" } } }, "fail": { "properties": { "count": { "type": "scaled_float", "scaling_factor": 1000 } } }, "limit": { "type": "long" }, "rss": { "properties": { "total": { "type": "long" }, "pct": { "type": "scaled_float", "scaling_factor": 1000 } } }, "usage": { "properties": { "max": { "type": "long" }, "pct": { "scaling_factor": 1000, "type": "scaled_float" }, "total": { "type": "long" } } } } }, "diskio": { "properties": { "writes": { "type": "scaled_float", "scaling_factor": 1000 }, "summary": { "properties": { "ops": { "type": "long" }, "bytes": { "type": "long" }, "rate": { "type": "long" } } }, "total": { "type": "scaled_float", "scaling_factor": 1000 }, "read": { "properties": { "ops": { "type": "long" }, "bytes": { "type": "long" }, "rate": { "type": "long" } } }, "reads": { "type": "scaled_float", "scaling_factor": 1000 }, "write": { "properties": { "ops": { "type": "long" }, "bytes": { "type": "long" }, "rate": { "type": "long" } } } } }, "event": { "properties": { "id": { "type": "keyword", "ignore_above": 256 }, "from": { "type": "keyword", "ignore_above": 256 }, "type": { "type": "keyword", "ignore_above": 256 }, "action": { "type": "keyword", "ignore_above": 256 }, "actor": { "properties": { "id": { "type": "keyword", "ignore_above": 256 }, "attributes": { "type": "object" } } }, "status": { "type": "keyword", "ignore_above": 256 } } }, "healthcheck": { "properties": { "failingstreak": { "type": "long" }, "status": { "type": "keyword", "ignore_above": 256 }, "event": { "properties": { "start_date": { "type": "date" }, "output": { "type": "keyword", "ignore_above": 256 }, "exit_code": { "type": "long" }, "end_date": { "type": "date" } } } } }, "info": { "properties": { "id": { "type": "keyword", "ignore_above": 256 }, "images": { "type": "long" }, "containers": { "properties": { "running": { "type": "long" }, "stopped": { "type": "long" }, "total": { "type": "long" }, "paused": { "type": "long" } } } } } } }, "ceph": { "properties": { "osd_tree": { "properties": { "children": { "type": "keyword", "ignore_above": 256 }, "crush_weight": { "type": "float" }, "primary_affinity": { "type": "float" }, "reweight": { "type": "long" }, "device_class": { "type": "keyword", "ignore_above": 256 }, "father": { "type": "keyword", "ignore_above": 256 }, "id": { "type": "long" }, "name": { "type": "keyword", "ignore_above": 256 }, "depth": { "type": "long" }, "exists": { "type": "boolean" }, "status": { "type": "keyword", "ignore_above": 256 }, "type": { "type": "keyword", "ignore_above": 256 }, "type_id": { "type": "long" } } }, "pool_disk": { "properties": { "id": { "type": "long" }, "name": { "type": "keyword", "ignore_above": 256 }, "stats": { "properties": { "available": { "properties": { "bytes": { "type": "long" } } }, "objects": { "type": "long" }, "used": { "properties": { "bytes": { "type": "long" }, "kb": { "type": "long" } } } } } } }, "cluster_disk": { "properties": { "available": { "properties": { "bytes": { "type": "long" } } }, "total": { "properties": { "bytes": { "type": "long" } } }, "used": { "properties": { "bytes": { "type": "long" } } } } }, "cluster_health": { "properties": { "overall_status": { "type": "keyword", "ignore_above": 256 }, "timechecks": { "properties": { "epoch": { "type": "long" }, "round": { "properties": { "value": { "type": "long" }, "status": { "type": "keyword", "ignore_above": 256 } } } } } } }, "cluster_status": { "properties": { "misplace": { "properties": { "total": { "type": "long" }, "objects": { "type": "long" }, "ratio": { "type": "scaled_float", "scaling_factor": 1000 } } }, "degraded": { "properties": { "total": { "type": "long" }, "objects": { "type": "long" }, "ratio": { "type": "scaled_float", "scaling_factor": 1000 } } }, "pg": { "properties": { "used_bytes": { "type": "long" }, "data_bytes": { "type": "long" }, "avail_bytes": { "type": "long" }, "total_bytes": { "type": "long" } } }, "pg_state": { "properties": { "state_name": { "type": "long" }, "count": { "type": "long" }, "version": { "type": "long" } } }, "osd": { "properties": { "epoch": { "type": "long" }, "full": { "type": "boolean" }, "nearfull": { "type": "boolean" }, "num_osds": { "type": "long" }, "num_up_osds": { "type": "long" }, "num_in_osds": { "type": "long" }, "num_remapped_pgs": { "type": "long" } } }, "version": { "type": "long" }, "traffic": { "properties": { "write_bytes": { "type": "long" }, "read_op_per_sec": { "type": "long" }, "write_op_per_sec": { "type": "long" }, "read_bytes": { "type": "long" } } } } }, "monitor_health": { "properties": { "available": { "properties": { "pct": { "type": "long" }, "kb": { "type": "long" } } }, "health": { "type": "keyword", "ignore_above": 256 }, "total": { "properties": { "kb": { "type": "long" } } }, "used": { "properties": { "kb": { "type": "long" } } }, "last_updated": { "type": "date" }, "name": { "type": "keyword", "ignore_above": 256 }, "store_stats": { "properties": { "total": { "properties": { "bytes": { "type": "long" } } }, "last_updated": { "type": "long" }, "log": { "properties": { "bytes": { "type": "long" } } }, "misc": { "properties": { "bytes": { "type": "long" } } }, "sst": { "properties": { "bytes": { "type": "long" } } } } } } }, "osd_df": { "properties": { "used": { "properties": { "byte": { "type": "long" }, "pct": { "type": "scaled_float", "scaling_factor": 1000 } } }, "available": { "properties": { "bytes": { "type": "long" } } }, "pg_num": { "type": "long" }, "id": { "type": "long" }, "name": { "type": "keyword", "ignore_above": 256 }, "device_class": { "type": "keyword", "ignore_above": 256 }, "total": { "properties": { "byte": { "type": "long" } } } } } } }, "ecs": { "properties": { "version": { "ignore_above": 256, "type": "keyword" } } }, "server": { "properties": { "geo": { "properties": { "location": { "type": "geo_point" }, "name": { "type": "keyword", "ignore_above": 256 }, "region_iso_code": { "type": "keyword", "ignore_above": 256 }, "region_name": { "type": "keyword", "ignore_above": 256 }, "city_name": { "type": "keyword", "ignore_above": 256 }, "continent_name": { "type": "keyword", "ignore_above": 256 }, "country_iso_code": { "type": "keyword", "ignore_above": 256 }, "country_name": { "type": "keyword", "ignore_above": 256 } } }, "address": { "type": "keyword", "ignore_above": 256 }, "bytes": { "type": "long" }, "mac": { "ignore_above": 256, "type": "keyword" }, "packets": { "type": "long" }, "port": { "type": "long" }, "user": { "properties": { "group": { "properties": { "id": { "type": "keyword", "ignore_above": 256 }, "name": { "ignore_above": 256, "type": "keyword" } } }, "hash": { "type": "keyword", "ignore_above": 256 }, "id": { "ignore_above": 256, "type": "keyword" }, "name": { "type": "keyword", "ignore_above": 256 }, "email": { "type": "keyword", "ignore_above": 256 }, "full_name": { "ignore_above": 256, "type": "keyword" } } }, "domain": { "type": "keyword", "ignore_above": 256 }, "ip": { "type": "ip" } } }, "service": { "properties": { "name": { "type": "keyword", "ignore_above": 256 }, "state": { "type": "keyword", "ignore_above": 256 }, "type": { "ignore_above": 256, "type": "keyword" }, "version": { "type": "keyword", "ignore_above": 256 }, "address": { "type": "keyword", "ignore_above": 256 }, "hostname": { "type": "keyword", "ignore_above": 256 }, "ephemeral_id": { "ignore_above": 256, "type": "keyword" }, "id": { "type": "keyword", "ignore_above": 256 } } }, "aerospike": { "properties": { "namespace": { "properties": { "memory": { "properties": { "free": { "properties": { "pct": { "type": "scaled_float", "scaling_factor": 1000 } } }, "used": { "properties": { "sindex": { "properties": { "bytes": { "type": "long" } } }, "total": { "properties": { "bytes": { "type": "long" } } }, "data": { "properties": { "bytes": { "type": "long" } } }, "index": { "properties": { "bytes": { "type": "long" } } } } } } }, "name": { "type": "keyword", "ignore_above": 256 }, "node": { "properties": { "host": { "type": "keyword", "ignore_above": 256 }, "name": { "type": "keyword", "ignore_above": 256 } } }, "objects": { "properties": { "master": { "type": "long" }, "total": { "type": "long" } } }, "stop_writes": { "type": "boolean" }, "client": { "properties": { "delete": { "properties": { "timeout": { "type": "long" }, "error": { "type": "long" }, "not_found": { "type": "long" }, "success": { "type": "long" } } }, "read": { "properties": { "error": { "type": "long" }, "not_found": { "type": "long" }, "success": { "type": "long" }, "timeout": { "type": "long" } } }, "write": { "properties": { "error": { "type": "long" }, "success": { "type": "long" }, "timeout": { "type": "long" } } } } }, "device": { "properties": { "available": { "properties": { "pct": { "type": "scaled_float", "scaling_factor": 1000 } } }, "free": { "properties": { "pct": { "type": "scaled_float", "scaling_factor": 1000 } } }, "total": { "properties": { "bytes": { "type": "long" } } }, "used": { "properties": { "bytes": { "type": "long" } } } } }, "hwm_breached": { "type": "boolean" } } } } }, "memcached": { "properties": { "stats": { "properties": { "cmd": { "properties": { "get": { "type": "long" }, "set": { "type": "long" } } }, "read": { "properties": { "bytes": { "type": "long" } } }, "written": { "properties": { "bytes": { "type": "long" } } }, "bytes": { "properties": { "current": { "type": "long" }, "limit": { "type": "long" } } }, "uptime": { "properties": { "sec": { "type": "long" } } }, "connections": { "properties": { "current": { "type": "long" }, "total": { "type": "long" } } }, "get": { "properties": { "hits": { "type": "long" }, "misses": { "type": "long" } } }, "evictions": { "type": "long" }, "pid": { "type": "long" }, "threads": { "type": "long" }, "items": { "properties": { "current": { "type": "long" }, "total": { "type": "long" } } } } } } }, "munin": { "properties": { "metrics": { "properties": { "*": { "type": "object" } } }, "plugin": { "properties": { "name": { "type": "keyword", "ignore_above": 256 } } } } }, "nginx": { "properties": { "stubstatus": { "properties": { "reading": { "type": "long" }, "waiting": { "type": "long" }, "handled": { "type": "long" }, "dropped": { "type": "long" }, "requests": { "type": "long" }, "current": { "type": "long" }, "writing": { "type": "long" }, "hostname": { "type": "keyword", "ignore_above": 256 }, "active": { "type": "long" }, "accepts": { "type": "long" } } } } }, "rabbitmq": { "properties": { "node": { "properties": { "fd": { "properties": { "total": { "type": "long" }, "used": { "type": "long" } } }, "gc": { "properties": { "num": { "properties": { "count": { "type": "long" } } }, "reclaimed": { "properties": { "bytes": { "type": "long" } } } } }, "msg": { "properties": { "store_read": { "properties": { "count": { "type": "long" } } }, "store_write": { "properties": { "count": { "type": "long" } } } } }, "processors": { "type": "long" }, "queue": { "properties": { "index": { "properties": { "journal_write": { "properties": { "count": { "type": "long" } } }, "read": { "properties": { "count": { "type": "long" } } }, "write": { "properties": { "count": { "type": "long" } } } } } } }, "disk": { "properties": { "free": { "properties": { "bytes": { "type": "long" }, "limit": { "properties": { "bytes": { "type": "long" } } } } } } }, "io": { "properties": { "file_handle": { "properties": { "open_attempt": { "properties": { "avg": { "properties": { "ms": { "type": "long" } } }, "count": { "type": "long" } } } } }, "read": { "properties": { "count": { "type": "long" }, "avg": { "properties": { "ms": { "type": "long" } } }, "bytes": { "type": "long" } } }, "reopen": { "properties": { "count": { "type": "long" } } }, "seek": { "properties": { "avg": { "properties": { "ms": { "type": "long" } } }, "count": { "type": "long" } } }, "sync": { "properties": { "avg": { "properties": { "ms": { "type": "long" } } }, "count": { "type": "long" } } }, "write": { "properties": { "count": { "type": "long" }, "avg": { "properties": { "ms": { "type": "long" } } }, "bytes": { "type": "long" } } } } }, "socket": { "properties": { "total": { "type": "long" }, "used": { "type": "long" } } }, "mem": { "properties": { "limit": { "properties": { "bytes": { "type": "long" } } }, "used": { "properties": { "bytes": { "type": "long" } } } } }, "name": { "type": "keyword", "ignore_above": 256 }, "proc": { "properties": { "total": { "type": "long" }, "used": { "type": "long" } } }, "run": { "properties": { "queue": { "type": "long" } } }, "type": { "type": "keyword", "ignore_above": 256 }, "mnesia": { "properties": { "disk": { "properties": { "tx": { "properties": { "count": { "type": "long" } } } } }, "ram": { "properties": { "tx": { "properties": { "count": { "type": "long" } } } } } } }, "uptime": { "type": "long" } } }, "queue": { "properties": { "exclusive": { "type": "boolean" }, "state": { "type": "keyword", "ignore_above": 256 }, "arguments": { "properties": { "max_priority": { "type": "long" } } }, "consumers": { "properties": { "count": { "type": "long" }, "utilisation": { "properties": { "pct": { "type": "long" } } } } }, "memory": { "properties": { "bytes": { "type": "long" } } }, "disk": { "properties": { "reads": { "properties": { "count": { "type": "long" } } }, "writes": { "properties": { "count": { "type": "long" } } } } }, "auto_delete": { "type": "boolean" }, "durable": { "type": "boolean" }, "messages": { "properties": { "total": { "properties": { "count": { "type": "long" }, "details": { "properties": { "rate": { "type": "float" } } } } }, "ready": { "properties": { "count": { "type": "long" }, "details": { "properties": { "rate": { "type": "float" } } } } }, "unacknowledged": { "properties": { "count": { "type": "long" }, "details": { "properties": { "rate": { "type": "float" } } } } }, "persistent": { "properties": { "count": { "type": "long" } } } } }, "name": { "type": "keyword", "ignore_above": 256 } } }, "vhost": { "type": "keyword", "ignore_above": 256 }, "connection": { "properties": { "name": { "type": "keyword", "ignore_above": 256 }, "host": { "type": "keyword", "ignore_above": 256 }, "peer": { "properties": { "host": { "type": "keyword", "ignore_above": 256 }, "port": { "type": "long" } } }, "port": { "type": "long" }, "packet_count": { "properties": { "sent": { "type": "long" }, "received": { "type": "long" }, "pending": { "type": "long" } } }, "channels": { "type": "long" }, "channel_max": { "type": "long" }, "frame_max": { "type": "long" }, "type": { "type": "keyword", "ignore_above": 256 }, "octet_count": { "properties": { "sent": { "type": "long" }, "received": { "type": "long" } } } } }, "exchange": { "properties": { "name": { "type": "keyword", "ignore_above": 256 }, "durable": { "type": "boolean" }, "auto_delete": { "type": "boolean" }, "internal": { "type": "boolean" }, "messages": { "properties": { "publish_in": { "properties": { "count": { "type": "long" }, "details": { "properties": { "rate": { "type": "float" } } } } }, "publish_out": { "properties": { "count": { "type": "long" }, "details": { "properties": { "rate": { "type": "float" } } } } } } } } } } }, "user_agent": { "properties": { "device": { "properties": { "name": { "type": "keyword", "ignore_above": 256 } } }, "name": { "type": "keyword", "ignore_above": 256 }, "original": { "type": "keyword", "ignore_above": 256 }, "os": { "properties": { "version": { "ignore_above": 256, "type": "keyword" }, "family": { "type": "keyword", "ignore_above": 256 }, "full": { "type": "keyword", "ignore_above": 256 }, "kernel": { "type": "keyword", "ignore_above": 256 }, "name": { "type": "keyword", "ignore_above": 256 }, "platform": { "type": "keyword", "ignore_above": 256 } } }, "version": { "type": "keyword", "ignore_above": 256 } } }, "timeseries": { "properties": { "instance": { "type": "keyword", "ignore_above": 256 } } }, "kubernetes": { "properties": { "statefulset": { "properties": { "name": { "type": "keyword", "ignore_above": 256 }, "created": { "type": "long" }, "replicas": { "properties": { "observed": { "type": "long" }, "desired": { "type": "long" } } }, "generation": { "properties": { "observed": { "type": "long" }, "desired": { "type": "long" } } } } }, "controllermanager": { "properties": { "zone": { "type": "keyword", "ignore_above": 256 }, "process": { "properties": { "memory": { "properties": { "resident": { "properties": { "bytes": { "type": "long" } } }, "virtual": { "properties": { "bytes": { "type": "long" } } } } }, "fds": { "properties": { "open": { "properties": { "count": { "type": "long" } } } } }, "started": { "properties": { "sec": { "type": "double" } } }, "cpu": { "properties": { "sec": { "type": "double" } } } } }, "workqueue": { "properties": { "depth": { "properties": { "count": { "type": "long" } } }, "retries": { "properties": { "count": { "type": "long" } } }, "longestrunning": { "properties": { "sec": { "type": "double" } } }, "unfinished": { "properties": { "sec": { "type": "double" } } }, "adds": { "properties": { "count": { "type": "long" } } } } }, "leader": { "properties": { "is_master": { "type": "boolean" } } }, "client": { "properties": { "request": { "properties": { "count": { "type": "long" } } } } }, "node": { "properties": { "collector": { "properties": { "eviction": { "properties": { "count": { "type": "long" } } }, "unhealthy": { "properties": { "count": { "type": "long" } } }, "count": { "type": "long" }, "health": { "properties": { "pct": { "type": "long" } } } } } } }, "handler": { "type": "keyword", "ignore_above": 256 }, "code": { "type": "keyword", "ignore_above": 256 }, "method": { "ignore_above": 256, "type": "keyword" }, "host": { "type": "keyword", "ignore_above": 256 }, "name": { "type": "keyword", "ignore_above": 256 }, "http": { "properties": { "response": { "properties": { "size": { "properties": { "bytes": { "properties": { "count": { "type": "long" }, "percentile": { "properties": { "*": { "type": "object" } } }, "sum": { "type": "long" } } } } } } }, "request": { "properties": { "count": { "type": "long" }, "duration": { "properties": { "us": { "properties": { "percentile": { "properties": { "*": { "type": "object" } } }, "sum": { "type": "double" }, "count": { "type": "long" } } } } }, "size": { "properties": { "bytes": { "properties": { "percentile": { "properties": { "*": { "type": "object" } } }, "sum": { "type": "long" }, "count": { "type": "long" } } } } } } } } } } }, "proxy": { "properties": { "process": { "properties": { "fds": { "properties": { "open": { "properties": { "count": { "type": "long" } } } } }, "started": { "properties": { "sec": { "type": "double" } } }, "cpu": { "properties": { "sec": { "type": "double" } } }, "memory": { "properties": { "resident": { "properties": { "bytes": { "type": "long" } } }, "virtual": { "properties": { "bytes": { "type": "long" } } } } } } }, "http": { "properties": { "request": { "properties": { "size": { "properties": { "bytes": { "properties": { "percentile": { "properties": { "*": { "type": "object" } } }, "sum": { "type": "long" }, "count": { "type": "long" } } } } }, "count": { "type": "long" }, "duration": { "properties": { "us": { "properties": { "sum": { "type": "double" }, "count": { "type": "long" }, "percentile": { "properties": { "*": { "type": "object" } } } } } } } } }, "response": { "properties": { "size": { "properties": { "bytes": { "properties": { "percentile": { "properties": { "*": { "type": "object" } } }, "sum": { "type": "long" }, "count": { "type": "long" } } } } } } } } }, "client": { "properties": { "request": { "properties": { "count": { "type": "long" } } } } }, "sync": { "properties": { "rules": { "properties": { "duration": { "properties": { "us": { "properties": { "sum": { "type": "long" }, "count": { "type": "long" }, "bucket": { "properties": { "*": { "type": "object" } } } } } } } } }, "networkprogramming": { "properties": { "duration": { "properties": { "us": { "properties": { "sum": { "type": "long" }, "count": { "type": "long" }, "bucket": { "properties": { "*": { "type": "object" } } } } } } } } } } }, "handler": { "type": "keyword", "ignore_above": 256 }, "code": { "type": "keyword", "ignore_above": 256 }, "method": { "type": "keyword", "ignore_above": 256 }, "host": { "type": "keyword", "ignore_above": 256 } } }, "volume": { "properties": { "name": { "type": "keyword", "ignore_above": 256 }, "fs": { "properties": { "capacity": { "properties": { "bytes": { "type": "long" } } }, "available": { "properties": { "bytes": { "type": "long" } } }, "used": { "properties": { "bytes": { "type": "long" } } }, "inodes": { "properties": { "used": { "type": "long" }, "free": { "type": "long" }, "count": { "type": "long" } } } } } } }, "pod": { "properties": { "memory": { "properties": { "available": { "properties": { "bytes": { "type": "long" } } }, "working_set": { "properties": { "bytes": { "type": "long" } } }, "rss": { "properties": { "bytes": { "type": "long" } } }, "page_faults": { "type": "long" }, "major_page_faults": { "type": "long" }, "usage": { "properties": { "bytes": { "type": "long" }, "node": { "properties": { "pct": { "type": "scaled_float", "scaling_factor": 1000 } } }, "limit": { "properties": { "pct": { "type": "scaled_float", "scaling_factor": 1000 } } } } } } }, "host_ip": { "type": "ip" }, "name": { "type": "keyword", "ignore_above": 256 }, "start_time": { "type": "date" }, "network": { "properties": { "tx": { "properties": { "bytes": { "type": "long" }, "errors": { "type": "long" } } }, "rx": { "properties": { "bytes": { "type": "long" }, "errors": { "type": "long" } } } } }, "status": { "properties": { "phase": { "type": "keyword", "ignore_above": 256 }, "ready": { "type": "keyword", "ignore_above": 256 }, "scheduled": { "type": "keyword", "ignore_above": 256 } } }, "uid": { "type": "keyword", "ignore_above": 256 }, "cpu": { "properties": { "usage": { "properties": { "nanocores": { "type": "long" }, "node": { "properties": { "pct": { "type": "scaled_float", "scaling_factor": 1000 } } }, "limit": { "properties": { "pct": { "type": "scaled_float", "scaling_factor": 1000 } } } } } } }, "ip": { "type": "ip" } } }, "labels": { "type": "object" }, "annotations": { "type": "object" }, "container": { "properties": { "rootfs": { "properties": { "capacity": { "properties": { "bytes": { "type": "long" } } }, "available": { "properties": { "bytes": { "type": "long" } } }, "used": { "properties": { "bytes": { "type": "long" } } }, "inodes": { "properties": { "used": { "type": "long" } } } } }, "status": { "properties": { "restarts": { "type": "long" }, "reason": { "type": "keyword", "ignore_above": 256 }, "phase": { "type": "keyword", "ignore_above": 256 }, "ready": { "type": "boolean" } } }, "name": { "type": "keyword", "ignore_above": 256 }, "image": { "type": "keyword", "ignore_above": 256 }, "logs": { "properties": { "available": { "properties": { "bytes": { "type": "long" } } }, "capacity": { "properties": { "bytes": { "type": "long" } } }, "used": { "properties": { "bytes": { "type": "long" } } }, "inodes": { "properties": { "count": { "type": "long" }, "free": { "type": "long" }, "used": { "type": "long" } } } } }, "memory": { "properties": { "rss": { "properties": { "bytes": { "type": "long" } } }, "workingset": { "properties": { "bytes": { "type": "long" } } }, "pagefaults": { "type": "long" }, "majorpagefaults": { "type": "long" }, "limit": { "properties": { "bytes": { "type": "long" } } }, "request": { "properties": { "bytes": { "type": "long" } } }, "available": { "properties": { "bytes": { "type": "long" } } }, "usage": { "properties": { "bytes": { "type": "long" }, "node": { "properties": { "pct": { "type": "scaled_float", "scaling_factor": 1000 } } }, "limit": { "properties": { "pct": { "type": "scaled_float", "scaling_factor": 1000 } } } } } } }, "id": { "type": "keyword", "ignore_above": 256 }, "start_time": { "type": "date" }, "cpu": { "properties": { "limit": { "properties": { "nanocores": { "type": "long" }, "cores": { "type": "float" } } }, "request": { "properties": { "cores": { "type": "float" }, "nanocores": { "type": "long" } } }, "usage": { "properties": { "core": { "properties": { "ns": { "type": "long" } } }, "nanocores": { "type": "long" }, "node": { "properties": { "pct": { "type": "scaled_float", "scaling_factor": 1000 } } }, "limit": { "properties": { "pct": { "scaling_factor": 1000, "type": "scaled_float" } } } } } } } } }, "apiserver": { "properties": { "request": { "properties": { "client": { "type": "keyword", "ignore_above": 256 }, "resource": { "type": "keyword", "ignore_above": 256 }, "subresource": { "ignore_above": 256, "type": "keyword" }, "scope": { "type": "keyword", "ignore_above": 256 }, "verb": { "type": "keyword", "ignore_above": 256 }, "count": { "type": "long" }, "latency": { "properties": { "sum": { "type": "long" }, "count": { "type": "long" }, "bucket": { "properties": { "*": { "type": "object" } } } } } } } } }, "namespace": { "ignore_above": 256, "type": "keyword" }, "node": { "properties": { "pod": { "properties": { "capacity": { "properties": { "total": { "type": "long" } } }, "allocatable": { "properties": { "total": { "type": "long" } } } } }, "name": { "type": "keyword", "ignore_above": 256 }, "cpu": { "properties": { "allocatable": { "properties": { "cores": { "type": "float" } } }, "capacity": { "properties": { "cores": { "type": "long" } } }, "usage": { "properties": { "core": { "properties": { "ns": { "type": "long" } } }, "nanocores": { "type": "long" } } } } }, "memory": { "properties": { "available": { "properties": { "bytes": { "type": "long" } } }, "usage": { "properties": { "bytes": { "type": "long" } } }, "rss": { "properties": { "bytes": { "type": "long" } } }, "workingset": { "properties": { "bytes": { "type": "long" } } }, "pagefaults": { "type": "long" }, "majorpagefaults": { "type": "long" }, "allocatable": { "properties": { "bytes": { "type": "long" } } }, "capacity": { "properties": { "bytes": { "type": "long" } } } } }, "runtime": { "properties": { "imagefs": { "properties": { "capacity": { "properties": { "bytes": { "type": "long" } } }, "available": { "properties": { "bytes": { "type": "long" } } }, "used": { "properties": { "bytes": { "type": "long" } } } } } } }, "status": { "properties": { "unschedulable": { "type": "boolean" }, "ready": { "type": "keyword", "ignore_above": 256 } } }, "start_time": { "type": "date" }, "network": { "properties": { "rx": { "properties": { "bytes": { "type": "long" }, "errors": { "type": "long" } } }, "tx": { "properties": { "bytes": { "type": "long" }, "errors": { "type": "long" } } } } }, "fs": { "properties": { "inodes": { "properties": { "used": { "type": "long" }, "count": { "type": "long" }, "free": { "type": "long" } } }, "capacity": { "properties": { "bytes": { "type": "long" } } }, "available": { "properties": { "bytes": { "type": "long" } } }, "used": { "properties": { "bytes": { "type": "long" } } } } } } }, "scheduler": { "properties": { "handler": { "type": "keyword", "ignore_above": 256 }, "code": { "type": "keyword", "ignore_above": 256 }, "method": { "type": "keyword", "ignore_above": 256 }, "host": { "type": "keyword", "ignore_above": 256 }, "name": { "type": "keyword", "ignore_above": 256 }, "result": { "type": "keyword", "ignore_above": 256 }, "process": { "properties": { "cpu": { "properties": { "sec": { "type": "double" } } }, "memory": { "properties": { "resident": { "properties": { "bytes": { "type": "long" } } }, "virtual": { "properties": { "bytes": { "type": "long" } } } } }, "fds": { "properties": { "open": { "properties": { "count": { "type": "long" } } } } }, "started": { "properties": { "sec": { "type": "double" } } } } }, "client": { "properties": { "request": { "properties": { "count": { "type": "long" } } } } }, "leader": { "properties": { "is_master": { "type": "boolean" } } }, "scheduling": { "properties": { "duration": { "properties": { "seconds": { "properties": { "percentile": { "properties": { "*": { "type": "object" } } }, "sum": { "type": "double" }, "count": { "type": "long" } } } } }, "e2e": { "properties": { "duration": { "properties": { "us": { "properties": { "bucket": { "properties": { "*": { "type": "object" } } }, "sum": { "type": "long" }, "count": { "type": "long" } } } } } } }, "pod": { "properties": { "preemption": { "properties": { "victims": { "properties": { "count": { "type": "long" } } } } }, "attempts": { "properties": { "count": { "type": "long" } } } } } } }, "operation": { "type": "keyword", "ignore_above": 256 }, "http": { "properties": { "request": { "properties": { "duration": { "properties": { "us": { "properties": { "sum": { "type": "double" }, "count": { "type": "long" }, "percentile": { "properties": { "*": { "type": "object" } } } } } } }, "size": { "properties": { "bytes": { "properties": { "percentile": { "properties": { "*": { "type": "object" } } }, "sum": { "type": "long" }, "count": { "type": "long" } } } } }, "count": { "type": "long" } } }, "response": { "properties": { "size": { "properties": { "bytes": { "properties": { "percentile": { "properties": { "*": { "type": "object" } } }, "sum": { "type": "long" }, "count": { "type": "long" } } } } } } } } } } }, "system": { "properties": { "container": { "ignore_above": 256, "type": "keyword" }, "start_time": { "type": "date" }, "cpu": { "properties": { "usage": { "properties": { "core": { "properties": { "ns": { "type": "long" } } }, "nanocores": { "type": "long" } } } } }, "memory": { "properties": { "workingset": { "properties": { "bytes": { "type": "long" } } }, "pagefaults": { "type": "long" }, "majorpagefaults": { "type": "long" }, "usage": { "properties": { "bytes": { "type": "long" } } }, "rss": { "properties": { "bytes": { "type": "long" } } } } } } }, "replicaset": { "properties": { "name": { "ignore_above": 256, "type": "keyword" }, "replicas": { "properties": { "available": { "type": "long" }, "desired": { "type": "long" }, "ready": { "type": "long" }, "observed": { "type": "long" }, "labeled": { "type": "long" } } } } }, "deployment": { "properties": { "name": { "type": "keyword", "ignore_above": 256 }, "paused": { "type": "boolean" }, "replicas": { "properties": { "desired": { "type": "long" }, "available": { "type": "long" }, "unavailable": { "type": "long" }, "updated": { "type": "long" } } } } }, "event": { "properties": { "reason": { "type": "keyword", "ignore_above": 256 }, "type": { "type": "keyword", "ignore_above": 256 }, "metadata": { "properties": { "name": { "type": "keyword", "ignore_above": 256 }, "namespace": { "type": "keyword", "ignore_above": 256 }, "resource_version": { "ignore_above": 256, "type": "keyword" }, "uid": { "type": "keyword", "ignore_above": 256 }, "self_link": { "ignore_above": 256, "type": "keyword" }, "timestamp": { "properties": { "created": { "type": "date" } } } } }, "involved_object": { "properties": { "name": { "type": "keyword", "ignore_above": 256 }, "resource_version": { "type": "keyword", "ignore_above": 256 }, "uid": { "type": "keyword", "ignore_above": 256 }, "api_version": { "ignore_above": 256, "type": "keyword" }, "kind": { "type": "keyword", "ignore_above": 256 } } }, "count": { "type": "long" }, "timestamp": { "properties": { "first_occurrence": { "type": "date" }, "last_occurrence": { "type": "date" } } }, "message": { "type": "keyword", "ignore_above": 256, "copy_to": "message" } } } } }, "envoyproxy": { "properties": { "server": { "properties": { "server": { "properties": { "version": { "type": "long" }, "watchdog_mega_miss": { "type": "long" }, "memory_allocated": { "type": "long" }, "memory_heap_size": { "type": "long" }, "parent_connections": { "type": "long" }, "total_connections": { "type": "long" }, "hot_restart_epoch": { "type": "long" }, "days_until_first_cert_expiring": { "type": "long" }, "live": { "type": "long" }, "uptime": { "type": "long" }, "watchdog_miss": { "type": "long" } } }, "http2": { "properties": { "headers_cb_no_stream": { "type": "long" }, "rx_messaging_error": { "type": "long" }, "rx_reset": { "type": "long" }, "too_many_header_frames": { "type": "long" }, "trailers": { "type": "long" }, "tx_reset": { "type": "long" }, "header_overflow": { "type": "long" } } }, "cluster_manager": { "properties": { "cluster_added": { "type": "long" }, "cluster_modified": { "type": "long" }, "cluster_removed": { "type": "long" }, "warming_clusters": { "type": "long" }, "active_clusters": { "type": "long" } } }, "filesystem": { "properties": { "flushed_by_timer": { "type": "long" }, "reopen_failed": { "type": "long" }, "write_buffered": { "type": "long" }, "write_completed": { "type": "long" }, "write_total_buffered": { "type": "long" } } }, "runtime": { "properties": { "load_error": { "type": "long" }, "load_success": { "type": "long" }, "num_keys": { "type": "long" }, "override_dir_exists": { "type": "long" }, "override_dir_not_exists": { "type": "long" }, "admin_overrides_active": { "type": "long" } } }, "listener_manager": { "properties": { "listener_create_success": { "type": "long" }, "listener_modified": { "type": "long" }, "listener_removed": { "type": "long" }, "total_listeners_active": { "type": "long" }, "total_listeners_draining": { "type": "long" }, "total_listeners_warming": { "type": "long" }, "listener_added": { "type": "long" }, "listener_create_failure": { "type": "long" } } }, "stats": { "properties": { "overflow": { "type": "long" } } } } } } }, "etcd": { "properties": { "leader": { "properties": { "followers": { "properties": { "counts": { "properties": { "followers": { "properties": { "counts": { "properties": { "fail": { "type": "long" }, "success": { "type": "long" } } } } } } }, "latency": { "properties": { "followers": { "properties": { "latency": { "properties": { "average": { "type": "scaled_float", "scaling_factor": 1000 }, "current": { "type": "scaled_float", "scaling_factor": 1000 }, "maximum": { "scaling_factor": 1000, "type": "scaled_float" }, "minimum": { "type": "long" } } } } }, "follower": { "properties": { "latency": { "properties": { "standardDeviation": { "type": "scaled_float", "scaling_factor": 1000 } } } } } } } } }, "leader": { "type": "keyword", "ignore_above": 256 } } }, "server": { "properties": { "has_leader": { "type": "byte" }, "leader_changes": { "properties": { "count": { "type": "long" } } }, "proposals_committed": { "properties": { "count": { "type": "long" } } }, "proposals_pending": { "properties": { "count": { "type": "long" } } }, "proposals_failed": { "properties": { "count": { "type": "long" } } }, "grpc_started": { "properties": { "count": { "type": "long" } } }, "grpc_handled": { "properties": { "count": { "type": "long" } } } } }, "disk": { "properties": { "mvcc_db_total_size": { "properties": { "bytes": { "type": "long" } } }, "wal_fsync_duration": { "properties": { "ns": { "properties": { "bucket": { "properties": { "*": { "type": "object" } } }, "count": { "type": "long" }, "sum": { "type": "long" } } } } }, "backend_commit_duration": { "properties": { "ns": { "properties": { "bucket": { "properties": { "*": { "type": "object" } } }, "count": { "type": "long" }, "sum": { "type": "long" } } } } } } }, "memory": { "properties": { "go_memstats_alloc": { "properties": { "bytes": { "type": "long" } } } } }, "network": { "properties": { "client_grpc_sent": { "properties": { "bytes": { "type": "long" } } }, "client_grpc_received": { "properties": { "bytes": { "type": "long" } } } } }, "self": { "properties": { "leaderinfo": { "properties": { "leader": { "type": "keyword", "ignore_above": 256 }, "starttime": { "ignore_above": 256, "type": "keyword" }, "uptime": { "type": "keyword", "ignore_above": 256 } } }, "name": { "ignore_above": 256, "type": "keyword" }, "recv": { "properties": { "appendrequest": { "properties": { "count": { "type": "long" } } }, "bandwidthrate": { "scaling_factor": 1000, "type": "scaled_float" }, "pkgrate": { "type": "scaled_float", "scaling_factor": 1000 } } }, "send": { "properties": { "bandwidthrate": { "scaling_factor": 1000, "type": "scaled_float" }, "pkgrate": { "type": "scaled_float", "scaling_factor": 1000 }, "appendrequest": { "properties": { "count": { "type": "long" } } } } }, "starttime": { "ignore_above": 256, "type": "keyword" }, "state": { "type": "keyword", "ignore_above": 256 }, "id": { "type": "keyword", "ignore_above": 256 } } }, "store": { "properties": { "delete": { "properties": { "success": { "type": "long" }, "fail": { "type": "long" } } }, "create": { "properties": { "success": { "type": "long" }, "fail": { "type": "long" } } }, "compareandswap": { "properties": { "success": { "type": "long" }, "fail": { "type": "long" } } }, "compareanddelete": { "properties": { "success": { "type": "long" }, "fail": { "type": "long" } } }, "watchers": { "type": "long" }, "gets": { "properties": { "success": { "type": "long" }, "fail": { "type": "long" } } }, "update": { "properties": { "success": { "type": "long" }, "fail": { "type": "long" } } }, "expire": { "properties": { "count": { "type": "long" } } }, "sets": { "properties": { "success": { "type": "long" }, "fail": { "type": "long" } } } } }, "api_version": { "type": "keyword", "ignore_above": 256 } } }, "uwsgi": { "properties": { "status": { "properties": { "core": { "properties": { "write_errors": { "type": "long" }, "read_errors": { "type": "long" }, "id": { "type": "long" }, "worker_pid": { "type": "long" }, "requests": { "properties": { "total": { "type": "long" }, "static": { "type": "long" }, "routed": { "type": "long" }, "offloaded": { "type": "long" } } } } }, "total": { "properties": { "pid": { "type": "long" }, "requests": { "type": "long" }, "exceptions": { "type": "long" }, "write_errors": { "type": "long" }, "read_errors": { "type": "long" } } }, "worker": { "properties": { "pid": { "type": "long" }, "signal_queue": { "type": "long" }, "status": { "type": "keyword", "ignore_above": 256 }, "tx": { "type": "long" }, "requests": { "type": "long" }, "signals": { "type": "long" }, "avg_rt": { "type": "long" }, "id": { "type": "long" }, "exceptions": { "type": "long" }, "harakiri_count": { "type": "long" }, "rss": { "ignore_above": 256, "type": "keyword" }, "vsz": { "type": "long" }, "running_time": { "type": "long" }, "respawn_count": { "type": "long" }, "accepting": { "type": "long" }, "delta_requests": { "type": "long" } } } } } } }, "client": { "properties": { "address": { "type": "keyword", "ignore_above": 256 }, "bytes": { "type": "long" }, "geo": { "properties": { "region_iso_code": { "type": "keyword", "ignore_above": 256 }, "region_name": { "type": "keyword", "ignore_above": 256 }, "city_name": { "type": "keyword", "ignore_above": 256 }, "continent_name": { "ignore_above": 256, "type": "keyword" }, "country_iso_code": { "type": "keyword", "ignore_above": 256 }, "country_name": { "type": "keyword", "ignore_above": 256 }, "location": { "type": "geo_point" }, "name": { "type": "keyword", "ignore_above": 256 } } }, "mac": { "ignore_above": 256, "type": "keyword" }, "packets": { "type": "long" }, "port": { "type": "long" }, "domain": { "type": "keyword", "ignore_above": 256 }, "ip": { "type": "ip" }, "user": { "properties": { "group": { "properties": { "name": { "ignore_above": 256, "type": "keyword" }, "id": { "type": "keyword", "ignore_above": 256 } } }, "hash": { "type": "keyword", "ignore_above": 256 }, "id": { "type": "keyword", "ignore_above": 256 }, "name": { "type": "keyword", "ignore_above": 256 }, "email": { "type": "keyword", "ignore_above": 256 }, "full_name": { "type": "keyword", "ignore_above": 256 } } } } }, "source": { "properties": { "address": { "type": "keyword", "ignore_above": 256 }, "bytes": { "type": "long" }, "mac": { "ignore_above": 256, "type": "keyword" }, "port": { "type": "long" }, "domain": { "type": "keyword", "ignore_above": 256 }, "geo": { "properties": { "region_iso_code": { "ignore_above": 256, "type": "keyword" }, "region_name": { "ignore_above": 256, "type": "keyword" }, "city_name": { "type": "keyword", "ignore_above": 256 }, "continent_name": { "type": "keyword", "ignore_above": 256 }, "country_iso_code": { "ignore_above": 256, "type": "keyword" }, "country_name": { "type": "keyword", "ignore_above": 256 }, "location": { "type": "geo_point" }, "name": { "type": "keyword", "ignore_above": 256 } } }, "ip": { "type": "ip" }, "packets": { "type": "long" }, "user": { "properties": { "email": { "type": "keyword", "ignore_above": 256 }, "full_name": { "type": "keyword", "ignore_above": 256 }, "group": { "properties": { "id": { "type": "keyword", "ignore_above": 256 }, "name": { "ignore_above": 256, "type": "keyword" } } }, "hash": { "type": "keyword", "ignore_above": 256 }, "id": { "type": "keyword", "ignore_above": 256 }, "name": { "type": "keyword", "ignore_above": 256 } } } } }, "couchdb": { "properties": { "server": { "properties": { "httpd": { "properties": { "view_reads": { "type": "long" }, "bulk_requests": { "type": "long" }, "clients_requesting_changes": { "type": "long" }, "temporary_view_reads": { "type": "long" }, "requests": { "type": "long" } } }, "httpd_request_methods": { "properties": { "GET": { "type": "long" }, "PUT": { "type": "long" }, "COPY": { "type": "long" }, "HEAD": { "type": "long" }, "POST": { "type": "long" }, "DELETE": { "type": "long" } } }, "httpd_status_codes": { "properties": { "200": { "type": "long" }, "201": { "type": "long" }, "202": { "type": "long" }, "301": { "type": "long" }, "304": { "type": "long" }, "400": { "type": "long" }, "401": { "type": "long" }, "403": { "type": "long" }, "404": { "type": "long" }, "405": { "type": "long" }, "409": { "type": "long" }, "412": { "type": "long" }, "500": { "type": "long" } } }, "couchdb": { "properties": { "request_time": { "type": "long" }, "database_reads": { "type": "long" }, "auth_cache_hits": { "type": "long" }, "open_os_files": { "type": "long" }, "database_writes": { "type": "long" }, "open_databases": { "type": "long" }, "auth_cache_misses": { "type": "long" } } } } } } }, "golang": { "properties": { "expvar": { "properties": { "cmdline": { "type": "keyword", "ignore_above": 256 } } }, "heap": { "properties": { "system": { "properties": { "total": { "type": "long" }, "obtained": { "type": "long" }, "stack": { "type": "long" }, "released": { "type": "long" } } }, "allocations": { "properties": { "allocated": { "type": "long" }, "idle": { "type": "long" }, "active": { "type": "long" }, "mallocs": { "type": "long" }, "frees": { "type": "long" }, "objects": { "type": "long" }, "total": { "type": "long" } } }, "cmdline": { "type": "keyword", "ignore_above": 256 }, "gc": { "properties": { "total_pause": { "properties": { "ns": { "type": "long" } } }, "total_count": { "type": "long" }, "next_gc_limit": { "type": "long" }, "cpu_fraction": { "type": "float" }, "pause": { "properties": { "count": { "type": "long" }, "sum": { "properties": { "ns": { "type": "long" } } }, "max": { "properties": { "ns": { "type": "long" } } }, "avg": { "properties": { "ns": { "type": "long" } } } } } } } } } } }, "group": { "properties": { "id": { "type": "keyword", "ignore_above": 256 }, "name": { "type": "keyword", "ignore_above": 256 } } }, "apache": { "properties": { "status": { "properties": { "load": { "properties": { "1": { "type": "scaled_float", "scaling_factor": 100 }, "5": { "type": "scaled_float", "scaling_factor": 100 }, "15": { "scaling_factor": 100, "type": "scaled_float" } } }, "scoreboard": { "properties": { "sending_reply": { "type": "long" }, "keepalive": { "type": "long" }, "dns_lookup": { "type": "long" }, "closing_connection": { "type": "long" }, "gracefully_finishing": { "type": "long" }, "starting_up": { "type": "long" }, "reading_request": { "type": "long" }, "logging": { "type": "long" }, "idle_cleanup": { "type": "long" }, "open_slot": { "type": "long" }, "waiting_for_connection": { "type": "long" }, "total": { "type": "long" } } }, "total_accesses": { "type": "long" }, "bytes_per_sec": { "type": "scaled_float", "scaling_factor": 1000 }, "bytes_per_request": { "type": "scaled_float", "scaling_factor": 1000 }, "workers": { "properties": { "busy": { "type": "long" }, "idle": { "type": "long" } } }, "cpu": { "properties": { "children_user": { "type": "scaled_float", "scaling_factor": 1000 }, "children_system": { "type": "scaled_float", "scaling_factor": 1000 }, "load": { "scaling_factor": 1000, "type": "scaled_float" }, "user": { "type": "scaled_float", "scaling_factor": 1000 }, "system": { "type": "scaled_float", "scaling_factor": 1000 } } }, "hostname": { "type": "keyword", "ignore_above": 256 }, "total_kbytes": { "type": "long" }, "requests_per_sec": { "type": "scaled_float", "scaling_factor": 1000 }, "uptime": { "properties": { "server_uptime": { "type": "long" }, "uptime": { "type": "long" } } }, "connections": { "properties": { "total": { "type": "long" }, "async": { "properties": { "writing": { "type": "long" }, "keep_alive": { "type": "long" }, "closing": { "type": "long" } } } } } } } } }, "logstash": { "properties": { "node": { "properties": { "stats": { "properties": { "events": { "properties": { "in": { "type": "long" }, "out": { "type": "long" }, "filtered": { "type": "long" } } } } }, "jvm": { "properties": { "version": { "type": "keyword", "ignore_above": 256 } } } } } } }, "mongodb": { "properties": { "metrics": { "properties": { "query_executor": { "properties": { "scanned_indexes": { "type": "long" }, "scanned_documents": { "type": "long" } } }, "storage": { "properties": { "free_list": { "properties": { "search": { "properties": { "bucket_exhausted": { "type": "long" }, "requests": { "type": "long" }, "scanned": { "type": "long" } } } } } } }, "ttl": { "properties": { "deleted_documents": { "type": "long" }, "passes": { "type": "long" } } }, "get_last_error": { "properties": { "write_wait": { "properties": { "ms": { "type": "long" }, "count": { "type": "long" } } }, "write_timeouts": { "type": "long" } } }, "operation": { "properties": { "scan_and_order": { "type": "long" }, "write_conflicts": { "type": "long" } } }, "document": { "properties": { "deleted": { "type": "long" }, "inserted": { "type": "long" }, "returned": { "type": "long" }, "updated": { "type": "long" } } }, "replication": { "properties": { "buffer": { "properties": { "count": { "type": "long" }, "max_size": { "properties": { "bytes": { "type": "long" } } }, "size": { "properties": { "bytes": { "type": "long" } } } } }, "initial_sync": { "properties": { "failures": { "type": "long" }, "completed": { "type": "long" }, "failed_attempts": { "type": "long" } } }, "network": { "properties": { "reders_created": { "type": "long" }, "bytes": { "type": "long" }, "getmores": { "properties": { "count": { "type": "long" }, "time": { "properties": { "ms": { "type": "long" } } } } }, "ops": { "type": "long" } } }, "preload": { "properties": { "docs": { "properties": { "count": { "type": "long" }, "time": { "properties": { "ms": { "type": "long" } } } } }, "indexes": { "properties": { "count": { "type": "long" }, "time": { "properties": { "ms": { "type": "long" } } } } } } }, "executor": { "properties": { "counters": { "properties": { "waits": { "type": "long" }, "scheduled": { "properties": { "netcmd": { "type": "long" }, "dbwork": { "type": "long" }, "exclusive": { "type": "long" }, "work_at": { "type": "long" }, "work": { "type": "long" }, "failures": { "type": "long" } } }, "event_created": { "type": "long" }, "event_wait": { "type": "long" }, "cancels": { "type": "long" } } }, "queues": { "properties": { "free": { "type": "long" }, "in_progress": { "properties": { "network": { "type": "long" }, "dbwork": { "type": "long" }, "exclusive": { "type": "long" } } }, "sleepers": { "type": "long" }, "ready": { "type": "long" } } }, "unsignaled_events": { "type": "long" }, "event_waiters": { "type": "long" }, "shutting_down": { "type": "boolean" }, "network_interface": { "type": "keyword", "ignore_above": 256 } } }, "apply": { "properties": { "ops": { "type": "long" }, "attempts_to_become_secondary": { "type": "long" }, "batches": { "properties": { "count": { "type": "long" }, "time": { "properties": { "ms": { "type": "long" } } } } } } } } }, "commands": { "properties": { "replset_heartbeat": { "properties": { "failed": { "type": "long" }, "total": { "type": "long" } } }, "replset_update_position": { "properties": { "failed": { "type": "long" }, "total": { "type": "long" } } }, "find": { "properties": { "failed": { "type": "long" }, "total": { "type": "long" } } }, "get_parameter": { "properties": { "total": { "type": "long" }, "failed": { "type": "long" } } }, "last_collections": { "properties": { "total": { "type": "long" }, "failed": { "type": "long" } } }, "list_databased": { "properties": { "failed": { "type": "long" }, "total": { "type": "long" } } }, "ping": { "properties": { "failed": { "type": "long" }, "total": { "type": "long" } } }, "build_info": { "properties": { "failed": { "type": "long" }, "total": { "type": "long" } } }, "replset_get_status": { "properties": { "failed": { "type": "long" }, "total": { "type": "long" } } }, "host_info": { "properties": { "total": { "type": "long" }, "failed": { "type": "long" } } }, "distinct": { "properties": { "failed": { "type": "long" }, "total": { "type": "long" } } }, "get_log": { "properties": { "failed": { "type": "long" }, "total": { "type": "long" } } }, "list_indexes": { "properties": { "total": { "type": "long" }, "failed": { "type": "long" } } }, "is_self": { "properties": { "failed": { "type": "long" }, "total": { "type": "long" } } }, "db_stats": { "properties": { "failed": { "type": "long" }, "total": { "type": "long" } } }, "get_cmd_line_opts": { "properties": { "total": { "type": "long" }, "failed": { "type": "long" } } }, "get_last_error": { "properties": { "failed": { "type": "long" }, "total": { "type": "long" } } }, "update": { "properties": { "failed": { "type": "long" }, "total": { "type": "long" } } }, "whatsmyuri": { "properties": { "failed": { "type": "long" }, "total": { "type": "long" } } }, "aggregate": { "properties": { "total": { "type": "long" }, "failed": { "type": "long" } } }, "count": { "properties": { "total": { "type": "long" }, "failed": { "type": "long" } } }, "get_more": { "properties": { "failed": { "type": "long" }, "total": { "type": "long" } } }, "server_status": { "properties": { "failed": { "type": "long" }, "total": { "type": "long" } } }, "connection_pool_stats": { "properties": { "failed": { "type": "long" }, "total": { "type": "long" } } }, "insert": { "properties": { "failed": { "type": "long" }, "total": { "type": "long" } } }, "profile": { "properties": { "total": { "type": "long" }, "failed": { "type": "long" } } }, "replset_get_rbid": { "properties": { "failed": { "type": "long" }, "total": { "type": "long" } } }, "coll_stats": { "properties": { "failed": { "type": "long" }, "total": { "type": "long" } } }, "last_commands": { "properties": { "failed": { "type": "long" }, "total": { "type": "long" } } }, "is_master": { "properties": { "failed": { "type": "long" }, "total": { "type": "long" } } } } }, "cursor": { "properties": { "timed_out": { "type": "long" }, "open": { "properties": { "no_timeout": { "type": "long" }, "pinned": { "type": "long" }, "total": { "type": "long" } } } } } } }, "replstatus": { "properties": { "headroom": { "properties": { "max": { "type": "long" }, "min": { "type": "long" } } }, "members": { "properties": { "primary": { "properties": { "host": { "type": "keyword", "ignore_above": 256 }, "optime": { "ignore_above": 256, "type": "keyword" } } }, "rollback": { "properties": { "hosts": { "type": "keyword", "ignore_above": 256 }, "count": { "type": "long" } } }, "unhealthy": { "properties": { "hosts": { "type": "keyword", "ignore_above": 256 }, "count": { "type": "long" } } }, "down": { "properties": { "hosts": { "type": "keyword", "ignore_above": 256 }, "count": { "type": "long" } } }, "secondary": { "properties": { "optimes": { "type": "keyword", "ignore_above": 256 }, "count": { "type": "long" }, "hosts": { "type": "keyword", "ignore_above": 256 } } }, "recovering": { "properties": { "hosts": { "type": "keyword", "ignore_above": 256 }, "count": { "type": "long" } } }, "unknown": { "properties": { "count": { "type": "long" }, "hosts": { "type": "keyword", "ignore_above": 256 } } }, "startup2": { "properties": { "hosts": { "type": "keyword", "ignore_above": 256 }, "count": { "type": "long" } } }, "arbiter": { "properties": { "hosts": { "type": "keyword", "ignore_above": 256 }, "count": { "type": "long" } } } } }, "oplog": { "properties": { "window": { "type": "long" }, "size": { "properties": { "allocated": { "type": "long" }, "used": { "type": "long" } } }, "first": { "properties": { "timestamp": { "type": "long" } } }, "last": { "properties": { "timestamp": { "type": "long" } } } } }, "set_name": { "type": "keyword", "ignore_above": 256 }, "server_date": { "type": "date" }, "optimes": { "properties": { "durable": { "type": "long" }, "last_committed": { "type": "long" }, "applied": { "type": "long" } } }, "lag": { "properties": { "max": { "type": "long" }, "min": { "type": "long" } } } } }, "status": { "properties": { "background_flushing": { "properties": { "flushes": { "type": "long" }, "total": { "properties": { "ms": { "type": "long" } } }, "average": { "properties": { "ms": { "type": "long" } } }, "last": { "properties": { "ms": { "type": "long" } } }, "last_finished": { "type": "date" } } }, "asserts": { "properties": { "user": { "type": "long" }, "rollovers": { "type": "long" }, "regular": { "type": "long" }, "warning": { "type": "long" }, "msg": { "type": "long" } } }, "ops": { "properties": { "replicated": { "properties": { "delete": { "type": "long" }, "getmore": { "type": "long" }, "command": { "type": "long" }, "insert": { "type": "long" }, "query": { "type": "long" }, "update": { "type": "long" } } }, "latencies": { "properties": { "reads": { "properties": { "latency": { "type": "long" }, "count": { "type": "long" } } }, "writes": { "properties": { "latency": { "type": "long" }, "count": { "type": "long" } } }, "commands": { "properties": { "latency": { "type": "long" }, "count": { "type": "long" } } } } }, "counters": { "properties": { "insert": { "type": "long" }, "query": { "type": "long" }, "update": { "type": "long" }, "delete": { "type": "long" }, "getmore": { "type": "long" }, "command": { "type": "long" } } } } }, "memory": { "properties": { "bits": { "type": "long" }, "resident": { "properties": { "mb": { "type": "long" } } }, "virtual": { "properties": { "mb": { "type": "long" } } }, "mapped": { "properties": { "mb": { "type": "long" } } }, "mapped_with_journal": { "properties": { "mb": { "type": "long" } } } } }, "wired_tiger": { "properties": { "concurrent_transactions": { "properties": { "write": { "properties": { "out": { "type": "long" }, "available": { "type": "long" }, "total_tickets": { "type": "long" } } }, "read": { "properties": { "out": { "type": "long" }, "available": { "type": "long" }, "total_tickets": { "type": "long" } } } } }, "cache": { "properties": { "maximum": { "properties": { "bytes": { "type": "long" } } }, "used": { "properties": { "bytes": { "type": "long" } } }, "dirty": { "properties": { "bytes": { "type": "long" } } }, "pages": { "properties": { "read": { "type": "long" }, "write": { "type": "long" }, "evicted": { "type": "long" } } } } }, "log": { "properties": { "syncs": { "type": "long" }, "size": { "properties": { "bytes": { "type": "long" } } }, "write": { "properties": { "bytes": { "type": "long" } } }, "max_file_size": { "properties": { "bytes": { "type": "long" } } }, "flushes": { "type": "long" }, "writes": { "type": "long" }, "scans": { "type": "long" } } } } }, "local_time": { "type": "date" }, "global_lock": { "properties": { "total_time": { "properties": { "us": { "type": "long" } } }, "current_queue": { "properties": { "total": { "type": "long" }, "readers": { "type": "long" }, "writers": { "type": "long" } } }, "active_clients": { "properties": { "total": { "type": "long" }, "readers": { "type": "long" }, "writers": { "type": "long" } } } } }, "write_backs_queued": { "type": "boolean" }, "uptime": { "properties": { "ms": { "type": "long" } } }, "connections": { "properties": { "current": { "type": "long" }, "available": { "type": "long" }, "total_created": { "type": "long" } } }, "extra_info": { "properties": { "heap_usage": { "properties": { "bytes": { "type": "long" } } }, "page_faults": { "type": "long" } } }, "storage_engine": { "properties": { "name": { "ignore_above": 256, "type": "keyword" } } }, "locks": { "properties": { "global": { "properties": { "acquire": { "properties": { "count": { "properties": { "r": { "type": "long" }, "w": { "type": "long" }, "R": { "type": "long" }, "W": { "type": "long" } } } } }, "wait": { "properties": { "count": { "properties": { "R": { "type": "long" }, "W": { "type": "long" }, "r": { "type": "long" }, "w": { "type": "long" } } }, "us": { "properties": { "r": { "type": "long" }, "w": { "type": "long" }, "R": { "type": "long" }, "W": { "type": "long" } } } } }, "deadlock": { "properties": { "count": { "properties": { "r": { "type": "long" }, "w": { "type": "long" }, "R": { "type": "long" }, "W": { "type": "long" } } } } } } }, "database": { "properties": { "acquire": { "properties": { "count": { "properties": { "R": { "type": "long" }, "W": { "type": "long" }, "r": { "type": "long" }, "w": { "type": "long" } } } } }, "wait": { "properties": { "us": { "properties": { "r": { "type": "long" }, "w": { "type": "long" }, "R": { "type": "long" }, "W": { "type": "long" } } }, "count": { "properties": { "r": { "type": "long" }, "w": { "type": "long" }, "R": { "type": "long" }, "W": { "type": "long" } } } } }, "deadlock": { "properties": { "count": { "properties": { "w": { "type": "long" }, "R": { "type": "long" }, "W": { "type": "long" }, "r": { "type": "long" } } } } } } }, "collection": { "properties": { "acquire": { "properties": { "count": { "properties": { "r": { "type": "long" }, "w": { "type": "long" }, "R": { "type": "long" }, "W": { "type": "long" } } } } }, "wait": { "properties": { "count": { "properties": { "w": { "type": "long" }, "R": { "type": "long" }, "W": { "type": "long" }, "r": { "type": "long" } } }, "us": { "properties": { "r": { "type": "long" }, "w": { "type": "long" }, "R": { "type": "long" }, "W": { "type": "long" } } } } }, "deadlock": { "properties": { "count": { "properties": { "r": { "type": "long" }, "w": { "type": "long" }, "R": { "type": "long" }, "W": { "type": "long" } } } } } } }, "meta_data": { "properties": { "acquire": { "properties": { "count": { "properties": { "r": { "type": "long" }, "w": { "type": "long" }, "R": { "type": "long" }, "W": { "type": "long" } } } } }, "wait": { "properties": { "count": { "properties": { "r": { "type": "long" }, "w": { "type": "long" }, "R": { "type": "long" }, "W": { "type": "long" } } }, "us": { "properties": { "W": { "type": "long" }, "r": { "type": "long" }, "w": { "type": "long" }, "R": { "type": "long" } } } } }, "deadlock": { "properties": { "count": { "properties": { "R": { "type": "long" }, "W": { "type": "long" }, "r": { "type": "long" }, "w": { "type": "long" } } } } } } }, "oplog": { "properties": { "acquire": { "properties": { "count": { "properties": { "r": { "type": "long" }, "w": { "type": "long" }, "R": { "type": "long" }, "W": { "type": "long" } } } } }, "wait": { "properties": { "count": { "properties": { "R": { "type": "long" }, "W": { "type": "long" }, "r": { "type": "long" }, "w": { "type": "long" } } }, "us": { "properties": { "r": { "type": "long" }, "w": { "type": "long" }, "R": { "type": "long" }, "W": { "type": "long" } } } } }, "deadlock": { "properties": { "count": { "properties": { "r": { "type": "long" }, "w": { "type": "long" }, "R": { "type": "long" }, "W": { "type": "long" } } } } } } } } }, "network": { "properties": { "in": { "properties": { "bytes": { "type": "long" } } }, "out": { "properties": { "bytes": { "type": "long" } } }, "requests": { "type": "long" } } }, "journaling": { "properties": { "journaled": { "properties": { "mb": { "type": "long" } } }, "write_to_data_files": { "properties": { "mb": { "type": "long" } } }, "compression": { "type": "long" }, "commits_in_write_lock": { "type": "long" }, "early_commits": { "type": "long" }, "times": { "properties": { "prep_log_buffer": { "properties": { "ms": { "type": "long" } } }, "write_to_journal": { "properties": { "ms": { "type": "long" } } }, "write_to_data_files": { "properties": { "ms": { "type": "long" } } }, "remap_private_view": { "properties": { "ms": { "type": "long" } } }, "commits": { "properties": { "ms": { "type": "long" } } }, "commits_in_write_lock": { "properties": { "ms": { "type": "long" } } }, "dt": { "properties": { "ms": { "type": "long" } } } } }, "commits": { "type": "long" } } } } }, "collstats": { "properties": { "update": { "properties": { "time": { "properties": { "us": { "type": "long" } } }, "count": { "type": "long" } } }, "remove": { "properties": { "time": { "properties": { "us": { "type": "long" } } }, "count": { "type": "long" } } }, "db": { "type": "keyword", "ignore_above": 256 }, "name": { "type": "keyword", "ignore_above": 256 }, "total": { "properties": { "time": { "properties": { "us": { "type": "long" } } }, "count": { "type": "long" } } }, "lock": { "properties": { "write": { "properties": { "count": { "type": "long" }, "time": { "properties": { "us": { "type": "long" } } } } }, "read": { "properties": { "time": { "properties": { "us": { "type": "long" } } }, "count": { "type": "long" } } } } }, "queries": { "properties": { "time": { "properties": { "us": { "type": "long" } } }, "count": { "type": "long" } } }, "getmore": { "properties": { "time": { "properties": { "us": { "type": "long" } } }, "count": { "type": "long" } } }, "commands": { "properties": { "time": { "properties": { "us": { "type": "long" } } }, "count": { "type": "long" } } }, "collection": { "type": "keyword", "ignore_above": 256 }, "insert": { "properties": { "time": { "properties": { "us": { "type": "long" } } }, "count": { "type": "long" } } } } }, "dbstats": { "properties": { "objects": { "type": "long" }, "data_file_version": { "properties": { "major": { "type": "long" }, "minor": { "type": "long" } } }, "collections": { "type": "long" }, "db": { "type": "keyword", "ignore_above": 256 }, "file_size": { "properties": { "bytes": { "type": "long" } } }, "index_size": { "properties": { "bytes": { "type": "long" } } }, "indexes": { "type": "long" }, "num_extents": { "type": "long" }, "storage_size": { "properties": { "bytes": { "type": "long" } } }, "ns_size_mb": { "properties": { "mb": { "type": "long" } } }, "avg_obj_size": { "properties": { "bytes": { "type": "long" } } }, "data_size": { "properties": { "bytes": { "type": "long" } } }, "extent_free_list": { "properties": { "num": { "type": "long" }, "size": { "properties": { "bytes": { "type": "long" } } } } } } } } }, "redis": { "properties": { "keyspace": { "properties": { "id": { "type": "keyword", "ignore_above": 256 }, "avg_ttl": { "type": "long" }, "keys": { "type": "long" }, "expires": { "type": "long" } } }, "info": { "properties": { "cluster": { "properties": { "enabled": { "type": "boolean" } } }, "cpu": { "properties": { "used": { "properties": { "sys": { "type": "scaled_float", "scaling_factor": 1000 }, "sys_children": { "scaling_factor": 1000, "type": "scaled_float" }, "user": { "type": "scaled_float", "scaling_factor": 1000 }, "user_children": { "type": "scaled_float", "scaling_factor": 1000 } } } } }, "replication": { "properties": { "role": { "type": "keyword", "ignore_above": 256 }, "connected_slaves": { "type": "long" }, "master_offset": { "type": "long" }, "backlog": { "properties": { "first_byte_offset": { "type": "long" }, "histlen": { "type": "long" }, "active": { "type": "long" }, "size": { "type": "long" } } }, "master": { "properties": { "link_status": { "ignore_above": 256, "type": "keyword" }, "last_io_seconds_ago": { "type": "long" }, "sync": { "properties": { "in_progress": { "type": "boolean" }, "left_bytes": { "type": "long" }, "last_io_seconds_ago": { "type": "long" } } }, "offset": { "type": "long" }, "second_offset": { "type": "long" } } }, "slave": { "properties": { "offset": { "type": "long" }, "priority": { "type": "long" }, "is_readonly": { "type": "boolean" } } } } }, "server": { "properties": { "git_dirty": { "type": "keyword", "ignore_above": 256 }, "build_id": { "ignore_above": 256, "type": "keyword" }, "arch_bits": { "type": "keyword", "ignore_above": 256 }, "multiplexing_api": { "ignore_above": 256, "type": "keyword" }, "gcc_version": { "type": "keyword", "ignore_above": 256 }, "tcp_port": { "type": "long" }, "uptime": { "type": "long" }, "git_sha1": { "type": "keyword", "ignore_above": 256 }, "hz": { "type": "long" }, "run_id": { "type": "keyword", "ignore_above": 256 }, "lru_clock": { "type": "long" }, "config_file": { "type": "keyword", "ignore_above": 256 }, "mode": { "type": "keyword", "ignore_above": 256 } } }, "slowlog": { "properties": { "count": { "type": "long" } } }, "clients": { "properties": { "connected": { "type": "long" }, "longest_output_list": { "type": "long" }, "max_output_buffer": { "type": "long" }, "biggest_input_buf": { "type": "long" }, "max_input_buffer": { "type": "long" }, "blocked": { "type": "long" } } }, "memory": { "properties": { "allocator": { "type": "keyword", "ignore_above": 256 }, "allocator_stats": { "properties": { "allocated": { "type": "long" }, "active": { "type": "long" }, "resident": { "type": "long" }, "fragmentation": { "properties": { "ratio": { "type": "float" }, "bytes": { "type": "long" } } }, "rss": { "properties": { "ratio": { "type": "float" }, "bytes": { "type": "long" } } } } }, "used": { "properties": { "value": { "type": "long" }, "rss": { "type": "long" }, "peak": { "type": "long" }, "lua": { "type": "long" }, "dataset": { "type": "long" } } }, "max": { "properties": { "value": { "type": "long" }, "policy": { "type": "keyword", "ignore_above": 256 } } }, "fragmentation": { "properties": { "ratio": { "type": "float" }, "bytes": { "type": "long" } } }, "active_defrag": { "properties": { "is_running": { "type": "boolean" } } } } }, "persistence": { "properties": { "loading": { "type": "boolean" }, "rdb": { "properties": { "last_save": { "properties": { "changes_since": { "type": "long" }, "time": { "type": "long" } } }, "bgsave": { "properties": { "current_time": { "properties": { "sec": { "type": "long" } } }, "in_progress": { "type": "boolean" }, "last_status": { "ignore_above": 256, "type": "keyword" }, "last_time": { "properties": { "sec": { "type": "long" } } } } }, "copy_on_write": { "properties": { "last_size": { "type": "long" } } } } }, "aof": { "properties": { "enabled": { "type": "boolean" }, "rewrite": { "properties": { "in_progress": { "type": "boolean" }, "scheduled": { "type": "boolean" }, "last_time": { "properties": { "sec": { "type": "long" } } }, "current_time": { "properties": { "sec": { "type": "long" } } }, "buffer": { "properties": { "size": { "type": "long" } } } } }, "bgrewrite": { "properties": { "last_status": { "type": "keyword", "ignore_above": 256 } } }, "write": { "properties": { "last_status": { "type": "keyword", "ignore_above": 256 } } }, "copy_on_write": { "properties": { "last_size": { "type": "long" } } }, "buffer": { "properties": { "size": { "type": "long" } } }, "size": { "properties": { "current": { "type": "long" }, "base": { "type": "long" } } }, "fsync": { "properties": { "pending": { "type": "long" }, "delayed": { "type": "long" } } } } } } }, "stats": { "properties": { "sync": { "properties": { "full": { "type": "long" }, "partial": { "properties": { "ok": { "type": "long" }, "err": { "type": "long" } } } } }, "keyspace": { "properties": { "hits": { "type": "long" }, "misses": { "type": "long" } } }, "latest_fork_usec": { "type": "long" }, "migrate_cached_sockets": { "type": "long" }, "active_defrag": { "properties": { "misses": { "type": "long" }, "key_hits": { "type": "long" }, "key_misses": { "type": "long" }, "hits": { "type": "long" } } }, "connections": { "properties": { "received": { "type": "long" }, "rejected": { "type": "long" } } }, "net": { "properties": { "input": { "properties": { "bytes": { "type": "long" } } }, "output": { "properties": { "bytes": { "type": "long" } } } } }, "instantaneous": { "properties": { "ops_per_sec": { "type": "long" }, "input_kbps": { "type": "scaled_float", "scaling_factor": 1000 }, "output_kbps": { "type": "scaled_float", "scaling_factor": 1000 } } }, "keys": { "properties": { "expired": { "type": "long" }, "evicted": { "type": "long" } } }, "pubsub": { "properties": { "channels": { "type": "long" }, "patterns": { "type": "long" } } }, "slave_expires_tracked_keys": { "type": "long" }, "commands_processed": { "type": "long" } } } } }, "key": { "properties": { "id": { "ignore_above": 256, "type": "keyword" }, "type": { "type": "keyword", "ignore_above": 256 }, "length": { "type": "long" }, "expire": { "properties": { "ttl": { "type": "long" } } }, "name": { "type": "keyword", "ignore_above": 256 } } } } }, "system": { "properties": { "filesystem": { "properties": { "device_name": { "type": "keyword", "ignore_above": 256 }, "files": { "type": "long" }, "free": { "type": "long" }, "total": { "type": "long" }, "used": { "properties": { "bytes": { "type": "long" }, "pct": { "type": "scaled_float", "scaling_factor": 1000 } } }, "available": { "type": "long" }, "mount_point": { "type": "keyword", "ignore_above": 256 }, "free_files": { "type": "long" }, "type": { "type": "keyword", "ignore_above": 256 } } }, "fsstat": { "properties": { "count": { "type": "long" }, "total_files": { "type": "long" }, "total_size": { "properties": { "free": { "type": "long" }, "used": { "type": "long" }, "total": { "type": "long" } } } } }, "raid": { "properties": { "disks": { "properties": { "active": { "type": "long" }, "total": { "type": "long" }, "spare": { "type": "long" }, "failed": { "type": "long" }, "states": { "properties": { "*": { "type": "object" } } } } }, "blocks": { "properties": { "synced": { "type": "long" }, "total": { "type": "long" } } }, "name": { "type": "keyword", "ignore_above": 256 }, "status": { "type": "keyword", "ignore_above": 256 }, "level": { "type": "keyword", "ignore_above": 256 }, "sync_action": { "type": "keyword", "ignore_above": 256 } } }, "socket": { "properties": { "remote": { "properties": { "host_error": { "type": "keyword", "ignore_above": 256 }, "ip": { "type": "ip" }, "port": { "type": "long" }, "host": { "type": "keyword", "ignore_above": 256 }, "etld_plus_one": { "type": "keyword", "ignore_above": 256 } } }, "process": { "properties": { "cmdline": { "type": "keyword", "ignore_above": 256 } } }, "summary": { "properties": { "all": { "properties": { "count": { "type": "long" }, "listening": { "type": "long" } } }, "tcp": { "properties": { "memory": { "type": "long" }, "all": { "properties": { "orphan": { "type": "long" }, "count": { "type": "long" }, "listening": { "type": "long" }, "established": { "type": "long" }, "close_wait": { "type": "long" }, "time_wait": { "type": "long" } } } } }, "udp": { "properties": { "memory": { "type": "long" }, "all": { "properties": { "count": { "type": "long" } } } } } } }, "local": { "properties": { "ip": { "type": "ip" }, "port": { "type": "long" } } } } }, "uptime": { "properties": { "duration": { "properties": { "ms": { "type": "long" } } } } }, "memory": { "properties": { "actual": { "properties": { "used": { "properties": { "bytes": { "type": "long" }, "pct": { "type": "scaled_float", "scaling_factor": 1000 } } }, "free": { "type": "long" } } }, "swap": { "properties": { "total": { "type": "long" }, "used": { "properties": { "bytes": { "type": "long" }, "pct": { "type": "scaled_float", "scaling_factor": 1000 } } }, "free": { "type": "long" } } }, "hugepages": { "properties": { "total": { "type": "long" }, "used": { "properties": { "bytes": { "type": "long" }, "pct": { "type": "long" } } }, "free": { "type": "long" }, "reserved": { "type": "long" }, "surplus": { "type": "long" }, "default_size": { "type": "long" } } }, "total": { "type": "long" }, "used": { "properties": { "pct": { "scaling_factor": 1000, "type": "scaled_float" }, "bytes": { "type": "long" } } }, "free": { "type": "long" } } }, "network": { "properties": { "name": { "type": "keyword", "ignore_above": 256 }, "out": { "properties": { "bytes": { "type": "long" }, "packets": { "type": "long" }, "errors": { "type": "long" }, "dropped": { "type": "long" } } }, "in": { "properties": { "bytes": { "type": "long" }, "packets": { "type": "long" }, "errors": { "type": "long" }, "dropped": { "type": "long" } } } } }, "process": { "properties": { "fd": { "properties": { "open": { "type": "long" }, "limit": { "properties": { "soft": { "type": "long" }, "hard": { "type": "long" } } } } }, "cgroup": { "properties": { "path": { "type": "keyword", "ignore_above": 256 }, "cpu": { "properties": { "id": { "type": "keyword", "ignore_above": 256 }, "path": { "type": "keyword", "ignore_above": 256 }, "cfs": { "properties": { "period": { "properties": { "us": { "type": "long" } } }, "quota": { "properties": { "us": { "type": "long" } } }, "shares": { "type": "long" } } }, "rt": { "properties": { "period": { "properties": { "us": { "type": "long" } } }, "runtime": { "properties": { "us": { "type": "long" } } } } }, "stats": { "properties": { "periods": { "type": "long" }, "throttled": { "properties": { "periods": { "type": "long" }, "ns": { "type": "long" } } } } } } }, "cpuacct": { "properties": { "stats": { "properties": { "user": { "properties": { "ns": { "type": "long" } } }, "system": { "properties": { "ns": { "type": "long" } } } } }, "percpu": { "type": "object" }, "id": { "type": "keyword", "ignore_above": 256 }, "path": { "type": "keyword", "ignore_above": 256 }, "total": { "properties": { "ns": { "type": "long" } } } } }, "memory": { "properties": { "stats": { "properties": { "hierarchical_memory_limit": { "properties": { "bytes": { "type": "long" } } }, "hierarchical_memsw_limit": { "properties": { "bytes": { "type": "long" } } }, "inactive_anon": { "properties": { "bytes": { "type": "long" } } }, "inactive_file": { "properties": { "bytes": { "type": "long" } } }, "unevictable": { "properties": { "bytes": { "type": "long" } } }, "active_anon": { "properties": { "bytes": { "type": "long" } } }, "active_file": { "properties": { "bytes": { "type": "long" } } }, "mapped_file": { "properties": { "bytes": { "type": "long" } } }, "major_page_faults": { "type": "long" }, "rss": { "properties": { "bytes": { "type": "long" } } }, "swap": { "properties": { "bytes": { "type": "long" } } }, "cache": { "properties": { "bytes": { "type": "long" } } }, "page_faults": { "type": "long" }, "pages_in": { "type": "long" }, "pages_out": { "type": "long" }, "rss_huge": { "properties": { "bytes": { "type": "long" } } } } }, "id": { "type": "keyword", "ignore_above": 256 }, "path": { "type": "keyword", "ignore_above": 256 }, "mem": { "properties": { "usage": { "properties": { "bytes": { "type": "long" }, "max": { "properties": { "bytes": { "type": "long" } } } } }, "limit": { "properties": { "bytes": { "type": "long" } } }, "failures": { "type": "long" } } }, "memsw": { "properties": { "usage": { "properties": { "bytes": { "type": "long" }, "max": { "properties": { "bytes": { "type": "long" } } } } }, "limit": { "properties": { "bytes": { "type": "long" } } }, "failures": { "type": "long" } } }, "kmem": { "properties": { "usage": { "properties": { "bytes": { "type": "long" }, "max": { "properties": { "bytes": { "type": "long" } } } } }, "limit": { "properties": { "bytes": { "type": "long" } } }, "failures": { "type": "long" } } }, "kmem_tcp": { "properties": { "usage": { "properties": { "bytes": { "type": "long" }, "max": { "properties": { "bytes": { "type": "long" } } } } }, "limit": { "properties": { "bytes": { "type": "long" } } }, "failures": { "type": "long" } } } } }, "blkio": { "properties": { "path": { "type": "keyword", "ignore_above": 256 }, "total": { "properties": { "bytes": { "type": "long" }, "ios": { "type": "long" } } }, "id": { "type": "keyword", "ignore_above": 256 } } }, "id": { "type": "keyword", "ignore_above": 256 } } }, "summary": { "properties": { "zombie": { "type": "long" }, "dead": { "type": "long" }, "unknown": { "type": "long" }, "total": { "type": "long" }, "running": { "type": "long" }, "idle": { "type": "long" }, "sleeping": { "type": "long" }, "stopped": { "type": "long" } } }, "state": { "type": "keyword", "ignore_above": 256 }, "cmdline": { "type": "keyword", "ignore_above": 2048 }, "env": { "type": "object" }, "cpu": { "properties": { "start_time": { "type": "date" }, "user": { "properties": { "ticks": { "type": "long" } } }, "total": { "properties": { "ticks": { "type": "long" }, "value": { "type": "long" }, "pct": { "type": "scaled_float", "scaling_factor": 1000 }, "norm": { "properties": { "pct": { "type": "scaled_float", "scaling_factor": 1000 } } } } }, "system": { "properties": { "ticks": { "type": "long" } } } } }, "memory": { "properties": { "size": { "type": "long" }, "rss": { "properties": { "bytes": { "type": "long" }, "pct": { "type": "scaled_float", "scaling_factor": 1000 } } }, "share": { "type": "long" } } } } }, "core": { "properties": { "idle": { "properties": { "pct": { "type": "scaled_float", "scaling_factor": 1000 }, "ticks": { "type": "long" } } }, "steal": { "properties": { "pct": { "scaling_factor": 1000, "type": "scaled_float" }, "ticks": { "type": "long" } } }, "system": { "properties": { "pct": { "type": "scaled_float", "scaling_factor": 1000 }, "ticks": { "type": "long" } } }, "nice": { "properties": { "pct": { "type": "scaled_float", "scaling_factor": 1000 }, "ticks": { "type": "long" } } }, "iowait": { "properties": { "pct": { "type": "scaled_float", "scaling_factor": 1000 }, "ticks": { "type": "long" } } }, "irq": { "properties": { "pct": { "type": "scaled_float", "scaling_factor": 1000 }, "ticks": { "type": "long" } } }, "softirq": { "properties": { "pct": { "type": "scaled_float", "scaling_factor": 1000 }, "ticks": { "type": "long" } } }, "id": { "type": "long" }, "user": { "properties": { "pct": { "type": "scaled_float", "scaling_factor": 1000 }, "ticks": { "type": "long" } } } } }, "cpu": { "properties": { "cores": { "type": "long" }, "user": { "properties": { "pct": { "type": "scaled_float", "scaling_factor": 1000 }, "norm": { "properties": { "pct": { "type": "scaled_float", "scaling_factor": 1000 } } }, "ticks": { "type": "long" } } }, "system": { "properties": { "pct": { "type": "scaled_float", "scaling_factor": 1000 }, "norm": { "properties": { "pct": { "type": "scaled_float", "scaling_factor": 1000 } } }, "ticks": { "type": "long" } } }, "irq": { "properties": { "pct": { "type": "scaled_float", "scaling_factor": 1000 }, "norm": { "properties": { "pct": { "type": "scaled_float", "scaling_factor": 1000 } } }, "ticks": { "type": "long" } } }, "softirq": { "properties": { "norm": { "properties": { "pct": { "type": "scaled_float", "scaling_factor": 1000 } } }, "ticks": { "type": "long" }, "pct": { "type": "scaled_float", "scaling_factor": 1000 } } }, "steal": { "properties": { "pct": { "type": "scaled_float", "scaling_factor": 1000 }, "norm": { "properties": { "pct": { "type": "scaled_float", "scaling_factor": 1000 } } }, "ticks": { "type": "long" } } }, "total": { "properties": { "pct": { "type": "scaled_float", "scaling_factor": 1000 }, "norm": { "properties": { "pct": { "scaling_factor": 1000, "type": "scaled_float" } } } } }, "nice": { "properties": { "pct": { "type": "scaled_float", "scaling_factor": 1000 }, "norm": { "properties": { "pct": { "type": "scaled_float", "scaling_factor": 1000 } } }, "ticks": { "type": "long" } } }, "idle": { "properties": { "pct": { "type": "scaled_float", "scaling_factor": 1000 }, "norm": { "properties": { "pct": { "type": "scaled_float", "scaling_factor": 1000 } } }, "ticks": { "type": "long" } } }, "iowait": { "properties": { "pct": { "type": "scaled_float", "scaling_factor": 1000 }, "norm": { "properties": { "pct": { "type": "scaled_float", "scaling_factor": 1000 } } }, "ticks": { "type": "long" } } } } }, "diskio": { "properties": { "read": { "properties": { "time": { "type": "long" }, "count": { "type": "long" }, "bytes": { "type": "long" } } }, "write": { "properties": { "count": { "type": "long" }, "bytes": { "type": "long" }, "time": { "type": "long" } } }, "io": { "properties": { "time": { "type": "long" } } }, "iostat": { "properties": { "request": { "properties": { "avg_size": { "type": "float" } } }, "queue": { "properties": { "avg_size": { "type": "float" } } }, "await": { "type": "float" }, "service_time": { "type": "float" }, "busy": { "type": "float" }, "read": { "properties": { "await": { "type": "float" }, "request": { "properties": { "merges_per_sec": { "type": "float" }, "per_sec": { "type": "float" } } }, "per_sec": { "properties": { "bytes": { "type": "float" } } } } }, "write": { "properties": { "request": { "properties": { "merges_per_sec": { "type": "float" }, "per_sec": { "type": "float" } } }, "per_sec": { "properties": { "bytes": { "type": "float" } } }, "await": { "type": "float" } } } } }, "name": { "type": "keyword", "ignore_above": 256 }, "serial_number": { "type": "keyword", "ignore_above": 256 } } }, "entropy": { "properties": { "available_bits": { "type": "long" }, "pct": { "type": "scaled_float", "scaling_factor": 1000 } } }, "load": { "properties": { "1": { "type": "scaled_float", "scaling_factor": 100 }, "5": { "type": "scaled_float", "scaling_factor": 100 }, "15": { "scaling_factor": 100, "type": "scaled_float" }, "norm": { "properties": { "1": { "type": "scaled_float", "scaling_factor": 100 }, "5": { "type": "scaled_float", "scaling_factor": 100 }, "15": { "type": "scaled_float", "scaling_factor": 100 } } }, "cores": { "type": "long" } } } } }, "user": { "properties": { "hash": { "type": "keyword", "ignore_above": 256 }, "id": { "type": "keyword", "ignore_above": 256 }, "name": { "type": "keyword", "ignore_above": 256 }, "email": { "type": "keyword", "ignore_above": 256 }, "full_name": { "type": "keyword", "ignore_above": 256 }, "group": { "properties": { "id": { "type": "keyword", "ignore_above": 256 }, "name": { "type": "keyword", "ignore_above": 256 } } } } }, "windows": { "properties": { "service": { "properties": { "display_name": { "type": "keyword", "ignore_above": 256 }, "start_name": { "type": "keyword", "ignore_above": 256 }, "exit_code": { "type": "keyword", "ignore_above": 256 }, "pid": { "type": "long" }, "id": { "type": "keyword", "ignore_above": 256 }, "name": { "type": "keyword", "ignore_above": 256 }, "start_type": { "type": "keyword", "ignore_above": 256 }, "path_name": { "ignore_above": 256, "type": "keyword" }, "state": { "type": "keyword", "ignore_above": 256 }, "uptime": { "properties": { "ms": { "type": "long" } } } } } } } } }, "aliases": {} }