En esta página se pretende identificar los distintos tipos de log que podemos encontrar en los index-pattern de cada aplicación FundeWebJS en LAGAR, así como describir cada campo para poder conocer en profundidad la estructura de dichos logs.
Además, se enumerará el listado de objetos predeterminados (consultas, visualizaciones y paneles) que se proporciona desde MNCS cuando se realiza el alta de la aplicación en LAGAR.
Por último se explicará cómo loggear en nuestro backend java para que aparezcan en LAGAR automáticamente nuevos campos por los que poder consultar y filtrar de manera más ágil y eficiente.
Lo primero que hay que mencionar a la hora de hablar de los logs en FundeWebJS es que nuestras aplicaciones pueden tener parte front en VUE (aplicación UI) y parte backend en Java/Spring Boot (aplicación API).
Esto implica que tenemos dos servidores web (uno para la parte UI y otro para API) que están mandando logs al mismo index-pattern de nuestra aplicacion en LAGAR.
Un index-pattern en LAGAR es la colección de todos los índices de nuestra aplicación en un mismo entorno. Por ejemplo, si tenemos un index-pattern k8s-consultaexp-ns-desa@*, este index-pattern contendrá todos los logs de la aplicación "Consulta de Expedientes" en el entorno de desarrollo.
Dicho esto, podemos distinguir los siguientes tipos de log.
Logs de peticiones HTTP (Accesslog). El típico log access de apache que podemos encontrar en nuestras aplicaciones FundeWeb normales. Por ejemplo: Fichero accesslog de Portalfundeweb.
155.54.228.21 - - [07/Jun/2021:17:32:55 +0000] "GET /consultaexpedientes/rest/v1.0/private/titulaciones/XXXXXXX HTTP/1.1" 200 769 "https://micampusdesa.um.es/consulta/expedienteacademico/" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.77 Safari/537.36" "155.54.67.188" 340 |
Logs del backend Java/Spring-Boot (Log4j2). El log java habitual de nuestros servicios en la parte API, configurados como se indica en la página: 12. Logs en Spring Boot. En equivalente FundeWeb, el habitual log application de nuestra aplicación.
{
"line_number": 377,
"class": "es.um.atica.consultaexpedientesbackend.rest.RestExpedientes",
"@version": 1,
"source_host": "consultaexp-api-deployment-desa-5499587c9f-kx8gs",
"message": " ############################################### titulaciones: XXXXXXX",
"thread_name": "http-nio-8080-exec-10",
"_@timestamp": "2021-06-07T17:32:54.983+00:00",
"level": "INFO",
"file": "RestExpedientes.java",
"method": "getTitulaciones",
"logger_name": "es.um.atica.consultaexpedientesbackend.rest.RestExpedientes"
} |
Tanto UI como API mandan a LAGAR logs de tipo Accesslog. Solo API manda a LAGAR logs de tipo Log4j2. |
En cada registro de LAGAR para aplicaciones FundeWebJS tenemos dos campos que nos indicarán rápidamente el tipo de log con el que estamos trabajando:
Con la combinación de estos campos podemos saber el tipo de log y el servicio que está generando el log.
Ejemplo: "Quiero ver todos los logs de mi servicio en el backend java" => Establecemos el filtro kubernetes.log.type: kub
Desde MNCS se proporcionan varias consultas guardadas donde están configurados filtros sobre estos campos. Se mostrarán en el siguiente apartado.
Efectivamente, los logs de aplicaciones FundeWebJS se almacenan en LAGAR como un gran documento JSON.
Este JSON contiene de forma encapsulada el log de la aplicación/accesslog, los metadatos de Kubernetes y los metadatos de Elastic.
{
"_index": "k8s-consultaexp-ns-desa@2021.23",
"_type": "_doc",
"_id": "MvlS7HkBt6ITkvetuPXP",
"_version": 1,
"_score": null,
"_source": {
"source": {
"ip": "155.54.67.188"
},
"user": {
"email": "-"
},
"time": "2021-06-08T15:51:53.627305882Z",
"kubernetes": {
"labels": {
"author": "campusvirtual",
"app": "api",
"pod-template-hash": "5499587c9f"
},
"namespace_name": "consultaexp-ns-desa",
"host": "155.54.228.21",
"docker_id": "ebf5e81608c2d6b3bd25f16c81b9931ac6810595086c6ea1e9fbf880cf74d5d2",
"pod_id": "48733f4e-9f95-40ae-a560-373154829bc8",
"log": {
"type": "kube_acces_log"
},
"container_name": "api",
"annotations": {
"cni.projectcalico.org/podIP": "10.42.148.90/32",
"field.cattle.io/ports": "[[{\"containerPort\":8080,\"dnsName\":\"consultaexp-api-deployment-desa\",\"kind\":\"ClusterIP\",\"name\":\"8080tcp2\",\"protocol\":\"TCP\"}]]",
"cattle.io/timestamp": "2021-02-04T12:09:09Z",
"cni.projectcalico.org/podIPs": "10.42.148.90/32",
"field.cattle.io/publicEndpoints": "[{\"addresses\":[\"155.54.228.21\",\"155.54.228.22\",\"155.54.228.23\"],\"hostname\":\"micampusdesa.um.es\",\"ingressId\":\"consultaexp-ns-desa:consultaexp-api-ingress-desa\",\"path\":\"/consulta/expedienteacademico\",\"port\":80,\"protocol\":\"HTTP\",\"serviceId\":\"consultaexp-ns-desa:consultaexp-api-service-desa\"}]"
},
"container_hash": "registry.um.es:443/mncs/consulta-expedientes-api@sha256:53d5dc41868a6dc36523c8c75d0ae9372b2c4d38729256ac0ce0d96348a7acd8",
"container_image": "registry.um.es:443/mncs/consulta-expedientes-api:0.0.540570",
"pod_name": "consultaexp-api-deployment-desa-5499587c9f-kx8gs"
},
"http": {
"access": {
"time": "08/Jun/2021:15:51:53 +0000"
},
"response": {
"status_code": "200",
"body": {
"bytes": "769",
"delay": "292"
}
},
"request": {
"method": "GET",
"referer": "https://micampusdesa.um.es/consulta/expedienteacademico/"
},
"user_agent": {
"original": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.77 Safari/537.36"
},
"version": "1.1"
},
"@timestamp": "2021-06-08T15:51:53.000Z",
"log": "10.42.49.192 - - [08/Jun/2021:15:51:53 +0000] \"GET /consultaexpedientes/rest/v1.0/private/titulaciones/XXXXXX HTTP/1.1\" 200 769 \"https://micampusdesa.um.es/consulta/expedienteacademico/\" \"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.77 Safari/537.36\" \"155.54.67.188\" 292\n",
"message": "{\"_@timestamp\":1623167513.627306,\"log\":\"10.42.49.192 - - [08/Jun/2021:15:51:53 +0000] \\\"GET /consultaexpedientes/rest/v1.0/private/titulaciones/23274740 HTTP/1.1\\\" 200 769 \\\"https://micampusdesa.um.es/consulta/expedienteacademico/\\\" \\\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.77 Safari/537.36\\\" \\\"155.54.67.188\\\" 292\\n\",\"stream\":\"stdout\",\"time\":\"2021-06-08T15:51:53.627305882Z\",\"kubernetes\":{\"pod_name\":\"consultaexp-api-deployment-desa-5499587c9f-kx8gs\",\"namespace_name\":\"consultaexp-ns-desa\",\"pod_id\":\"48733f4e-9f95-40ae-a560-373154829bc8\",\"labels\":{\"app\":\"api\",\"author\":\"campusvirtual\",\"pod-template-hash\":\"5499587c9f\"},\"annotations\":{\"cattle.io/timestamp\":\"2021-02-04T12:09:09Z\",\"cni.projectcalico.org/podIP\":\"10.42.148.90/32\",\"cni.projectcalico.org/podIPs\":\"10.42.148.90/32\",\"field.cattle.io/ports\":\"[[{\\\"containerPort\\\":8080,\\\"dnsName\\\":\\\"consultaexp-api-deployment-desa\\\",\\\"kind\\\":\\\"ClusterIP\\\",\\\"name\\\":\\\"8080tcp2\\\",\\\"protocol\\\":\\\"TCP\\\"}]]\",\"field.cattle.io/publicEndpoints\":\"[{\\\"addresses\\\":[\\\"155.54.228.21\\\",\\\"155.54.228.22\\\",\\\"155.54.228.23\\\"],\\\"hostname\\\":\\\"micampusdesa.um.es\\\",\\\"ingressId\\\":\\\"consultaexp-ns-desa:consultaexp-api-ingress-desa\\\",\\\"path\\\":\\\"/consulta/expedienteacademico\\\",\\\"port\\\":80,\\\"protocol\\\":\\\"HTTP\\\",\\\"serviceId\\\":\\\"consultaexp-ns-desa:consultaexp-api-service-desa\\\"}]\"},\"host\":\"155.54.228.21\",\"container_name\":\"api\",\"docker_id\":\"ebf5e81608c2d6b3bd25f16c81b9931ac6810595086c6ea1e9fbf880cf74d5d2\",\"container_hash\":\"registry.um.es:443/mncs/consulta-expedientes-api@sha256:53d5dc41868a6dc36523c8c75d0ae9372b2c4d38729256ac0ce0d96348a7acd8\",\"container_image\":\"registry.um.es:443/mncs/consulta-expedientes-api:0.0.540570\"}}",
"stream": "stdout",
"@version": "1",
"url": {
"path": "/consultaexpedientes/rest/v1.0/private/titulaciones/XXXXXX"
},
"geoip": {
"country_code3": "ES",
"ip": "155.54.67.188",
"timezone": "Europe/Madrid",
"latitude": 37.987,
"region_name": "Murcia",
"country_name": "Spain",
"location": {
"lon": -1.13,
"lat": 37.987
},
"country_code2": "ES",
"city_name": "Murcia",
"postal_code": "30001",
"longitude": -1.13,
"region_code": "MU",
"continent_code": "EU"
},
"cluster": {
"ip": "10.42.49.192"
}
},
"fields": {
"@timestamp": [
"2021-06-08T15:51:53.000Z"
],
"kubernetes.annotations.cattle.io/timestamp": [
"2021-02-04T12:09:09.000Z"
],
"time": [
"2021-06-08T15:51:53.627Z"
]
},
"highlight": {
"kubernetes.log.type.keyword": [
"@kibana-highlighted-field@kube_acces_log@/kibana-highlighted-field@"
]
},
"sort": [
1623167513000
]
} |
{
"_index": "k8s-consultaexp-ns-desa@2021.23",
"_type": "_doc",
"_id": "wBBS7HkBrJTgiCWTs8ib",
"_version": 1,
"_score": null,
"_source": {
"tags": [
"_grokparsefailure",
"_geoip_lookup_failure"
],
"@version": "1",
"time": "2021-06-08T15:51:53.335846939Z",
"kubernetes": {
"labels": {
"author": "campusvirtual",
"app": "api",
"pod-template-hash": "5499587c9f"
},
"namespace_name": "consultaexp-ns-desa",
"host": "155.54.228.21",
"docker_id": "ebf5e81608c2d6b3bd25f16c81b9931ac6810595086c6ea1e9fbf880cf74d5d2",
"pod_id": "48733f4e-9f95-40ae-a560-373154829bc8",
"log": {
"type": "kube_apli"
},
"container_name": "api",
"annotations": {
"cni.projectcalico.org/podIP": "10.42.148.90/32",
"field.cattle.io/ports": "[[{\"containerPort\":8080,\"dnsName\":\"consultaexp-api-deployment-desa\",\"kind\":\"ClusterIP\",\"name\":\"8080tcp2\",\"protocol\":\"TCP\"}]]",
"cattle.io/timestamp": "2021-02-04T12:09:09Z",
"cni.projectcalico.org/podIPs": "10.42.148.90/32",
"field.cattle.io/publicEndpoints": "[{\"addresses\":[\"155.54.228.21\",\"155.54.228.22\",\"155.54.228.23\"],\"hostname\":\"micampusdesa.um.es\",\"ingressId\":\"consultaexp-ns-desa:consultaexp-api-ingress-desa\",\"path\":\"/consulta/expedienteacademico\",\"port\":80,\"protocol\":\"HTTP\",\"serviceId\":\"consultaexp-ns-desa:consultaexp-api-service-desa\"}]"
},
"container_hash": "registry.um.es:443/mncs/consulta-expedientes-api@sha256:53d5dc41868a6dc36523c8c75d0ae9372b2c4d38729256ac0ce0d96348a7acd8",
"container_image": "registry.um.es:443/mncs/consulta-expedientes-api:0.0.540570",
"pod_name": "consultaexp-api-deployment-desa-5499587c9f-kx8gs"
},
"@timestamp": "2021-06-08T15:51:53.335Z",
"log": "{\"line_number\":377,\"class\":\"es.um.atica.consultaexpedientesbackend.rest.RestExpedientes\",\"@version\":1,\"source_host\":\"consultaexp-api-deployment-desa-5499587c9f-kx8gs\",\"message\":\" ############################################### titulaciones: XXXXX\",\"thread_name\":\"http-nio-8080-exec-6\",\"_@timestamp\":\"2021-06-08T15:51:53.335+00:00\",\"level\":\"INFO\",\"file\":\"RestExpedientes.java\",\"method\":\"getTitulaciones\",\"logger_name\":\"es.um.atica.consultaexpedientesbackend.rest.RestExpedientes\"}\n",
"log_processed": {
"class": "es.um.atica.consultaexpedientesbackend.rest.RestExpedientes",
"level": "INFO",
"_@timestamp": "2021-06-08T15:51:53.335+00:00",
"message": " ############################################### titulaciones: XXXXX",
"file": "RestExpedientes.java",
"method": "getTitulaciones",
"@version": 1,
"logger_name": "es.um.atica.consultaexpedientesbackend.rest.RestExpedientes",
"thread_name": "http-nio-8080-exec-6",
"line_number": 377,
"source_host": "consultaexp-api-deployment-desa-5499587c9f-kx8gs"
},
"message": "{\"_@timestamp\":1623167513.335847,\"log\":\"{\\\"line_number\\\":377,\\\"class\\\":\\\"es.um.atica.consultaexpedientesbackend.rest.RestExpedientes\\\",\\\"@version\\\":1,\\\"source_host\\\":\\\"consultaexp-api-deployment-desa-5499587c9f-kx8gs\\\",\\\"message\\\":\\\" ############################################### titulaciones: XXXXX\\\",\\\"thread_name\\\":\\\"http-nio-8080-exec-6\\\",\\\"_@timestamp\\\":\\\"2021-06-08T15:51:53.335+00:00\\\",\\\"level\\\":\\\"INFO\\\",\\\"file\\\":\\\"RestExpedientes.java\\\",\\\"method\\\":\\\"getTitulaciones\\\",\\\"logger_name\\\":\\\"es.um.atica.consultaexpedientesbackend.rest.RestExpedientes\\\"}\\n\",\"stream\":\"stdout\",\"time\":\"2021-06-08T15:51:53.335846939Z\",\"log_processed\":{\"line_number\":377,\"class\":\"es.um.atica.consultaexpedientesbackend.rest.RestExpedientes\",\"@version\":1,\"source_host\":\"consultaexp-api-deployment-desa-5499587c9f-kx8gs\",\"message\":\" ############################################### titulaciones: XXXXX\",\"thread_name\":\"http-nio-8080-exec-6\",\"_@timestamp\":\"2021-06-08T15:51:53.335+00:00\",\"level\":\"INFO\",\"file\":\"RestExpedientes.java\",\"method\":\"getTitulaciones\",\"logger_name\":\"es.um.atica.consultaexpedientesbackend.rest.RestExpedientes\"},\"kubernetes\":{\"pod_name\":\"consultaexp-api-deployment-desa-5499587c9f-kx8gs\",\"namespace_name\":\"consultaexp-ns-desa\",\"pod_id\":\"48733f4e-9f95-40ae-a560-373154829bc8\",\"labels\":{\"app\":\"api\",\"author\":\"campusvirtual\",\"pod-template-hash\":\"5499587c9f\"},\"annotations\":{\"cattle.io/timestamp\":\"2021-02-04T12:09:09Z\",\"cni.projectcalico.org/podIP\":\"10.42.148.90/32\",\"cni.projectcalico.org/podIPs\":\"10.42.148.90/32\",\"field.cattle.io/ports\":\"[[{\\\"containerPort\\\":8080,\\\"dnsName\\\":\\\"consultaexp-api-deployment-desa\\\",\\\"kind\\\":\\\"ClusterIP\\\",\\\"name\\\":\\\"8080tcp2\\\",\\\"protocol\\\":\\\"TCP\\\"}]]\",\"field.cattle.io/publicEndpoints\":\"[{\\\"addresses\\\":[\\\"155.54.228.21\\\",\\\"155.54.228.22\\\",\\\"155.54.228.23\\\"],\\\"hostname\\\":\\\"micampusdesa.um.es\\\",\\\"ingressId\\\":\\\"consultaexp-ns-desa:consultaexp-api-ingress-desa\\\",\\\"path\\\":\\\"/consulta/expedienteacademico\\\",\\\"port\\\":80,\\\"protocol\\\":\\\"HTTP\\\",\\\"serviceId\\\":\\\"consultaexp-ns-desa:consultaexp-api-service-desa\\\"}]\"},\"host\":\"155.54.228.21\",\"container_name\":\"api\",\"docker_id\":\"ebf5e81608c2d6b3bd25f16c81b9931ac6810595086c6ea1e9fbf880cf74d5d2\",\"container_hash\":\"registry.um.es:443/mncs/consulta-expedientes-api@sha256:53d5dc41868a6dc36523c8c75d0ae9372b2c4d38729256ac0ce0d96348a7acd8\",\"container_image\":\"registry.um.es:443/mncs/consulta-expedientes-api:0.0.540570\"}}",
"stream": "stdout"
},
"fields": {
"@timestamp": [
"2021-06-08T15:51:53.335Z"
],
"kubernetes.annotations.cattle.io/timestamp": [
"2021-02-04T12:09:09.000Z"
],
"time": [
"2021-06-08T15:51:53.335Z"
],
"log_processed._@timestamp": [
"2021-06-08T15:51:53.335Z"
]
},
"highlight": {
"kubernetes.log.type": [
"@kibana-highlighted-field@kube_apli@/kibana-highlighted-field@"
],
"kubernetes.container_name.keyword": [
"@kibana-highlighted-field@api@/kibana-highlighted-field@"
]
},
"sort": [
1623167513335
]
} |
<table class="table table-condensed kbnDocViewerTable"><tbody><tr data-test-subj="tableDocViewRow-@timestamp"><td class="kbnDocViewer__buttons"><span class="euiToolTipAnchor"><button class="euiButtonIcon euiButtonIcon--primary kbnDocViewer__actionButton" type="button" aria-label="Filter for value" data-test-subj="addInclusiveFilterButton"><svg width="16" height="16" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" class="euiIcon euiIcon--small euiButtonIcon__icon" focusable="false" role="img" aria-hidden="true"><path d="M7 6h2.5a.5.5 0 010 1H7v2.5a.5.5 0 01-1 0V7H3.5a.5.5 0 010-1H6V3.5a.5.5 0 011 0V6zm3.24 4.74c0-.117.04-.225.107-.31A5.478 5.478 0 0012 6.5 5.5 5.5 0 106.5 12a.5.5 0 110 1 6.5 6.5 0 114.936-2.27l4.419 4.418a.5.5 0 01-.707.707l-4.768-4.768a.499.499 0 01-.14-.347z"></path></svg></button></span><span class="euiToolTipAnchor"><button class="euiButtonIcon euiButtonIcon--primary kbnDocViewer__actionButton" type="button" aria-label="Filter out value" data-test-subj="removeInclusiveFilterButton"><svg width="16" height="16" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" class="euiIcon euiIcon--small euiButtonIcon__icon" focusable="false" role="img" aria-hidden="true"><path d="M9.5 6a.5.5 0 010 1h-6a.5.5 0 010-1h6zm.74 4.74c0-.117.04-.225.107-.31A5.478 5.478 0 0012 6.5 5.5 5.5 0 106.5 12a.5.5 0 110 1 6.5 6.5 0 114.936-2.27l4.419 4.418a.5.5 0 01-.707.707l-4.768-4.768a.499.499 0 01-.14-.347z"></path></svg></button></span><span class="euiToolTipAnchor"><button class="euiButtonIcon euiButtonIcon--primary kbnDocViewer__actionButton" type="button" aria-label="Toggle column in table" aria-pressed="false" data-test-subj="toggleColumnButton"><svg width="16" height="16" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" class="euiIcon euiIcon--small euiButtonIcon__icon" focusable="false" role="img" aria-hidden="true"><path d="M1 1v14h14V1H1zM0 0h16v16H0V0zm9 1v14h1V1H9zM3 3.5h4v-1H3v1zm0 3h4v-1H3v1zm0 3h4v-1H3v1z"></path></svg></button></span><span class="euiToolTipAnchor"><button class="euiButtonIcon euiButtonIcon--primary kbnDocViewer__actionButton" type="button" aria-label="Filter for field present" data-test-subj="addExistsFilterButton"><svg width="16" height="16" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" class="euiIcon euiIcon--small euiButtonIcon__icon" focusable="false" role="img" aria-hidden="true"><path d="M12 2H2v11h6v1H1V1h12v6h-1V2zM5 5h5.999V4H5v1zM3 5V4h1v1H3zm2 3V7h3v1H5zM3 8V7h1v1H3zm2 3v-1h2v1H5zm5-1H8v1h2v2h1v-2h2v-1h-2V8h-1v2zm-7 1v-1h1v1H3zm7.5-5a4.5 4.5 0 110 9 4.5 4.5 0 010-9z"></path></svg></button></span></td><td class="kbnDocViewer__field"><div class="euiFlexGroup euiFlexGroup--gutterSmall euiFlexGroup--alignItemsCenter euiFlexGroup--directionRow"><div class="euiFlexItem euiFlexItem--flexGrowZero"><span class="euiToken euiToken--gray euiToken--square euiToken--small kbnFieldIcon"><svg width="16" height="16" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" class="euiIcon euiIcon--medium" focusable="false" role="img" aria-label="Date field"><title>Date field</title><path fill-rule="evenodd" d="M13 11.567C13 12.36 12.36 13 11.567 13H4.433C3.64 13 3 12.36 3 11.567V4.433C3 3.64 3.64 3 4.433 3H6v-.495a.51.51 0 01.412-.497L6.5 2c.276 0 .5.214.5.505V3h2v-.495a.51.51 0 01.412-.497L9.5 2c.276 0 .5.214.5.505V3h1.567C12.36 3 13 3.64 13 4.433v7.134zM4 6v5.33c0 .37.3.67.67.67h6.66c.37 0 .67-.3.67-.67V6H4zm1.5 4c.245 0 .45.183.492.412L6 10.5c0 .245-.183.45-.412.492L5.5 11a.505.505 0 01-.5-.5c0-.245.183-.45.412-.492L5.5 10zM8 10c.245 0 .45.183.492.412l.008.088c0 .245-.183.45-.412.492L8 11a.505.505 0 01-.5-.5c0-.245.183-.45.412-.492L8 10zm2.5 0c.245 0 .45.183.492.412L11 10.5c0 .245-.183.45-.412.492L10.5 11a.505.505 0 01-.5-.5c0-.245.183-.45.412-.492L10.5 10zm-5-1.5c.245 0 .45.183.492.412L6 9c0 .245-.183.45-.412.492L5.5 9.5A.505.505 0 015 9c0-.245.183-.45.412-.492L5.5 8.5zm2.5 0c.245 0 .45.183.492.412L8.5 9c0 .245-.183.45-.412.492L8 9.5a.505.505 0 01-.5-.5c0-.245.183-.45.412-.492L8 8.5zm2.5 0c.245 0 .45.183.492.412L11 9c0 .245-.183.45-.412.492L10.5 9.5A.505.505 0 0110 9c0-.245.183-.45.412-.492L10.5 8.5zM5.5 7c.245 0 .45.183.492.412L6 7.5c0 .245-.183.45-.412.492L5.5 8a.505.505 0 01-.5-.5c0-.245.183-.45.412-.492L5.5 7zM8 7c.245 0 .45.183.492.412L8.5 7.5c0 .245-.183.45-.412.492L8 8a.505.505 0 01-.5-.5c0-.245.183-.45.412-.492L8 7zm2.5 0c.245 0 .45.183.492.412L11 7.5c0 .245-.183.45-.412.492L10.5 8a.505.505 0 01-.5-.5c0-.245.183-.45.412-.492L10.5 7zM4 5h8v-.33c0-.37-.3-.67-.67-.67H4.67C4.3 4 4 4.3 4 4.67V5z"></path></svg></span></div><div class="euiFlexItem eui-textTruncate"><span class="euiToolTipAnchor eui-textTruncate"><span>@timestamp</span></span></div></div></td><td><div class="kbnDocViewer__value" data-test-subj="tableDocViewRow-@timestamp-value">Jun 8, 2021 @ 17:51:53.335</div></td></tr><tr data-test-subj="tableDocViewRow-@version"><td class="kbnDocViewer__buttons"><span class="euiToolTipAnchor"><button class="euiButtonIcon euiButtonIcon--primary kbnDocViewer__actionButton" type="button" aria-label="Filter for value" data-test-subj="addInclusiveFilterButton"><svg width="16" height="16" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" class="euiIcon euiIcon--small euiButtonIcon__icon" focusable="false" role="img" aria-hidden="true"><path d="M7 6h2.5a.5.5 0 010 1H7v2.5a.5.5 0 01-1 0V7H3.5a.5.5 0 010-1H6V3.5a.5.5 0 011 0V6zm3.24 4.74c0-.117.04-.225.107-.31A5.478 5.478 0 0012 6.5 5.5 5.5 0 106.5 12a.5.5 0 110 1 6.5 6.5 0 114.936-2.27l4.419 4.418a.5.5 0 01-.707.707l-4.768-4.768a.499.499 0 01-.14-.347z"></path></svg></button></span><span class="euiToolTipAnchor"><button class="euiButtonIcon euiButtonIcon--primary kbnDocViewer__actionButton" type="button" aria-label="Filter out value" data-test-subj="removeInclusiveFilterButton"><svg width="16" height="16" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" class="euiIcon euiIcon--small euiButtonIcon__icon" focusable="false" role="img" aria-hidden="true"><path d="M9.5 6a.5.5 0 010 1h-6a.5.5 0 010-1h6zm.74 4.74c0-.117.04-.225.107-.31A5.478 5.478 0 0012 6.5 5.5 5.5 0 106.5 12a.5.5 0 110 1 6.5 6.5 0 114.936-2.27l4.419 4.418a.5.5 0 01-.707.707l-4.768-4.768a.499.499 0 01-.14-.347z"></path></svg></button></span><span class="euiToolTipAnchor"><button class="euiButtonIcon euiButtonIcon--primary kbnDocViewer__actionButton" type="button" aria-label="Toggle column in table" aria-pressed="false" data-test-subj="toggleColumnButton"><svg width="16" height="16" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" class="euiIcon euiIcon--small euiButtonIcon__icon" focusable="false" role="img" aria-hidden="true"><path d="M1 1v14h14V1H1zM0 0h16v16H0V0zm9 1v14h1V1H9zM3 3.5h4v-1H3v1zm0 3h4v-1H3v1zm0 3h4v-1H3v1z"></path></svg></button></span><span class="euiToolTipAnchor"><button class="euiButtonIcon euiButtonIcon--primary kbnDocViewer__actionButton" type="button" aria-label="Filter for field present" data-test-subj="addExistsFilterButton"><svg width="16" height="16" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" class="euiIcon euiIcon--small euiButtonIcon__icon" focusable="false" role="img" aria-hidden="true"><path d="M12 2H2v11h6v1H1V1h12v6h-1V2zM5 5h5.999V4H5v1zM3 5V4h1v1H3zm2 3V7h3v1H5zM3 8V7h1v1H3zm2 3v-1h2v1H5zm5-1H8v1h2v2h1v-2h2v-1h-2V8h-1v2zm-7 1v-1h1v1H3zm7.5-5a4.5 4.5 0 110 9 4.5 4.5 0 010-9z"></path></svg></button></span></td><td class="kbnDocViewer__field"><div class="euiFlexGroup euiFlexGroup--gutterSmall euiFlexGroup--alignItemsCenter euiFlexGroup--directionRow"><div class="euiFlexItem euiFlexItem--flexGrowZero"><span class="euiToken euiToken--gray euiToken--square euiToken--small kbnFieldIcon"><svg width="16" height="16" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" class="euiIcon euiIcon--medium" focusable="false" role="img" aria-label="String field"><title>String field</title><path d="M9.147 4.297l-.255 1.455h.936l-.222 1.266h-.935l-.455 2.688c-.025.184-.013.323.036.417.048.093.17.144.365.151.075.004.23-.005.465-.027l-.13 1.32c-.3.097-.618.142-.957.135-.552-.007-.965-.17-1.239-.487-.274-.317-.386-.748-.335-1.293l.476-2.904h-.725l.216-1.266h.725l.254-1.455h1.78z"></path></svg></span></div><div class="euiFlexItem eui-textTruncate"><span class="euiToolTipAnchor eui-textTruncate"><span>@version</span></span></div></div></td><td><div class="kbnDocViewer__value" data-test-subj="tableDocViewRow-@version-value">1</div></td></tr><tr data-test-subj="tableDocViewRow-_id"><td class="kbnDocViewer__buttons"><span class="euiToolTipAnchor"><button class="euiButtonIcon euiButtonIcon--primary kbnDocViewer__actionButton" type="button" aria-label="Filter for value" data-test-subj="addInclusiveFilterButton"><svg width="16" height="16" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" class="euiIcon euiIcon--small euiButtonIcon__icon" focusable="false" role="img" aria-hidden="true"><path d="M7 6h2.5a.5.5 0 010 1H7v2.5a.5.5 0 01-1 0V7H3.5a.5.5 0 010-1H6V3.5a.5.5 0 011 0V6zm3.24 4.74c0-.117.04-.225.107-.31A5.478 5.478 0 0012 6.5 5.5 5.5 0 106.5 12a.5.5 0 110 1 6.5 6.5 0 114.936-2.27l4.419 4.418a.5.5 0 01-.707.707l-4.768-4.768a.499.499 0 01-.14-.347z"></path></svg></button></span><span class="euiToolTipAnchor"><button class="euiButtonIcon euiButtonIcon--primary kbnDocViewer__actionButton" type="button" aria-label="Filter out value" data-test-subj="removeInclusiveFilterButton"><svg width="16" height="16" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" class="euiIcon euiIcon--small euiButtonIcon__icon" focusable="false" role="img" aria-hidden="true"><path d="M9.5 6a.5.5 0 010 1h-6a.5.5 0 010-1h6zm.74 4.74c0-.117.04-.225.107-.31A5.478 5.478 0 0012 6.5 5.5 5.5 0 106.5 12a.5.5 0 110 1 6.5 6.5 0 114.936-2.27l4.419 4.418a.5.5 0 01-.707.707l-4.768-4.768a.499.499 0 01-.14-.347z"></path></svg></button></span><span class="euiToolTipAnchor"><button class="euiButtonIcon euiButtonIcon--primary kbnDocViewer__actionButton" type="button" aria-label="Toggle column in table" aria-pressed="false" data-test-subj="toggleColumnButton"><svg width="16" height="16" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" class="euiIcon euiIcon--small euiButtonIcon__icon" focusable="false" role="img" aria-hidden="true"><path d="M1 1v14h14V1H1zM0 0h16v16H0V0zm9 1v14h1V1H9zM3 3.5h4v-1H3v1zm0 3h4v-1H3v1zm0 3h4v-1H3v1z"></path></svg></button></span><span class="euiToolTipAnchor"><button class="euiButtonIcon euiButtonIcon--primary kbnDocViewer__actionButton" type="button" aria-label="Filter for field present" data-test-subj="addExistsFilterButton"><svg width="16" height="16" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" class="euiIcon euiIcon--small euiButtonIcon__icon" focusable="false" role="img" aria-hidden="true"><path d="M12 2H2v11h6v1H1V1h12v6h-1V2zM5 5h5.999V4H5v1zM3 5V4h1v1H3zm2 3V7h3v1H5zM3 8V7h1v1H3zm2 3v-1h2v1H5zm5-1H8v1h2v2h1v-2h2v-1h-2V8h-1v2zm-7 1v-1h1v1H3zm7.5-5a4.5 4.5 0 110 9 4.5 4.5 0 010-9z"></path></svg></button></span></td><td class="kbnDocViewer__field"><div class="euiFlexGroup euiFlexGroup--gutterSmall euiFlexGroup--alignItemsCenter euiFlexGroup--directionRow"><div class="euiFlexItem euiFlexItem--flexGrowZero"><span class="euiToken euiToken--gray euiToken--square euiToken--small kbnFieldIcon"><svg width="16" height="16" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" class="euiIcon euiIcon--medium" focusable="false" role="img" aria-label="String field"><title>String field</title><path d="M9.147 4.297l-.255 1.455h.936l-.222 1.266h-.935l-.455 2.688c-.025.184-.013.323.036.417.048.093.17.144.365.151.075.004.23-.005.465-.027l-.13 1.32c-.3.097-.618.142-.957.135-.552-.007-.965-.17-1.239-.487-.274-.317-.386-.748-.335-1.293l.476-2.904h-.725l.216-1.266h.725l.254-1.455h1.78z"></path></svg></span></div><div class="euiFlexItem eui-textTruncate"><span class="euiToolTipAnchor eui-textTruncate"><span>_id</span></span></div></div></td><td><div class="kbnDocViewer__value" data-test-subj="tableDocViewRow-_id-value">wBBS7HkBrJTgiCWTs8ib</div></td></tr><tr data-test-subj="tableDocViewRow-_index"><td class="kbnDocViewer__buttons"><span class="euiToolTipAnchor"><button class="euiButtonIcon euiButtonIcon--primary kbnDocViewer__actionButton" type="button" aria-label="Filter for value" data-test-subj="addInclusiveFilterButton"><svg width="16" height="16" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" class="euiIcon euiIcon--small euiButtonIcon__icon" focusable="false" role="img" aria-hidden="true"><path d="M7 6h2.5a.5.5 0 010 1H7v2.5a.5.5 0 01-1 0V7H3.5a.5.5 0 010-1H6V3.5a.5.5 0 011 0V6zm3.24 4.74c0-.117.04-.225.107-.31A5.478 5.478 0 0012 6.5 5.5 5.5 0 106.5 12a.5.5 0 110 1 6.5 6.5 0 114.936-2.27l4.419 4.418a.5.5 0 01-.707.707l-4.768-4.768a.499.499 0 01-.14-.347z"></path></svg></button></span><span class="euiToolTipAnchor"><button class="euiButtonIcon euiButtonIcon--primary kbnDocViewer__actionButton" type="button" aria-label="Filter out value" data-test-subj="removeInclusiveFilterButton"><svg width="16" height="16" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" class="euiIcon euiIcon--small euiButtonIcon__icon" focusable="false" role="img" aria-hidden="true"><path d="M9.5 6a.5.5 0 010 1h-6a.5.5 0 010-1h6zm.74 4.74c0-.117.04-.225.107-.31A5.478 5.478 0 0012 6.5 5.5 5.5 0 106.5 12a.5.5 0 110 1 6.5 6.5 0 114.936-2.27l4.419 4.418a.5.5 0 01-.707.707l-4.768-4.768a.499.499 0 01-.14-.347z"></path></svg></button></span><span class="euiToolTipAnchor"><button class="euiButtonIcon euiButtonIcon--primary kbnDocViewer__actionButton" type="button" aria-label="Toggle column in table" aria-pressed="false" data-test-subj="toggleColumnButton"><svg width="16" height="16" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" class="euiIcon euiIcon--small euiButtonIcon__icon" focusable="false" role="img" aria-hidden="true"><path d="M1 1v14h14V1H1zM0 0h16v16H0V0zm9 1v14h1V1H9zM3 3.5h4v-1H3v1zm0 3h4v-1H3v1zm0 3h4v-1H3v1z"></path></svg></button></span><span class="euiToolTipAnchor"><button class="euiButtonIcon euiButtonIcon--primary kbnDocViewer__actionButton" type="button" aria-label="Filter for field present" data-test-subj="addExistsFilterButton"><svg width="16" height="16" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" class="euiIcon euiIcon--small euiButtonIcon__icon" focusable="false" role="img" aria-hidden="true"><path d="M12 2H2v11h6v1H1V1h12v6h-1V2zM5 5h5.999V4H5v1zM3 5V4h1v1H3zm2 3V7h3v1H5zM3 8V7h1v1H3zm2 3v-1h2v1H5zm5-1H8v1h2v2h1v-2h2v-1h-2V8h-1v2zm-7 1v-1h1v1H3zm7.5-5a4.5 4.5 0 110 9 4.5 4.5 0 010-9z"></path></svg></button></span></td><td class="kbnDocViewer__field"><div class="euiFlexGroup euiFlexGroup--gutterSmall euiFlexGroup--alignItemsCenter euiFlexGroup--directionRow"><div class="euiFlexItem euiFlexItem--flexGrowZero"><span class="euiToken euiToken--gray euiToken--square euiToken--small kbnFieldIcon"><svg width="16" height="16" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" class="euiIcon euiIcon--medium" focusable="false" role="img" aria-label="String field"><title>String field</title><path d="M9.147 4.297l-.255 1.455h.936l-.222 1.266h-.935l-.455 2.688c-.025.184-.013.323.036.417.048.093.17.144.365.151.075.004.23-.005.465-.027l-.13 1.32c-.3.097-.618.142-.957.135-.552-.007-.965-.17-1.239-.487-.274-.317-.386-.748-.335-1.293l.476-2.904h-.725l.216-1.266h.725l.254-1.455h1.78z"></path></svg></span></div><div class="euiFlexItem eui-textTruncate"><span class="euiToolTipAnchor eui-textTruncate"><span>_index</span></span></div></div></td><td><div class="kbnDocViewer__value" data-test-subj="tableDocViewRow-_index-value">k8s-consultaexp-ns-desa@2021.23</div></td></tr><tr data-test-subj="tableDocViewRow-_score"><td class="kbnDocViewer__buttons"><span class="euiToolTipAnchor"><button disabled="" class="euiButtonIcon euiButtonIcon--primary kbnDocViewer__actionButton" type="button" aria-label="Filter for value" data-test-subj="addInclusiveFilterButton"><svg width="16" height="16" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" class="euiIcon euiIcon--small euiButtonIcon__icon" focusable="false" role="img" aria-hidden="true"><path d="M7 6h2.5a.5.5 0 010 1H7v2.5a.5.5 0 01-1 0V7H3.5a.5.5 0 010-1H6V3.5a.5.5 0 011 0V6zm3.24 4.74c0-.117.04-.225.107-.31A5.478 5.478 0 0012 6.5 5.5 5.5 0 106.5 12a.5.5 0 110 1 6.5 6.5 0 114.936-2.27l4.419 4.418a.5.5 0 01-.707.707l-4.768-4.768a.499.499 0 01-.14-.347z"></path></svg></button></span><span class="euiToolTipAnchor"><button disabled="" class="euiButtonIcon euiButtonIcon--primary kbnDocViewer__actionButton" type="button" aria-label="Filter out value" data-test-subj="removeInclusiveFilterButton"><svg width="16" height="16" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" class="euiIcon euiIcon--small euiButtonIcon__icon" focusable="false" role="img" aria-hidden="true"><path d="M9.5 6a.5.5 0 010 1h-6a.5.5 0 010-1h6zm.74 4.74c0-.117.04-.225.107-.31A5.478 5.478 0 0012 6.5 5.5 5.5 0 106.5 12a.5.5 0 110 1 6.5 6.5 0 114.936-2.27l4.419 4.418a.5.5 0 01-.707.707l-4.768-4.768a.499.499 0 01-.14-.347z"></path></svg></button></span><span class="euiToolTipAnchor"><button class="euiButtonIcon euiButtonIcon--primary kbnDocViewer__actionButton" type="button" aria-label="Toggle column in table" aria-pressed="false" data-test-subj="toggleColumnButton"><svg width="16" height="16" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" class="euiIcon euiIcon--small euiButtonIcon__icon" focusable="false" role="img" aria-hidden="true"><path d="M1 1v14h14V1H1zM0 0h16v16H0V0zm9 1v14h1V1H9zM3 3.5h4v-1H3v1zm0 3h4v-1H3v1zm0 3h4v-1H3v1z"></path></svg></button></span><span class="euiToolTipAnchor"><button disabled="" class="euiButtonIcon euiButtonIcon--primary kbnDocViewer__actionButton" type="button" aria-label="Filter for field present" data-test-subj="addExistsFilterButton"><svg width="16" height="16" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" class="euiIcon euiIcon--small euiButtonIcon__icon" focusable="false" role="img" aria-hidden="true"><path d="M12 2H2v11h6v1H1V1h12v6h-1V2zM5 5h5.999V4H5v1zM3 5V4h1v1H3zm2 3V7h3v1H5zM3 8V7h1v1H3zm2 3v-1h2v1H5zm5-1H8v1h2v2h1v-2h2v-1h-2V8h-1v2zm-7 1v-1h1v1H3zm7.5-5a4.5 4.5 0 110 9 4.5 4.5 0 010-9z"></path></svg></button></span></td><td class="kbnDocViewer__field"><div class="euiFlexGroup euiFlexGroup--gutterSmall euiFlexGroup--alignItemsCenter euiFlexGroup--directionRow"><div class="euiFlexItem euiFlexItem--flexGrowZero"><span class="euiToken euiToken--gray euiToken--square euiToken--small kbnFieldIcon"><svg width="16" height="16" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" class="euiIcon euiIcon--medium" focusable="false" role="img" aria-label="Number field"><title>Number field</title><path d="M7.8 9.812h-.842l-.78 2.335H5.031l.78-2.335H4.6l.182-1.043h1.373l.507-1.504H5.454l.188-1.042h1.367l.792-2.37H8.94l-.792 2.37h.849l.792-2.37h1.145l-.792 2.37H11.4l-.182 1.042H9.8L9.293 8.77h1.248l-.183 1.043H8.946l-.775 2.335H7.026L7.8 9.812zm-.5-1.043h.842l.513-1.504h-.849L7.3 8.77z"></path></svg></span></div><div class="euiFlexItem eui-textTruncate"><span class="euiToolTipAnchor eui-textTruncate"><span>_score</span></span></div></div></td><td><div class="kbnDocViewer__value" data-test-subj="tableDocViewRow-_score-value"> - </div></td></tr><tr data-test-subj="tableDocViewRow-_type"><td class="kbnDocViewer__buttons"><span class="euiToolTipAnchor"><button class="euiButtonIcon euiButtonIcon--primary kbnDocViewer__actionButton" type="button" aria-label="Filter for value" data-test-subj="addInclusiveFilterButton"><svg width="16" height="16" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" class="euiIcon euiIcon--small euiButtonIcon__icon" focusable="false" role="img" aria-hidden="true"><path d="M7 6h2.5a.5.5 0 010 1H7v2.5a.5.5 0 01-1 0V7H3.5a.5.5 0 010-1H6V3.5a.5.5 0 011 0V6zm3.24 4.74c0-.117.04-.225.107-.31A5.478 5.478 0 0012 6.5 5.5 5.5 0 106.5 12a.5.5 0 110 1 6.5 6.5 0 114.936-2.27l4.419 4.418a.5.5 0 01-.707.707l-4.768-4.768a.499.499 0 01-.14-.347z"></path></svg></button></span><span class="euiToolTipAnchor"><button class="euiButtonIcon euiButtonIcon--primary kbnDocViewer__actionButton" type="button" aria-label="Filter out value" data-test-subj="removeInclusiveFilterButton"><svg width="16" height="16" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" class="euiIcon euiIcon--small euiButtonIcon__icon" focusable="false" role="img" aria-hidden="true"><path d="M9.5 6a.5.5 0 010 1h-6a.5.5 0 010-1h6zm.74 4.74c0-.117.04-.225.107-.31A5.478 5.478 0 0012 6.5 5.5 5.5 0 106.5 12a.5.5 0 110 1 6.5 6.5 0 114.936-2.27l4.419 4.418a.5.5 0 01-.707.707l-4.768-4.768a.499.499 0 01-.14-.347z"></path></svg></button></span><span class="euiToolTipAnchor"><button class="euiButtonIcon euiButtonIcon--primary kbnDocViewer__actionButton" type="button" aria-label="Toggle column in table" aria-pressed="false" data-test-subj="toggleColumnButton"><svg width="16" height="16" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" class="euiIcon euiIcon--small euiButtonIcon__icon" focusable="false" role="img" aria-hidden="true"><path d="M1 1v14h14V1H1zM0 0h16v16H0V0zm9 1v14h1V1H9zM3 3.5h4v-1H3v1zm0 3h4v-1H3v1zm0 3h4v-1H3v1z"></path></svg></button></span><span class="euiToolTipAnchor"><button class="euiButtonIcon euiButtonIcon--primary kbnDocViewer__actionButton" type="button" aria-label="Filter for field present" data-test-subj="addExistsFilterButton"><svg width="16" height="16" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" class="euiIcon euiIcon--small euiButtonIcon__icon" focusable="false" role="img" aria-hidden="true"><path d="M12 2H2v11h6v1H1V1h12v6h-1V2zM5 5h5.999V4H5v1zM3 5V4h1v1H3zm2 3V7h3v1H5zM3 8V7h1v1H3zm2 3v-1h2v1H5zm5-1H8v1h2v2h1v-2h2v-1h-2V8h-1v2zm-7 1v-1h1v1H3zm7.5-5a4.5 4.5 0 110 9 4.5 4.5 0 010-9z"></path></svg></button></span></td><td class="kbnDocViewer__field"><div class="euiFlexGroup euiFlexGroup--gutterSmall euiFlexGroup--alignItemsCenter euiFlexGroup--directionRow"><div class="euiFlexItem euiFlexItem--flexGrowZero"><span class="euiToken euiToken--gray euiToken--square euiToken--small kbnFieldIcon"><svg width="16" height="16" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" class="euiIcon euiIcon--medium" focusable="false" role="img" aria-label="String field"><title>String field</title><path d="M9.147 4.297l-.255 1.455h.936l-.222 1.266h-.935l-.455 2.688c-.025.184-.013.323.036.417.048.093.17.144.365.151.075.004.23-.005.465-.027l-.13 1.32c-.3.097-.618.142-.957.135-.552-.007-.965-.17-1.239-.487-.274-.317-.386-.748-.335-1.293l.476-2.904h-.725l.216-1.266h.725l.254-1.455h1.78z"></path></svg></span></div><div class="euiFlexItem eui-textTruncate"><span class="euiToolTipAnchor eui-textTruncate"><span>_type</span></span></div></div></td><td><div class="kbnDocViewer__value" data-test-subj="tableDocViewRow-_type-value">_doc</div></td></tr><tr data-test-subj="tableDocViewRow-kubernetes.annotations.cattle.io/timestamp"><td class="kbnDocViewer__buttons"><span class="euiToolTipAnchor"><button class="euiButtonIcon euiButtonIcon--primary kbnDocViewer__actionButton" type="button" aria-label="Filter for value" data-test-subj="addInclusiveFilterButton"><svg width="16" height="16" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" class="euiIcon euiIcon--small euiButtonIcon__icon" focusable="false" role="img" aria-hidden="true"><path d="M7 6h2.5a.5.5 0 010 1H7v2.5a.5.5 0 01-1 0V7H3.5a.5.5 0 010-1H6V3.5a.5.5 0 011 0V6zm3.24 4.74c0-.117.04-.225.107-.31A5.478 5.478 0 0012 6.5 5.5 5.5 0 106.5 12a.5.5 0 110 1 6.5 6.5 0 114.936-2.27l4.419 4.418a.5.5 0 01-.707.707l-4.768-4.768a.499.499 0 01-.14-.347z"></path></svg></button></span><span class="euiToolTipAnchor"><button class="euiButtonIcon euiButtonIcon--primary kbnDocViewer__actionButton" type="button" aria-label="Filter out value" data-test-subj="removeInclusiveFilterButton"><svg width="16" height="16" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" class="euiIcon euiIcon--small euiButtonIcon__icon" focusable="false" role="img" aria-hidden="true"><path d="M9.5 6a.5.5 0 010 1h-6a.5.5 0 010-1h6zm.74 4.74c0-.117.04-.225.107-.31A5.478 5.478 0 0012 6.5 5.5 5.5 0 106.5 12a.5.5 0 110 1 6.5 6.5 0 114.936-2.27l4.419 4.418a.5.5 0 01-.707.707l-4.768-4.768a.499.499 0 01-.14-.347z"></path></svg></button></span><span class="euiToolTipAnchor"><button class="euiButtonIcon euiButtonIcon--primary kbnDocViewer__actionButton" type="button" aria-label="Toggle column in table" aria-pressed="false" data-test-subj="toggleColumnButton"><svg width="16" height="16" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" class="euiIcon euiIcon--small euiButtonIcon__icon" focusable="false" role="img" aria-hidden="true"><path d="M1 1v14h14V1H1zM0 0h16v16H0V0zm9 1v14h1V1H9zM3 3.5h4v-1H3v1zm0 3h4v-1H3v1zm0 3h4v-1H3v1z"></path></svg></button></span><span class="euiToolTipAnchor"><button class="euiButtonIcon euiButtonIcon--primary kbnDocViewer__actionButton" type="button" aria-label="Filter for field present" data-test-subj="addExistsFilterButton"><svg width="16" height="16" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" class="euiIcon euiIcon--small euiButtonIcon__icon" focusable="false" role="img" aria-hidden="true"><path d="M12 2H2v11h6v1H1V1h12v6h-1V2zM5 5h5.999V4H5v1zM3 5V4h1v1H3zm2 3V7h3v1H5zM3 8V7h1v1H3zm2 3v-1h2v1H5zm5-1H8v1h2v2h1v-2h2v-1h-2V8h-1v2zm-7 1v-1h1v1H3zm7.5-5a4.5 4.5 0 110 9 4.5 4.5 0 010-9z"></path></svg></button></span></td><td class="kbnDocViewer__field"><div class="euiFlexGroup euiFlexGroup--gutterSmall euiFlexGroup--alignItemsCenter euiFlexGroup--directionRow"><div class="euiFlexItem euiFlexItem--flexGrowZero"><span class="euiToken euiToken--gray euiToken--square euiToken--small kbnFieldIcon"><svg width="16" height="16" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" class="euiIcon euiIcon--medium" focusable="false" role="img" aria-label="Date field"><title>Date field</title><path fill-rule="evenodd" d="M13 11.567C13 12.36 12.36 13 11.567 13H4.433C3.64 13 3 12.36 3 11.567V4.433C3 3.64 3.64 3 4.433 3H6v-.495a.51.51 0 01.412-.497L6.5 2c.276 0 .5.214.5.505V3h2v-.495a.51.51 0 01.412-.497L9.5 2c.276 0 .5.214.5.505V3h1.567C12.36 3 13 3.64 13 4.433v7.134zM4 6v5.33c0 .37.3.67.67.67h6.66c.37 0 .67-.3.67-.67V6H4zm1.5 4c.245 0 .45.183.492.412L6 10.5c0 .245-.183.45-.412.492L5.5 11a.505.505 0 01-.5-.5c0-.245.183-.45.412-.492L5.5 10zM8 10c.245 0 .45.183.492.412l.008.088c0 .245-.183.45-.412.492L8 11a.505.505 0 01-.5-.5c0-.245.183-.45.412-.492L8 10zm2.5 0c.245 0 .45.183.492.412L11 10.5c0 .245-.183.45-.412.492L10.5 11a.505.505 0 01-.5-.5c0-.245.183-.45.412-.492L10.5 10zm-5-1.5c.245 0 .45.183.492.412L6 9c0 .245-.183.45-.412.492L5.5 9.5A.505.505 0 015 9c0-.245.183-.45.412-.492L5.5 8.5zm2.5 0c.245 0 .45.183.492.412L8.5 9c0 .245-.183.45-.412.492L8 9.5a.505.505 0 01-.5-.5c0-.245.183-.45.412-.492L8 8.5zm2.5 0c.245 0 .45.183.492.412L11 9c0 .245-.183.45-.412.492L10.5 9.5A.505.505 0 0110 9c0-.245.183-.45.412-.492L10.5 8.5zM5.5 7c.245 0 .45.183.492.412L6 7.5c0 .245-.183.45-.412.492L5.5 8a.505.505 0 01-.5-.5c0-.245.183-.45.412-.492L5.5 7zM8 7c.245 0 .45.183.492.412L8.5 7.5c0 .245-.183.45-.412.492L8 8a.505.505 0 01-.5-.5c0-.245.183-.45.412-.492L8 7zm2.5 0c.245 0 .45.183.492.412L11 7.5c0 .245-.183.45-.412.492L10.5 8a.505.505 0 01-.5-.5c0-.245.183-.45.412-.492L10.5 7zM4 5h8v-.33c0-.37-.3-.67-.67-.67H4.67C4.3 4 4 4.3 4 4.67V5z"></path></svg></span></div><div class="euiFlexItem eui-textTruncate"><span class="euiToolTipAnchor eui-textTruncate"><span>kubernetes.annotations.cattle.io/timestamp</span></span></div></div></td><td><div class="kbnDocViewer__value" data-test-subj="tableDocViewRow-kubernetes.annotations.cattle.io/timestamp-value">Feb 4, 2021 @ 13:09:09.000</div></td></tr><tr data-test-subj="tableDocViewRow-kubernetes.annotations.cni.projectcalico.org/podIP"><td class="kbnDocViewer__buttons"><span class="euiToolTipAnchor"><button class="euiButtonIcon euiButtonIcon--primary kbnDocViewer__actionButton" type="button" aria-label="Filter for value" data-test-subj="addInclusiveFilterButton"><svg width="16" height="16" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" class="euiIcon euiIcon--small euiButtonIcon__icon" focusable="false" role="img" aria-hidden="true"><path d="M7 6h2.5a.5.5 0 010 1H7v2.5a.5.5 0 01-1 0V7H3.5a.5.5 0 010-1H6V3.5a.5.5 0 011 0V6zm3.24 4.74c0-.117.04-.225.107-.31A5.478 5.478 0 0012 6.5 5.5 5.5 0 106.5 12a.5.5 0 110 1 6.5 6.5 0 114.936-2.27l4.419 4.418a.5.5 0 01-.707.707l-4.768-4.768a.499.499 0 01-.14-.347z"></path></svg></button></span><span class="euiToolTipAnchor"><button class="euiButtonIcon euiButtonIcon--primary kbnDocViewer__actionButton" type="button" aria-label="Filter out value" data-test-subj="removeInclusiveFilterButton"><svg width="16" height="16" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" class="euiIcon euiIcon--small euiButtonIcon__icon" focusable="false" role="img" aria-hidden="true"><path d="M9.5 6a.5.5 0 010 1h-6a.5.5 0 010-1h6zm.74 4.74c0-.117.04-.225.107-.31A5.478 5.478 0 0012 6.5 5.5 5.5 0 106.5 12a.5.5 0 110 1 6.5 6.5 0 114.936-2.27l4.419 4.418a.5.5 0 01-.707.707l-4.768-4.768a.499.499 0 01-.14-.347z"></path></svg></button></span><span class="euiToolTipAnchor"><button class="euiButtonIcon euiButtonIcon--primary kbnDocViewer__actionButton" type="button" aria-label="Toggle column in table" aria-pressed="false" data-test-subj="toggleColumnButton"><svg width="16" height="16" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" class="euiIcon euiIcon--small euiButtonIcon__icon" focusable="false" role="img" aria-hidden="true"><path d="M1 1v14h14V1H1zM0 0h16v16H0V0zm9 1v14h1V1H9zM3 3.5h4v-1H3v1zm0 3h4v-1H3v1zm0 3h4v-1H3v1z"></path></svg></button></span><span class="euiToolTipAnchor"><button class="euiButtonIcon euiButtonIcon--primary kbnDocViewer__actionButton" type="button" aria-label="Filter for field present" data-test-subj="addExistsFilterButton"><svg width="16" height="16" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" class="euiIcon euiIcon--small euiButtonIcon__icon" focusable="false" role="img" aria-hidden="true"><path d="M12 2H2v11h6v1H1V1h12v6h-1V2zM5 5h5.999V4H5v1zM3 5V4h1v1H3zm2 3V7h3v1H5zM3 8V7h1v1H3zm2 3v-1h2v1H5zm5-1H8v1h2v2h1v-2h2v-1h-2V8h-1v2zm-7 1v-1h1v1H3zm7.5-5a4.5 4.5 0 110 9 4.5 4.5 0 010-9z"></path></svg></button></span></td><td class="kbnDocViewer__field"><div class="euiFlexGroup euiFlexGroup--gutterSmall euiFlexGroup--alignItemsCenter euiFlexGroup--directionRow"><div class="euiFlexItem euiFlexItem--flexGrowZero"><span class="euiToken euiToken--gray euiToken--square euiToken--small kbnFieldIcon"><svg width="16" height="16" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" class="euiIcon euiIcon--medium" focusable="false" role="img" aria-label="String field"><title>String field</title><path d="M9.147 4.297l-.255 1.455h.936l-.222 1.266h-.935l-.455 2.688c-.025.184-.013.323.036.417.048.093.17.144.365.151.075.004.23-.005.465-.027l-.13 1.32c-.3.097-.618.142-.957.135-.552-.007-.965-.17-1.239-.487-.274-.317-.386-.748-.335-1.293l.476-2.904h-.725l.216-1.266h.725l.254-1.455h1.78z"></path></svg></span></div><div class="euiFlexItem eui-textTruncate"><span class="euiToolTipAnchor eui-textTruncate"><span>kubernetes.annotations.cni.projectcalico.org/podIP</span></span></div></div></td><td><div class="kbnDocViewer__value" data-test-subj="tableDocViewRow-kubernetes.annotations.cni.projectcalico.org/podIP-value">10.42.148.90/32</div></td></tr><tr data-test-subj="tableDocViewRow-kubernetes.annotations.cni.projectcalico.org/podIPs"><td class="kbnDocViewer__buttons"><span class="euiToolTipAnchor"><button class="euiButtonIcon euiButtonIcon--primary kbnDocViewer__actionButton" type="button" aria-label="Filter for value" data-test-subj="addInclusiveFilterButton"><svg width="16" height="16" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" class="euiIcon euiIcon--small euiButtonIcon__icon" focusable="false" role="img" aria-hidden="true"><path d="M7 6h2.5a.5.5 0 010 1H7v2.5a.5.5 0 01-1 0V7H3.5a.5.5 0 010-1H6V3.5a.5.5 0 011 0V6zm3.24 4.74c0-.117.04-.225.107-.31A5.478 5.478 0 0012 6.5 5.5 5.5 0 106.5 12a.5.5 0 110 1 6.5 6.5 0 114.936-2.27l4.419 4.418a.5.5 0 01-.707.707l-4.768-4.768a.499.499 0 01-.14-.347z"></path></svg></button></span><span class="euiToolTipAnchor"><button class="euiButtonIcon euiButtonIcon--primary kbnDocViewer__actionButton" type="button" aria-label="Filter out value" data-test-subj="removeInclusiveFilterButton"><svg width="16" height="16" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" class="euiIcon euiIcon--small euiButtonIcon__icon" focusable="false" role="img" aria-hidden="true"><path d="M9.5 6a.5.5 0 010 1h-6a.5.5 0 010-1h6zm.74 4.74c0-.117.04-.225.107-.31A5.478 5.478 0 0012 6.5 5.5 5.5 0 106.5 12a.5.5 0 110 1 6.5 6.5 0 114.936-2.27l4.419 4.418a.5.5 0 01-.707.707l-4.768-4.768a.499.499 0 01-.14-.347z"></path></svg></button></span><span class="euiToolTipAnchor"><button class="euiButtonIcon euiButtonIcon--primary kbnDocViewer__actionButton" type="button" aria-label="Toggle column in table" aria-pressed="false" data-test-subj="toggleColumnButton"><svg width="16" height="16" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" class="euiIcon euiIcon--small euiButtonIcon__icon" focusable="false" role="img" aria-hidden="true"><path d="M1 1v14h14V1H1zM0 0h16v16H0V0zm9 1v14h1V1H9zM3 3.5h4v-1H3v1zm0 3h4v-1H3v1zm0 3h4v-1H3v1z"></path></svg></button></span><span class="euiToolTipAnchor"><button class="euiButtonIcon euiButtonIcon--primary kbnDocViewer__actionButton" type="button" aria-label="Filter for field present" data-test-subj="addExistsFilterButton"><svg width="16" height="16" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" class="euiIcon euiIcon--small euiButtonIcon__icon" focusable="false" role="img" aria-hidden="true"><path d="M12 2H2v11h6v1H1V1h12v6h-1V2zM5 5h5.999V4H5v1zM3 5V4h1v1H3zm2 3V7h3v1H5zM3 8V7h1v1H3zm2 3v-1h2v1H5zm5-1H8v1h2v2h1v-2h2v-1h-2V8h-1v2zm-7 1v-1h1v1H3zm7.5-5a4.5 4.5 0 110 9 4.5 4.5 0 010-9z"></path></svg></button></span></td><td class="kbnDocViewer__field"><div class="euiFlexGroup euiFlexGroup--gutterSmall euiFlexGroup--alignItemsCenter euiFlexGroup--directionRow"><div class="euiFlexItem euiFlexItem--flexGrowZero"><span class="euiToken euiToken--gray euiToken--square euiToken--small kbnFieldIcon"><svg width="16" height="16" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" class="euiIcon euiIcon--medium" focusable="false" role="img" aria-label="String field"><title>String field</title><path d="M9.147 4.297l-.255 1.455h.936l-.222 1.266h-.935l-.455 2.688c-.025.184-.013.323.036.417.048.093.17.144.365.151.075.004.23-.005.465-.027l-.13 1.32c-.3.097-.618.142-.957.135-.552-.007-.965-.17-1.239-.487-.274-.317-.386-.748-.335-1.293l.476-2.904h-.725l.216-1.266h.725l.254-1.455h1.78z"></path></svg></span></div><div class="euiFlexItem eui-textTruncate"><span class="euiToolTipAnchor eui-textTruncate"><span>kubernetes.annotations.cni.projectcalico.org/podIPs</span></span></div></div></td><td><div class="kbnDocViewer__value" data-test-subj="tableDocViewRow-kubernetes.annotations.cni.projectcalico.org/podIPs-value">10.42.148.90/32</div></td></tr><tr data-test-subj="tableDocViewRow-kubernetes.annotations.field.cattle.io/ports"><td class="kbnDocViewer__buttons"><span class="euiToolTipAnchor"><button class="euiButtonIcon euiButtonIcon--primary kbnDocViewer__actionButton" type="button" aria-label="Filter for value" data-test-subj="addInclusiveFilterButton"><svg width="16" height="16" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" class="euiIcon euiIcon--small euiButtonIcon__icon" focusable="false" role="img" aria-hidden="true"><path d="M7 6h2.5a.5.5 0 010 1H7v2.5a.5.5 0 01-1 0V7H3.5a.5.5 0 010-1H6V3.5a.5.5 0 011 0V6zm3.24 4.74c0-.117.04-.225.107-.31A5.478 5.478 0 0012 6.5 5.5 5.5 0 106.5 12a.5.5 0 110 1 6.5 6.5 0 114.936-2.27l4.419 4.418a.5.5 0 01-.707.707l-4.768-4.768a.499.499 0 01-.14-.347z"></path></svg></button></span><span class="euiToolTipAnchor"><button class="euiButtonIcon euiButtonIcon--primary kbnDocViewer__actionButton" type="button" aria-label="Filter out value" data-test-subj="removeInclusiveFilterButton"><svg width="16" height="16" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" class="euiIcon euiIcon--small euiButtonIcon__icon" focusable="false" role="img" aria-hidden="true"><path d="M9.5 6a.5.5 0 010 1h-6a.5.5 0 010-1h6zm.74 4.74c0-.117.04-.225.107-.31A5.478 5.478 0 0012 6.5 5.5 5.5 0 106.5 12a.5.5 0 110 1 6.5 6.5 0 114.936-2.27l4.419 4.418a.5.5 0 01-.707.707l-4.768-4.768a.499.499 0 01-.14-.347z"></path></svg></button></span><span class="euiToolTipAnchor"><button class="euiButtonIcon euiButtonIcon--primary kbnDocViewer__actionButton" type="button" aria-label="Toggle column in table" aria-pressed="false" data-test-subj="toggleColumnButton"><svg width="16" height="16" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" class="euiIcon euiIcon--small euiButtonIcon__icon" focusable="false" role="img" aria-hidden="true"><path d="M1 1v14h14V1H1zM0 0h16v16H0V0zm9 1v14h1V1H9zM3 3.5h4v-1H3v1zm0 3h4v-1H3v1zm0 3h4v-1H3v1z"></path></svg></button></span><span class="euiToolTipAnchor"><button class="euiButtonIcon euiButtonIcon--primary kbnDocViewer__actionButton" type="button" aria-label="Filter for field present" data-test-subj="addExistsFilterButton"><svg width="16" height="16" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" class="euiIcon euiIcon--small euiButtonIcon__icon" focusable="false" role="img" aria-hidden="true"><path d="M12 2H2v11h6v1H1V1h12v6h-1V2zM5 5h5.999V4H5v1zM3 5V4h1v1H3zm2 3V7h3v1H5zM3 8V7h1v1H3zm2 3v-1h2v1H5zm5-1H8v1h2v2h1v-2h2v-1h-2V8h-1v2zm-7 1v-1h1v1H3zm7.5-5a4.5 4.5 0 110 9 4.5 4.5 0 010-9z"></path></svg></button></span></td><td class="kbnDocViewer__field"><div class="euiFlexGroup euiFlexGroup--gutterSmall euiFlexGroup--alignItemsCenter euiFlexGroup--directionRow"><div class="euiFlexItem euiFlexItem--flexGrowZero"><span class="euiToken euiToken--gray euiToken--square euiToken--small kbnFieldIcon"><svg width="16" height="16" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" class="euiIcon euiIcon--medium" focusable="false" role="img" aria-label="String field"><title>String field</title><path d="M9.147 4.297l-.255 1.455h.936l-.222 1.266h-.935l-.455 2.688c-.025.184-.013.323.036.417.048.093.17.144.365.151.075.004.23-.005.465-.027l-.13 1.32c-.3.097-.618.142-.957.135-.552-.007-.965-.17-1.239-.487-.274-.317-.386-.748-.335-1.293l.476-2.904h-.725l.216-1.266h.725l.254-1.455h1.78z"></path></svg></span></div><div class="euiFlexItem eui-textTruncate"><span class="euiToolTipAnchor eui-textTruncate"><span>kubernetes.annotations.field.cattle.io/ports</span></span></div></div></td><td><div class="kbnDocViewer__value" data-test-subj="tableDocViewRow-kubernetes.annotations.field.cattle.io/ports-value">[[{"containerPort":8080,"dnsName":"consultaexp-api-deployment-desa","kind":"ClusterIP","name":"8080tcp2","protocol":"TCP"}]]</div></td></tr><tr data-test-subj="tableDocViewRow-kubernetes.annotations.field.cattle.io/publicEndpoints"><td class="kbnDocViewer__buttons"><span class="euiToolTipAnchor"><button class="euiButtonIcon euiButtonIcon--primary kbnDocViewer__actionButton" type="button" aria-label="Filter for value" data-test-subj="addInclusiveFilterButton"><svg width="16" height="16" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" class="euiIcon euiIcon--small euiButtonIcon__icon" focusable="false" role="img" aria-hidden="true"><path d="M7 6h2.5a.5.5 0 010 1H7v2.5a.5.5 0 01-1 0V7H3.5a.5.5 0 010-1H6V3.5a.5.5 0 011 0V6zm3.24 4.74c0-.117.04-.225.107-.31A5.478 5.478 0 0012 6.5 5.5 5.5 0 106.5 12a.5.5 0 110 1 6.5 6.5 0 114.936-2.27l4.419 4.418a.5.5 0 01-.707.707l-4.768-4.768a.499.499 0 01-.14-.347z"></path></svg></button></span><span class="euiToolTipAnchor"><button class="euiButtonIcon euiButtonIcon--primary kbnDocViewer__actionButton" type="button" aria-label="Filter out value" data-test-subj="removeInclusiveFilterButton"><svg width="16" height="16" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" class="euiIcon euiIcon--small euiButtonIcon__icon" focusable="false" role="img" aria-hidden="true"><path d="M9.5 6a.5.5 0 010 1h-6a.5.5 0 010-1h6zm.74 4.74c0-.117.04-.225.107-.31A5.478 5.478 0 0012 6.5 5.5 5.5 0 106.5 12a.5.5 0 110 1 6.5 6.5 0 114.936-2.27l4.419 4.418a.5.5 0 01-.707.707l-4.768-4.768a.499.499 0 01-.14-.347z"></path></svg></button></span><span class="euiToolTipAnchor"><button class="euiButtonIcon euiButtonIcon--primary kbnDocViewer__actionButton" type="button" aria-label="Toggle column in table" aria-pressed="false" data-test-subj="toggleColumnButton"><svg width="16" height="16" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" class="euiIcon euiIcon--small euiButtonIcon__icon" focusable="false" role="img" aria-hidden="true"><path d="M1 1v14h14V1H1zM0 0h16v16H0V0zm9 1v14h1V1H9zM3 3.5h4v-1H3v1zm0 3h4v-1H3v1zm0 3h4v-1H3v1z"></path></svg></button></span><span class="euiToolTipAnchor"><button class="euiButtonIcon euiButtonIcon--primary kbnDocViewer__actionButton" type="button" aria-label="Filter for field present" data-test-subj="addExistsFilterButton"><svg width="16" height="16" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" class="euiIcon euiIcon--small euiButtonIcon__icon" focusable="false" role="img" aria-hidden="true"><path d="M12 2H2v11h6v1H1V1h12v6h-1V2zM5 5h5.999V4H5v1zM3 5V4h1v1H3zm2 3V7h3v1H5zM3 8V7h1v1H3zm2 3v-1h2v1H5zm5-1H8v1h2v2h1v-2h2v-1h-2V8h-1v2zm-7 1v-1h1v1H3zm7.5-5a4.5 4.5 0 110 9 4.5 4.5 0 010-9z"></path></svg></button></span></td><td class="kbnDocViewer__field"><div class="euiFlexGroup euiFlexGroup--gutterSmall euiFlexGroup--alignItemsCenter euiFlexGroup--directionRow"><div class="euiFlexItem euiFlexItem--flexGrowZero"><span class="euiToken euiToken--gray euiToken--square euiToken--small kbnFieldIcon"><svg width="16" height="16" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" class="euiIcon euiIcon--medium" focusable="false" role="img" aria-label="String field"><title>String field</title><path d="M9.147 4.297l-.255 1.455h.936l-.222 1.266h-.935l-.455 2.688c-.025.184-.013.323.036.417.048.093.17.144.365.151.075.004.23-.005.465-.027l-.13 1.32c-.3.097-.618.142-.957.135-.552-.007-.965-.17-1.239-.487-.274-.317-.386-.748-.335-1.293l.476-2.904h-.725l.216-1.266h.725l.254-1.455h1.78z"></path></svg></span></div><div class="euiFlexItem eui-textTruncate"><span class="euiToolTipAnchor eui-textTruncate"><span>kubernetes.annotations.field.cattle.io/publicEndpoints</span></span></div></div></td><td><span class="euiToolTipAnchor"><button class="euiButtonIcon euiButtonIcon--primary" type="button" aria-expanded="false" aria-label="Toggle field details" data-test-subj="collapseBtn"><svg width="16" height="16" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" class="euiIcon euiIcon--small euiButtonIcon__icon" focusable="false" role="img" aria-hidden="true"><path fill-rule="nonzero" d="M5.157 13.069l4.611-4.685a.546.546 0 000-.768L5.158 2.93a.552.552 0 010-.771.53.53 0 01.759 0l4.61 4.684c.631.641.63 1.672 0 2.312l-4.61 4.684a.53.53 0 01-.76 0 .552.552 0 010-.771z"></path></svg></button></span><div class="kbnDocViewer__value truncate-by-height" data-test-subj="tableDocViewRow-kubernetes.annotations.field.cattle.io/publicEndpoints-value">[{"addresses":["155.54.228.21","155.54.228.22","155.54.228.23"],"hostname":"micampusdesa.um.es","ingressId":"consultaexp-ns-desa:consultaexp-api-ingress-desa","path":"/consulta/expedienteacademico","port":80,"protocol":"HTTP","serviceId":"consultaexp-ns-desa:consultaexp-api-service-desa"}]</div></td></tr><tr data-test-subj="tableDocViewRow-kubernetes.container_hash"><td class="kbnDocViewer__buttons"><span class="euiToolTipAnchor"><button class="euiButtonIcon euiButtonIcon--primary kbnDocViewer__actionButton" type="button" aria-label="Filter for value" data-test-subj="addInclusiveFilterButton"><svg width="16" height="16" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" class="euiIcon euiIcon--small euiButtonIcon__icon" focusable="false" role="img" aria-hidden="true"><path d="M7 6h2.5a.5.5 0 010 1H7v2.5a.5.5 0 01-1 0V7H3.5a.5.5 0 010-1H6V3.5a.5.5 0 011 0V6zm3.24 4.74c0-.117.04-.225.107-.31A5.478 5.478 0 0012 6.5 5.5 5.5 0 106.5 12a.5.5 0 110 1 6.5 6.5 0 114.936-2.27l4.419 4.418a.5.5 0 01-.707.707l-4.768-4.768a.499.499 0 01-.14-.347z"></path></svg></button></span><span class="euiToolTipAnchor"><button class="euiButtonIcon euiButtonIcon--primary kbnDocViewer__actionButton" type="button" aria-label="Filter out value" data-test-subj="removeInclusiveFilterButton"><svg width="16" height="16" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" class="euiIcon euiIcon--small euiButtonIcon__icon" focusable="false" role="img" aria-hidden="true"><path d="M9.5 6a.5.5 0 010 1h-6a.5.5 0 010-1h6zm.74 4.74c0-.117.04-.225.107-.31A5.478 5.478 0 0012 6.5 5.5 5.5 0 106.5 12a.5.5 0 110 1 6.5 6.5 0 114.936-2.27l4.419 4.418a.5.5 0 01-.707.707l-4.768-4.768a.499.499 0 01-.14-.347z"></path></svg></button></span><span class="euiToolTipAnchor"><button class="euiButtonIcon euiButtonIcon--primary kbnDocViewer__actionButton" type="button" aria-label="Toggle column in table" aria-pressed="false" data-test-subj="toggleColumnButton"><svg width="16" height="16" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" class="euiIcon euiIcon--small euiButtonIcon__icon" focusable="false" role="img" aria-hidden="true"><path d="M1 1v14h14V1H1zM0 0h16v16H0V0zm9 1v14h1V1H9zM3 3.5h4v-1H3v1zm0 3h4v-1H3v1zm0 3h4v-1H3v1z"></path></svg></button></span><span class="euiToolTipAnchor"><button class="euiButtonIcon euiButtonIcon--primary kbnDocViewer__actionButton" type="button" aria-label="Filter for field present" data-test-subj="addExistsFilterButton"><svg width="16" height="16" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" class="euiIcon euiIcon--small euiButtonIcon__icon" focusable="false" role="img" aria-hidden="true"><path d="M12 2H2v11h6v1H1V1h12v6h-1V2zM5 5h5.999V4H5v1zM3 5V4h1v1H3zm2 3V7h3v1H5zM3 8V7h1v1H3zm2 3v-1h2v1H5zm5-1H8v1h2v2h1v-2h2v-1h-2V8h-1v2zm-7 1v-1h1v1H3zm7.5-5a4.5 4.5 0 110 9 4.5 4.5 0 010-9z"></path></svg></button></span></td><td class="kbnDocViewer__field"><div class="euiFlexGroup euiFlexGroup--gutterSmall euiFlexGroup--alignItemsCenter euiFlexGroup--directionRow"><div class="euiFlexItem euiFlexItem--flexGrowZero"><span class="euiToken euiToken--gray euiToken--square euiToken--small kbnFieldIcon"><svg width="16" height="16" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" class="euiIcon euiIcon--medium" focusable="false" role="img" aria-label="String field"><title>String field</title><path d="M9.147 4.297l-.255 1.455h.936l-.222 1.266h-.935l-.455 2.688c-.025.184-.013.323.036.417.048.093.17.144.365.151.075.004.23-.005.465-.027l-.13 1.32c-.3.097-.618.142-.957.135-.552-.007-.965-.17-1.239-.487-.274-.317-.386-.748-.335-1.293l.476-2.904h-.725l.216-1.266h.725l.254-1.455h1.78z"></path></svg></span></div><div class="euiFlexItem eui-textTruncate"><span class="euiToolTipAnchor eui-textTruncate"><span>kubernetes.container_hash</span></span></div></div></td><td><div class="kbnDocViewer__value" data-test-subj="tableDocViewRow-kubernetes.container_hash-value">registry.um.es:443/mncs/consulta-expedientes-api@sha256:53d5dc41868a6dc36523c8c75d0ae9372b2c4d38729256ac0ce0d96348a7acd8</div></td></tr><tr data-test-subj="tableDocViewRow-kubernetes.container_image"><td class="kbnDocViewer__buttons"><span class="euiToolTipAnchor"><button class="euiButtonIcon euiButtonIcon--primary kbnDocViewer__actionButton" type="button" aria-label="Filter for value" data-test-subj="addInclusiveFilterButton"><svg width="16" height="16" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" class="euiIcon euiIcon--small euiButtonIcon__icon" focusable="false" role="img" aria-hidden="true"><path d="M7 6h2.5a.5.5 0 010 1H7v2.5a.5.5 0 01-1 0V7H3.5a.5.5 0 010-1H6V3.5a.5.5 0 011 0V6zm3.24 4.74c0-.117.04-.225.107-.31A5.478 5.478 0 0012 6.5 5.5 5.5 0 106.5 12a.5.5 0 110 1 6.5 6.5 0 114.936-2.27l4.419 4.418a.5.5 0 01-.707.707l-4.768-4.768a.499.499 0 01-.14-.347z"></path></svg></button></span><span class="euiToolTipAnchor"><button class="euiButtonIcon euiButtonIcon--primary kbnDocViewer__actionButton" type="button" aria-label="Filter out value" data-test-subj="removeInclusiveFilterButton"><svg width="16" height="16" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" class="euiIcon euiIcon--small euiButtonIcon__icon" focusable="false" role="img" aria-hidden="true"><path d="M9.5 6a.5.5 0 010 1h-6a.5.5 0 010-1h6zm.74 4.74c0-.117.04-.225.107-.31A5.478 5.478 0 0012 6.5 5.5 5.5 0 106.5 12a.5.5 0 110 1 6.5 6.5 0 114.936-2.27l4.419 4.418a.5.5 0 01-.707.707l-4.768-4.768a.499.499 0 01-.14-.347z"></path></svg></button></span><span class="euiToolTipAnchor"><button class="euiButtonIcon euiButtonIcon--primary kbnDocViewer__actionButton" type="button" aria-label="Toggle column in table" aria-pressed="false" data-test-subj="toggleColumnButton"><svg width="16" height="16" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" class="euiIcon euiIcon--small euiButtonIcon__icon" focusable="false" role="img" aria-hidden="true"><path d="M1 1v14h14V1H1zM0 0h16v16H0V0zm9 1v14h1V1H9zM3 3.5h4v-1H3v1zm0 3h4v-1H3v1zm0 3h4v-1H3v1z"></path></svg></button></span><span class="euiToolTipAnchor"><button class="euiButtonIcon euiButtonIcon--primary kbnDocViewer__actionButton" type="button" aria-label="Filter for field present" data-test-subj="addExistsFilterButton"><svg width="16" height="16" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" class="euiIcon euiIcon--small euiButtonIcon__icon" focusable="false" role="img" aria-hidden="true"><path d="M12 2H2v11h6v1H1V1h12v6h-1V2zM5 5h5.999V4H5v1zM3 5V4h1v1H3zm2 3V7h3v1H5zM3 8V7h1v1H3zm2 3v-1h2v1H5zm5-1H8v1h2v2h1v-2h2v-1h-2V8h-1v2zm-7 1v-1h1v1H3zm7.5-5a4.5 4.5 0 110 9 4.5 4.5 0 010-9z"></path></svg></button></span></td><td class="kbnDocViewer__field"><div class="euiFlexGroup euiFlexGroup--gutterSmall euiFlexGroup--alignItemsCenter euiFlexGroup--directionRow"><div class="euiFlexItem euiFlexItem--flexGrowZero"><span class="euiToken euiToken--gray euiToken--square euiToken--small kbnFieldIcon"><svg width="16" height="16" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" class="euiIcon euiIcon--medium" focusable="false" role="img" aria-label="String field"><title>String field</title><path d="M9.147 4.297l-.255 1.455h.936l-.222 1.266h-.935l-.455 2.688c-.025.184-.013.323.036.417.048.093.17.144.365.151.075.004.23-.005.465-.027l-.13 1.32c-.3.097-.618.142-.957.135-.552-.007-.965-.17-1.239-.487-.274-.317-.386-.748-.335-1.293l.476-2.904h-.725l.216-1.266h.725l.254-1.455h1.78z"></path></svg></span></div><div class="euiFlexItem eui-textTruncate"><span class="euiToolTipAnchor eui-textTruncate"><span>kubernetes.container_image</span></span></div></div></td><td><div class="kbnDocViewer__value" data-test-subj="tableDocViewRow-kubernetes.container_image-value">registry.um.es:443/mncs/consulta-expedientes-api:0.0.540570</div></td></tr><tr data-test-subj="tableDocViewRow-kubernetes.container_name"><td class="kbnDocViewer__buttons"><span class="euiToolTipAnchor"><button class="euiButtonIcon euiButtonIcon--primary kbnDocViewer__actionButton" type="button" aria-label="Filter for value" data-test-subj="addInclusiveFilterButton"><svg width="16" height="16" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" class="euiIcon euiIcon--small euiButtonIcon__icon" focusable="false" role="img" aria-hidden="true"><path d="M7 6h2.5a.5.5 0 010 1H7v2.5a.5.5 0 01-1 0V7H3.5a.5.5 0 010-1H6V3.5a.5.5 0 011 0V6zm3.24 4.74c0-.117.04-.225.107-.31A5.478 5.478 0 0012 6.5 5.5 5.5 0 106.5 12a.5.5 0 110 1 6.5 6.5 0 114.936-2.27l4.419 4.418a.5.5 0 01-.707.707l-4.768-4.768a.499.499 0 01-.14-.347z"></path></svg></button></span><span class="euiToolTipAnchor"><button class="euiButtonIcon euiButtonIcon--primary kbnDocViewer__actionButton" type="button" aria-label="Filter out value" data-test-subj="removeInclusiveFilterButton"><svg width="16" height="16" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" class="euiIcon euiIcon--small euiButtonIcon__icon" focusable="false" role="img" aria-hidden="true"><path d="M9.5 6a.5.5 0 010 1h-6a.5.5 0 010-1h6zm.74 4.74c0-.117.04-.225.107-.31A5.478 5.478 0 0012 6.5 5.5 5.5 0 106.5 12a.5.5 0 110 1 6.5 6.5 0 114.936-2.27l4.419 4.418a.5.5 0 01-.707.707l-4.768-4.768a.499.499 0 01-.14-.347z"></path></svg></button></span><span class="euiToolTipAnchor"><button class="euiButtonIcon euiButtonIcon--primary kbnDocViewer__actionButton" type="button" aria-label="Toggle column in table" aria-pressed="false" data-test-subj="toggleColumnButton"><svg width="16" height="16" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" class="euiIcon euiIcon--small euiButtonIcon__icon" focusable="false" role="img" aria-hidden="true"><path d="M1 1v14h14V1H1zM0 0h16v16H0V0zm9 1v14h1V1H9zM3 3.5h4v-1H3v1zm0 3h4v-1H3v1zm0 3h4v-1H3v1z"></path></svg></button></span><span class="euiToolTipAnchor"><button class="euiButtonIcon euiButtonIcon--primary kbnDocViewer__actionButton" type="button" aria-label="Filter for field present" data-test-subj="addExistsFilterButton"><svg width="16" height="16" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" class="euiIcon euiIcon--small euiButtonIcon__icon" focusable="false" role="img" aria-hidden="true"><path d="M12 2H2v11h6v1H1V1h12v6h-1V2zM5 5h5.999V4H5v1zM3 5V4h1v1H3zm2 3V7h3v1H5zM3 8V7h1v1H3zm2 3v-1h2v1H5zm5-1H8v1h2v2h1v-2h2v-1h-2V8h-1v2zm-7 1v-1h1v1H3zm7.5-5a4.5 4.5 0 110 9 4.5 4.5 0 010-9z"></path></svg></button></span></td><td class="kbnDocViewer__field"><div class="euiFlexGroup euiFlexGroup--gutterSmall euiFlexGroup--alignItemsCenter euiFlexGroup--directionRow"><div class="euiFlexItem euiFlexItem--flexGrowZero"><span class="euiToken euiToken--gray euiToken--square euiToken--small kbnFieldIcon"><svg width="16" height="16" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" class="euiIcon euiIcon--medium" focusable="false" role="img" aria-label="String field"><title>String field</title><path d="M9.147 4.297l-.255 1.455h.936l-.222 1.266h-.935l-.455 2.688c-.025.184-.013.323.036.417.048.093.17.144.365.151.075.004.23-.005.465-.027l-.13 1.32c-.3.097-.618.142-.957.135-.552-.007-.965-.17-1.239-.487-.274-.317-.386-.748-.335-1.293l.476-2.904h-.725l.216-1.266h.725l.254-1.455h1.78z"></path></svg></span></div><div class="euiFlexItem eui-textTruncate"><span class="euiToolTipAnchor eui-textTruncate"><span>kubernetes.container_name</span></span></div></div></td><td><div class="kbnDocViewer__value" data-test-subj="tableDocViewRow-kubernetes.container_name-value">api</div></td></tr><tr data-test-subj="tableDocViewRow-kubernetes.docker_id"><td class="kbnDocViewer__buttons"><span class="euiToolTipAnchor"><button class="euiButtonIcon euiButtonIcon--primary kbnDocViewer__actionButton" type="button" aria-label="Filter for value" data-test-subj="addInclusiveFilterButton"><svg width="16" height="16" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" class="euiIcon euiIcon--small euiButtonIcon__icon" focusable="false" role="img" aria-hidden="true"><path d="M7 6h2.5a.5.5 0 010 1H7v2.5a.5.5 0 01-1 0V7H3.5a.5.5 0 010-1H6V3.5a.5.5 0 011 0V6zm3.24 4.74c0-.117.04-.225.107-.31A5.478 5.478 0 0012 6.5 5.5 5.5 0 106.5 12a.5.5 0 110 1 6.5 6.5 0 114.936-2.27l4.419 4.418a.5.5 0 01-.707.707l-4.768-4.768a.499.499 0 01-.14-.347z"></path></svg></button></span><span class="euiToolTipAnchor"><button class="euiButtonIcon euiButtonIcon--primary kbnDocViewer__actionButton" type="button" aria-label="Filter out value" data-test-subj="removeInclusiveFilterButton"><svg width="16" height="16" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" class="euiIcon euiIcon--small euiButtonIcon__icon" focusable="false" role="img" aria-hidden="true"><path d="M9.5 6a.5.5 0 010 1h-6a.5.5 0 010-1h6zm.74 4.74c0-.117.04-.225.107-.31A5.478 5.478 0 0012 6.5 5.5 5.5 0 106.5 12a.5.5 0 110 1 6.5 6.5 0 114.936-2.27l4.419 4.418a.5.5 0 01-.707.707l-4.768-4.768a.499.499 0 01-.14-.347z"></path></svg></button></span><span class="euiToolTipAnchor"><button class="euiButtonIcon euiButtonIcon--primary kbnDocViewer__actionButton" type="button" aria-label="Toggle column in table" aria-pressed="false" data-test-subj="toggleColumnButton"><svg width="16" height="16" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" class="euiIcon euiIcon--small euiButtonIcon__icon" focusable="false" role="img" aria-hidden="true"><path d="M1 1v14h14V1H1zM0 0h16v16H0V0zm9 1v14h1V1H9zM3 3.5h4v-1H3v1zm0 3h4v-1H3v1zm0 3h4v-1H3v1z"></path></svg></button></span><span class="euiToolTipAnchor"><button class="euiButtonIcon euiButtonIcon--primary kbnDocViewer__actionButton" type="button" aria-label="Filter for field present" data-test-subj="addExistsFilterButton"><svg width="16" height="16" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" class="euiIcon euiIcon--small euiButtonIcon__icon" focusable="false" role="img" aria-hidden="true"><path d="M12 2H2v11h6v1H1V1h12v6h-1V2zM5 5h5.999V4H5v1zM3 5V4h1v1H3zm2 3V7h3v1H5zM3 8V7h1v1H3zm2 3v-1h2v1H5zm5-1H8v1h2v2h1v-2h2v-1h-2V8h-1v2zm-7 1v-1h1v1H3zm7.5-5a4.5 4.5 0 110 9 4.5 4.5 0 010-9z"></path></svg></button></span></td><td class="kbnDocViewer__field"><div class="euiFlexGroup euiFlexGroup--gutterSmall euiFlexGroup--alignItemsCenter euiFlexGroup--directionRow"><div class="euiFlexItem euiFlexItem--flexGrowZero"><span class="euiToken euiToken--gray euiToken--square euiToken--small kbnFieldIcon"><svg width="16" height="16" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" class="euiIcon euiIcon--medium" focusable="false" role="img" aria-label="String field"><title>String field</title><path d="M9.147 4.297l-.255 1.455h.936l-.222 1.266h-.935l-.455 2.688c-.025.184-.013.323.036.417.048.093.17.144.365.151.075.004.23-.005.465-.027l-.13 1.32c-.3.097-.618.142-.957.135-.552-.007-.965-.17-1.239-.487-.274-.317-.386-.748-.335-1.293l.476-2.904h-.725l.216-1.266h.725l.254-1.455h1.78z"></path></svg></span></div><div class="euiFlexItem eui-textTruncate"><span class="euiToolTipAnchor eui-textTruncate"><span>kubernetes.docker_id</span></span></div></div></td><td><div class="kbnDocViewer__value" data-test-subj="tableDocViewRow-kubernetes.docker_id-value">ebf5e81608c2d6b3bd25f16c81b9931ac6810595086c6ea1e9fbf880cf74d5d2</div></td></tr><tr data-test-subj="tableDocViewRow-kubernetes.host"><td class="kbnDocViewer__buttons"><span class="euiToolTipAnchor"><button class="euiButtonIcon euiButtonIcon--primary kbnDocViewer__actionButton" type="button" aria-label="Filter for value" data-test-subj="addInclusiveFilterButton"><svg width="16" height="16" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" class="euiIcon euiIcon--small euiButtonIcon__icon" focusable="false" role="img" aria-hidden="true"><path d="M7 6h2.5a.5.5 0 010 1H7v2.5a.5.5 0 01-1 0V7H3.5a.5.5 0 010-1H6V3.5a.5.5 0 011 0V6zm3.24 4.74c0-.117.04-.225.107-.31A5.478 5.478 0 0012 6.5 5.5 5.5 0 106.5 12a.5.5 0 110 1 6.5 6.5 0 114.936-2.27l4.419 4.418a.5.5 0 01-.707.707l-4.768-4.768a.499.499 0 01-.14-.347z"></path></svg></button></span><span class="euiToolTipAnchor"><button class="euiButtonIcon euiButtonIcon--primary kbnDocViewer__actionButton" type="button" aria-label="Filter out value" data-test-subj="removeInclusiveFilterButton"><svg width="16" height="16" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" class="euiIcon euiIcon--small euiButtonIcon__icon" focusable="false" role="img" aria-hidden="true"><path d="M9.5 6a.5.5 0 010 1h-6a.5.5 0 010-1h6zm.74 4.74c0-.117.04-.225.107-.31A5.478 5.478 0 0012 6.5 5.5 5.5 0 106.5 12a.5.5 0 110 1 6.5 6.5 0 114.936-2.27l4.419 4.418a.5.5 0 01-.707.707l-4.768-4.768a.499.499 0 01-.14-.347z"></path></svg></button></span><span class="euiToolTipAnchor"><button class="euiButtonIcon euiButtonIcon--primary kbnDocViewer__actionButton" type="button" aria-label="Toggle column in table" aria-pressed="false" data-test-subj="toggleColumnButton"><svg width="16" height="16" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" class="euiIcon euiIcon--small euiButtonIcon__icon" focusable="false" role="img" aria-hidden="true"><path d="M1 1v14h14V1H1zM0 0h16v16H0V0zm9 1v14h1V1H9zM3 3.5h4v-1H3v1zm0 3h4v-1H3v1zm0 3h4v-1H3v1z"></path></svg></button></span><span class="euiToolTipAnchor"><button class="euiButtonIcon euiButtonIcon--primary kbnDocViewer__actionButton" type="button" aria-label="Filter for field present" data-test-subj="addExistsFilterButton"><svg width="16" height="16" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" class="euiIcon euiIcon--small euiButtonIcon__icon" focusable="false" role="img" aria-hidden="true"><path d="M12 2H2v11h6v1H1V1h12v6h-1V2zM5 5h5.999V4H5v1zM3 5V4h1v1H3zm2 3V7h3v1H5zM3 8V7h1v1H3zm2 3v-1h2v1H5zm5-1H8v1h2v2h1v-2h2v-1h-2V8h-1v2zm-7 1v-1h1v1H3zm7.5-5a4.5 4.5 0 110 9 4.5 4.5 0 010-9z"></path></svg></button></span></td><td class="kbnDocViewer__field"><div class="euiFlexGroup euiFlexGroup--gutterSmall euiFlexGroup--alignItemsCenter euiFlexGroup--directionRow"><div class="euiFlexItem euiFlexItem--flexGrowZero"><span class="euiToken euiToken--gray euiToken--square euiToken--small kbnFieldIcon"><svg width="16" height="16" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" class="euiIcon euiIcon--medium" focusable="false" role="img" aria-label="String field"><title>String field</title><path d="M9.147 4.297l-.255 1.455h.936l-.222 1.266h-.935l-.455 2.688c-.025.184-.013.323.036.417.048.093.17.144.365.151.075.004.23-.005.465-.027l-.13 1.32c-.3.097-.618.142-.957.135-.552-.007-.965-.17-1.239-.487-.274-.317-.386-.748-.335-1.293l.476-2.904h-.725l.216-1.266h.725l.254-1.455h1.78z"></path></svg></span></div><div class="euiFlexItem eui-textTruncate"><span class="euiToolTipAnchor eui-textTruncate"><span>kubernetes.host</span></span></div></div></td><td><div class="kbnDocViewer__value" data-test-subj="tableDocViewRow-kubernetes.host-value">155.54.228.21</div></td></tr><tr data-test-subj="tableDocViewRow-kubernetes.labels.app"><td class="kbnDocViewer__buttons"><span class="euiToolTipAnchor"><button class="euiButtonIcon euiButtonIcon--primary kbnDocViewer__actionButton" type="button" aria-label="Filter for value" data-test-subj="addInclusiveFilterButton"><svg width="16" height="16" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" class="euiIcon euiIcon--small euiButtonIcon__icon" focusable="false" role="img" aria-hidden="true"><path d="M7 6h2.5a.5.5 0 010 1H7v2.5a.5.5 0 01-1 0V7H3.5a.5.5 0 010-1H6V3.5a.5.5 0 011 0V6zm3.24 4.74c0-.117.04-.225.107-.31A5.478 5.478 0 0012 6.5 5.5 5.5 0 106.5 12a.5.5 0 110 1 6.5 6.5 0 114.936-2.27l4.419 4.418a.5.5 0 01-.707.707l-4.768-4.768a.499.499 0 01-.14-.347z"></path></svg></button></span><span class="euiToolTipAnchor"><button class="euiButtonIcon euiButtonIcon--primary kbnDocViewer__actionButton" type="button" aria-label="Filter out value" data-test-subj="removeInclusiveFilterButton"><svg width="16" height="16" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" class="euiIcon euiIcon--small euiButtonIcon__icon" focusable="false" role="img" aria-hidden="true"><path d="M9.5 6a.5.5 0 010 1h-6a.5.5 0 010-1h6zm.74 4.74c0-.117.04-.225.107-.31A5.478 5.478 0 0012 6.5 5.5 5.5 0 106.5 12a.5.5 0 110 1 6.5 6.5 0 114.936-2.27l4.419 4.418a.5.5 0 01-.707.707l-4.768-4.768a.499.499 0 01-.14-.347z"></path></svg></button></span><span class="euiToolTipAnchor"><button class="euiButtonIcon euiButtonIcon--primary kbnDocViewer__actionButton" type="button" aria-label="Toggle column in table" aria-pressed="false" data-test-subj="toggleColumnButton"><svg width="16" height="16" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" class="euiIcon euiIcon--small euiButtonIcon__icon" focusable="false" role="img" aria-hidden="true"><path d="M1 1v14h14V1H1zM0 0h16v16H0V0zm9 1v14h1V1H9zM3 3.5h4v-1H3v1zm0 3h4v-1H3v1zm0 3h4v-1H3v1z"></path></svg></button></span><span class="euiToolTipAnchor"><button class="euiButtonIcon euiButtonIcon--primary kbnDocViewer__actionButton" type="button" aria-label="Filter for field present" data-test-subj="addExistsFilterButton"><svg width="16" height="16" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" class="euiIcon euiIcon--small euiButtonIcon__icon" focusable="false" role="img" aria-hidden="true"><path d="M12 2H2v11h6v1H1V1h12v6h-1V2zM5 5h5.999V4H5v1zM3 5V4h1v1H3zm2 3V7h3v1H5zM3 8V7h1v1H3zm2 3v-1h2v1H5zm5-1H8v1h2v2h1v-2h2v-1h-2V8h-1v2zm-7 1v-1h1v1H3zm7.5-5a4.5 4.5 0 110 9 4.5 4.5 0 010-9z"></path></svg></button></span></td><td class="kbnDocViewer__field"><div class="euiFlexGroup euiFlexGroup--gutterSmall euiFlexGroup--alignItemsCenter euiFlexGroup--directionRow"><div class="euiFlexItem euiFlexItem--flexGrowZero"><span class="euiToken euiToken--gray euiToken--square euiToken--small kbnFieldIcon"><svg width="16" height="16" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" class="euiIcon euiIcon--medium" focusable="false" role="img" aria-label="String field"><title>String field</title><path d="M9.147 4.297l-.255 1.455h.936l-.222 1.266h-.935l-.455 2.688c-.025.184-.013.323.036.417.048.093.17.144.365.151.075.004.23-.005.465-.027l-.13 1.32c-.3.097-.618.142-.957.135-.552-.007-.965-.17-1.239-.487-.274-.317-.386-.748-.335-1.293l.476-2.904h-.725l.216-1.266h.725l.254-1.455h1.78z"></path></svg></span></div><div class="euiFlexItem eui-textTruncate"><span class="euiToolTipAnchor eui-textTruncate"><span>kubernetes.labels.app</span></span></div></div></td><td><div class="kbnDocViewer__value" data-test-subj="tableDocViewRow-kubernetes.labels.app-value">api</div></td></tr><tr data-test-subj="tableDocViewRow-kubernetes.labels.author"><td class="kbnDocViewer__buttons"><span class="euiToolTipAnchor"><button class="euiButtonIcon euiButtonIcon--primary kbnDocViewer__actionButton" type="button" aria-label="Filter for value" data-test-subj="addInclusiveFilterButton"><svg width="16" height="16" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" class="euiIcon euiIcon--small euiButtonIcon__icon" focusable="false" role="img" aria-hidden="true"><path d="M7 6h2.5a.5.5 0 010 1H7v2.5a.5.5 0 01-1 0V7H3.5a.5.5 0 010-1H6V3.5a.5.5 0 011 0V6zm3.24 4.74c0-.117.04-.225.107-.31A5.478 5.478 0 0012 6.5 5.5 5.5 0 106.5 12a.5.5 0 110 1 6.5 6.5 0 114.936-2.27l4.419 4.418a.5.5 0 01-.707.707l-4.768-4.768a.499.499 0 01-.14-.347z"></path></svg></button></span><span class="euiToolTipAnchor"><button class="euiButtonIcon euiButtonIcon--primary kbnDocViewer__actionButton" type="button" aria-label="Filter out value" data-test-subj="removeInclusiveFilterButton"><svg width="16" height="16" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" class="euiIcon euiIcon--small euiButtonIcon__icon" focusable="false" role="img" aria-hidden="true"><path d="M9.5 6a.5.5 0 010 1h-6a.5.5 0 010-1h6zm.74 4.74c0-.117.04-.225.107-.31A5.478 5.478 0 0012 6.5 5.5 5.5 0 106.5 12a.5.5 0 110 1 6.5 6.5 0 114.936-2.27l4.419 4.418a.5.5 0 01-.707.707l-4.768-4.768a.499.499 0 01-.14-.347z"></path></svg></button></span><span class="euiToolTipAnchor"><button class="euiButtonIcon euiButtonIcon--primary kbnDocViewer__actionButton" type="button" aria-label="Toggle column in table" aria-pressed="false" data-test-subj="toggleColumnButton"><svg width="16" height="16" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" class="euiIcon euiIcon--small euiButtonIcon__icon" focusable="false" role="img" aria-hidden="true"><path d="M1 1v14h14V1H1zM0 0h16v16H0V0zm9 1v14h1V1H9zM3 3.5h4v-1H3v1zm0 3h4v-1H3v1zm0 3h4v-1H3v1z"></path></svg></button></span><span class="euiToolTipAnchor"><button class="euiButtonIcon euiButtonIcon--primary kbnDocViewer__actionButton" type="button" aria-label="Filter for field present" data-test-subj="addExistsFilterButton"><svg width="16" height="16" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" class="euiIcon euiIcon--small euiButtonIcon__icon" focusable="false" role="img" aria-hidden="true"><path d="M12 2H2v11h6v1H1V1h12v6h-1V2zM5 5h5.999V4H5v1zM3 5V4h1v1H3zm2 3V7h3v1H5zM3 8V7h1v1H3zm2 3v-1h2v1H5zm5-1H8v1h2v2h1v-2h2v-1h-2V8h-1v2zm-7 1v-1h1v1H3zm7.5-5a4.5 4.5 0 110 9 4.5 4.5 0 010-9z"></path></svg></button></span></td><td class="kbnDocViewer__field"><div class="euiFlexGroup euiFlexGroup--gutterSmall euiFlexGroup--alignItemsCenter euiFlexGroup--directionRow"><div class="euiFlexItem euiFlexItem--flexGrowZero"><span class="euiToken euiToken--gray euiToken--square euiToken--small kbnFieldIcon"><svg width="16" height="16" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" class="euiIcon euiIcon--medium" focusable="false" role="img" aria-label="String field"><title>String field</title><path d="M9.147 4.297l-.255 1.455h.936l-.222 1.266h-.935l-.455 2.688c-.025.184-.013.323.036.417.048.093.17.144.365.151.075.004.23-.005.465-.027l-.13 1.32c-.3.097-.618.142-.957.135-.552-.007-.965-.17-1.239-.487-.274-.317-.386-.748-.335-1.293l.476-2.904h-.725l.216-1.266h.725l.254-1.455h1.78z"></path></svg></span></div><div class="euiFlexItem eui-textTruncate"><span class="euiToolTipAnchor eui-textTruncate"><span>kubernetes.labels.author</span></span></div></div></td><td><div class="kbnDocViewer__value" data-test-subj="tableDocViewRow-kubernetes.labels.author-value">campusvirtual</div></td></tr><tr data-test-subj="tableDocViewRow-kubernetes.labels.pod-template-hash"><td class="kbnDocViewer__buttons"><span class="euiToolTipAnchor"><button class="euiButtonIcon euiButtonIcon--primary kbnDocViewer__actionButton" type="button" aria-label="Filter for value" data-test-subj="addInclusiveFilterButton"><svg width="16" height="16" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" class="euiIcon euiIcon--small euiButtonIcon__icon" focusable="false" role="img" aria-hidden="true"><path d="M7 6h2.5a.5.5 0 010 1H7v2.5a.5.5 0 01-1 0V7H3.5a.5.5 0 010-1H6V3.5a.5.5 0 011 0V6zm3.24 4.74c0-.117.04-.225.107-.31A5.478 5.478 0 0012 6.5 5.5 5.5 0 106.5 12a.5.5 0 110 1 6.5 6.5 0 114.936-2.27l4.419 4.418a.5.5 0 01-.707.707l-4.768-4.768a.499.499 0 01-.14-.347z"></path></svg></button></span><span class="euiToolTipAnchor"><button class="euiButtonIcon euiButtonIcon--primary kbnDocViewer__actionButton" type="button" aria-label="Filter out value" data-test-subj="removeInclusiveFilterButton"><svg width="16" height="16" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" class="euiIcon euiIcon--small euiButtonIcon__icon" focusable="false" role="img" aria-hidden="true"><path d="M9.5 6a.5.5 0 010 1h-6a.5.5 0 010-1h6zm.74 4.74c0-.117.04-.225.107-.31A5.478 5.478 0 0012 6.5 5.5 5.5 0 106.5 12a.5.5 0 110 1 6.5 6.5 0 114.936-2.27l4.419 4.418a.5.5 0 01-.707.707l-4.768-4.768a.499.499 0 01-.14-.347z"></path></svg></button></span><span class="euiToolTipAnchor"><button class="euiButtonIcon euiButtonIcon--primary kbnDocViewer__actionButton" type="button" aria-label="Toggle column in table" aria-pressed="false" data-test-subj="toggleColumnButton"><svg width="16" height="16" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" class="euiIcon euiIcon--small euiButtonIcon__icon" focusable="false" role="img" aria-hidden="true"><path d="M1 1v14h14V1H1zM0 0h16v16H0V0zm9 1v14h1V1H9zM3 3.5h4v-1H3v1zm0 3h4v-1H3v1zm0 3h4v-1H3v1z"></path></svg></button></span><span class="euiToolTipAnchor"><button class="euiButtonIcon euiButtonIcon--primary kbnDocViewer__actionButton" type="button" aria-label="Filter for field present" data-test-subj="addExistsFilterButton"><svg width="16" height="16" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" class="euiIcon euiIcon--small euiButtonIcon__icon" focusable="false" role="img" aria-hidden="true"><path d="M12 2H2v11h6v1H1V1h12v6h-1V2zM5 5h5.999V4H5v1zM3 5V4h1v1H3zm2 3V7h3v1H5zM3 8V7h1v1H3zm2 3v-1h2v1H5zm5-1H8v1h2v2h1v-2h2v-1h-2V8h-1v2zm-7 1v-1h1v1H3zm7.5-5a4.5 4.5 0 110 9 4.5 4.5 0 010-9z"></path></svg></button></span></td><td class="kbnDocViewer__field"><div class="euiFlexGroup euiFlexGroup--gutterSmall euiFlexGroup--alignItemsCenter euiFlexGroup--directionRow"><div class="euiFlexItem euiFlexItem--flexGrowZero"><span class="euiToken euiToken--gray euiToken--square euiToken--small kbnFieldIcon"><svg width="16" height="16" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" class="euiIcon euiIcon--medium" focusable="false" role="img" aria-label="String field"><title>String field</title><path d="M9.147 4.297l-.255 1.455h.936l-.222 1.266h-.935l-.455 2.688c-.025.184-.013.323.036.417.048.093.17.144.365.151.075.004.23-.005.465-.027l-.13 1.32c-.3.097-.618.142-.957.135-.552-.007-.965-.17-1.239-.487-.274-.317-.386-.748-.335-1.293l.476-2.904h-.725l.216-1.266h.725l.254-1.455h1.78z"></path></svg></span></div><div class="euiFlexItem eui-textTruncate"><span class="euiToolTipAnchor eui-textTruncate"><span>kubernetes.labels.pod-template-hash</span></span></div></div></td><td><div class="kbnDocViewer__value" data-test-subj="tableDocViewRow-kubernetes.labels.pod-template-hash-value">5499587c9f</div></td></tr><tr data-test-subj="tableDocViewRow-kubernetes.log.type"><td class="kbnDocViewer__buttons"><span class="euiToolTipAnchor"><button class="euiButtonIcon euiButtonIcon--primary kbnDocViewer__actionButton" type="button" aria-label="Filter for value" data-test-subj="addInclusiveFilterButton"><svg width="16" height="16" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" class="euiIcon euiIcon--small euiButtonIcon__icon" focusable="false" role="img" aria-hidden="true"><path d="M7 6h2.5a.5.5 0 010 1H7v2.5a.5.5 0 01-1 0V7H3.5a.5.5 0 010-1H6V3.5a.5.5 0 011 0V6zm3.24 4.74c0-.117.04-.225.107-.31A5.478 5.478 0 0012 6.5 5.5 5.5 0 106.5 12a.5.5 0 110 1 6.5 6.5 0 114.936-2.27l4.419 4.418a.5.5 0 01-.707.707l-4.768-4.768a.499.499 0 01-.14-.347z"></path></svg></button></span><span class="euiToolTipAnchor"><button class="euiButtonIcon euiButtonIcon--primary kbnDocViewer__actionButton" type="button" aria-label="Filter out value" data-test-subj="removeInclusiveFilterButton"><svg width="16" height="16" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" class="euiIcon euiIcon--small euiButtonIcon__icon" focusable="false" role="img" aria-hidden="true"><path d="M9.5 6a.5.5 0 010 1h-6a.5.5 0 010-1h6zm.74 4.74c0-.117.04-.225.107-.31A5.478 5.478 0 0012 6.5 5.5 5.5 0 106.5 12a.5.5 0 110 1 6.5 6.5 0 114.936-2.27l4.419 4.418a.5.5 0 01-.707.707l-4.768-4.768a.499.499 0 01-.14-.347z"></path></svg></button></span><span class="euiToolTipAnchor"><button class="euiButtonIcon euiButtonIcon--primary kbnDocViewer__actionButton" type="button" aria-label="Toggle column in table" aria-pressed="false" data-test-subj="toggleColumnButton"><svg width="16" height="16" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" class="euiIcon euiIcon--small euiButtonIcon__icon" focusable="false" role="img" aria-hidden="true"><path d="M1 1v14h14V1H1zM0 0h16v16H0V0zm9 1v14h1V1H9zM3 3.5h4v-1H3v1zm0 3h4v-1H3v1zm0 3h4v-1H3v1z"></path></svg></button></span><span class="euiToolTipAnchor"><button class="euiButtonIcon euiButtonIcon--primary kbnDocViewer__actionButton" type="button" aria-label="Filter for field present" data-test-subj="addExistsFilterButton"><svg width="16" height="16" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" class="euiIcon euiIcon--small euiButtonIcon__icon" focusable="false" role="img" aria-hidden="true"><path d="M12 2H2v11h6v1H1V1h12v6h-1V2zM5 5h5.999V4H5v1zM3 5V4h1v1H3zm2 3V7h3v1H5zM3 8V7h1v1H3zm2 3v-1h2v1H5zm5-1H8v1h2v2h1v-2h2v-1h-2V8h-1v2zm-7 1v-1h1v1H3zm7.5-5a4.5 4.5 0 110 9 4.5 4.5 0 010-9z"></path></svg></button></span></td><td class="kbnDocViewer__field"><div class="euiFlexGroup euiFlexGroup--gutterSmall euiFlexGroup--alignItemsCenter euiFlexGroup--directionRow"><div class="euiFlexItem euiFlexItem--flexGrowZero"><span class="euiToken euiToken--gray euiToken--square euiToken--small kbnFieldIcon"><svg width="16" height="16" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" class="euiIcon euiIcon--medium" focusable="false" role="img" aria-label="String field"><title>String field</title><path d="M9.147 4.297l-.255 1.455h.936l-.222 1.266h-.935l-.455 2.688c-.025.184-.013.323.036.417.048.093.17.144.365.151.075.004.23-.005.465-.027l-.13 1.32c-.3.097-.618.142-.957.135-.552-.007-.965-.17-1.239-.487-.274-.317-.386-.748-.335-1.293l.476-2.904h-.725l.216-1.266h.725l.254-1.455h1.78z"></path></svg></span></div><div class="euiFlexItem eui-textTruncate"><span class="euiToolTipAnchor eui-textTruncate"><span>kubernetes.log.type</span></span></div></div></td><td><div class="kbnDocViewer__value" data-test-subj="tableDocViewRow-kubernetes.log.type-value"><mark>kube_apli</mark></div></td></tr><tr data-test-subj="tableDocViewRow-kubernetes.namespace_name"><td class="kbnDocViewer__buttons"><span class="euiToolTipAnchor"><button class="euiButtonIcon euiButtonIcon--primary kbnDocViewer__actionButton" type="button" aria-label="Filter for value" data-test-subj="addInclusiveFilterButton"><svg width="16" height="16" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" class="euiIcon euiIcon--small euiButtonIcon__icon" focusable="false" role="img" aria-hidden="true"><path d="M7 6h2.5a.5.5 0 010 1H7v2.5a.5.5 0 01-1 0V7H3.5a.5.5 0 010-1H6V3.5a.5.5 0 011 0V6zm3.24 4.74c0-.117.04-.225.107-.31A5.478 5.478 0 0012 6.5 5.5 5.5 0 106.5 12a.5.5 0 110 1 6.5 6.5 0 114.936-2.27l4.419 4.418a.5.5 0 01-.707.707l-4.768-4.768a.499.499 0 01-.14-.347z"></path></svg></button></span><span class="euiToolTipAnchor"><button class="euiButtonIcon euiButtonIcon--primary kbnDocViewer__actionButton" type="button" aria-label="Filter out value" data-test-subj="removeInclusiveFilterButton"><svg width="16" height="16" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" class="euiIcon euiIcon--small euiButtonIcon__icon" focusable="false" role="img" aria-hidden="true"><path d="M9.5 6a.5.5 0 010 1h-6a.5.5 0 010-1h6zm.74 4.74c0-.117.04-.225.107-.31A5.478 5.478 0 0012 6.5 5.5 5.5 0 106.5 12a.5.5 0 110 1 6.5 6.5 0 114.936-2.27l4.419 4.418a.5.5 0 01-.707.707l-4.768-4.768a.499.499 0 01-.14-.347z"></path></svg></button></span><span class="euiToolTipAnchor"><button class="euiButtonIcon euiButtonIcon--primary kbnDocViewer__actionButton" type="button" aria-label="Toggle column in table" aria-pressed="false" data-test-subj="toggleColumnButton"><svg width="16" height="16" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" class="euiIcon euiIcon--small euiButtonIcon__icon" focusable="false" role="img" aria-hidden="true"><path d="M1 1v14h14V1H1zM0 0h16v16H0V0zm9 1v14h1V1H9zM3 3.5h4v-1H3v1zm0 3h4v-1H3v1zm0 3h4v-1H3v1z"></path></svg></button></span><span class="euiToolTipAnchor"><button class="euiButtonIcon euiButtonIcon--primary kbnDocViewer__actionButton" type="button" aria-label="Filter for field present" data-test-subj="addExistsFilterButton"><svg width="16" height="16" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" class="euiIcon euiIcon--small euiButtonIcon__icon" focusable="false" role="img" aria-hidden="true"><path d="M12 2H2v11h6v1H1V1h12v6h-1V2zM5 5h5.999V4H5v1zM3 5V4h1v1H3zm2 3V7h3v1H5zM3 8V7h1v1H3zm2 3v-1h2v1H5zm5-1H8v1h2v2h1v-2h2v-1h-2V8h-1v2zm-7 1v-1h1v1H3zm7.5-5a4.5 4.5 0 110 9 4.5 4.5 0 010-9z"></path></svg></button></span></td><td class="kbnDocViewer__field"><div class="euiFlexGroup euiFlexGroup--gutterSmall euiFlexGroup--alignItemsCenter euiFlexGroup--directionRow"><div class="euiFlexItem euiFlexItem--flexGrowZero"><span class="euiToken euiToken--gray euiToken--square euiToken--small kbnFieldIcon"><svg width="16" height="16" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" class="euiIcon euiIcon--medium" focusable="false" role="img" aria-label="String field"><title>String field</title><path d="M9.147 4.297l-.255 1.455h.936l-.222 1.266h-.935l-.455 2.688c-.025.184-.013.323.036.417.048.093.17.144.365.151.075.004.23-.005.465-.027l-.13 1.32c-.3.097-.618.142-.957.135-.552-.007-.965-.17-1.239-.487-.274-.317-.386-.748-.335-1.293l.476-2.904h-.725l.216-1.266h.725l.254-1.455h1.78z"></path></svg></span></div><div class="euiFlexItem eui-textTruncate"><span class="euiToolTipAnchor eui-textTruncate"><span>kubernetes.namespace_name</span></span></div></div></td><td><div class="kbnDocViewer__value" data-test-subj="tableDocViewRow-kubernetes.namespace_name-value">consultaexp-ns-desa</div></td></tr><tr data-test-subj="tableDocViewRow-kubernetes.pod_id"><td class="kbnDocViewer__buttons"><span class="euiToolTipAnchor"><button class="euiButtonIcon euiButtonIcon--primary kbnDocViewer__actionButton" type="button" aria-label="Filter for value" data-test-subj="addInclusiveFilterButton"><svg width="16" height="16" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" class="euiIcon euiIcon--small euiButtonIcon__icon" focusable="false" role="img" aria-hidden="true"><path d="M7 6h2.5a.5.5 0 010 1H7v2.5a.5.5 0 01-1 0V7H3.5a.5.5 0 010-1H6V3.5a.5.5 0 011 0V6zm3.24 4.74c0-.117.04-.225.107-.31A5.478 5.478 0 0012 6.5 5.5 5.5 0 106.5 12a.5.5 0 110 1 6.5 6.5 0 114.936-2.27l4.419 4.418a.5.5 0 01-.707.707l-4.768-4.768a.499.499 0 01-.14-.347z"></path></svg></button></span><span class="euiToolTipAnchor"><button class="euiButtonIcon euiButtonIcon--primary kbnDocViewer__actionButton" type="button" aria-label="Filter out value" data-test-subj="removeInclusiveFilterButton"><svg width="16" height="16" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" class="euiIcon euiIcon--small euiButtonIcon__icon" focusable="false" role="img" aria-hidden="true"><path d="M9.5 6a.5.5 0 010 1h-6a.5.5 0 010-1h6zm.74 4.74c0-.117.04-.225.107-.31A5.478 5.478 0 0012 6.5 5.5 5.5 0 106.5 12a.5.5 0 110 1 6.5 6.5 0 114.936-2.27l4.419 4.418a.5.5 0 01-.707.707l-4.768-4.768a.499.499 0 01-.14-.347z"></path></svg></button></span><span class="euiToolTipAnchor"><button class="euiButtonIcon euiButtonIcon--primary kbnDocViewer__actionButton" type="button" aria-label="Toggle column in table" aria-pressed="false" data-test-subj="toggleColumnButton"><svg width="16" height="16" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" class="euiIcon euiIcon--small euiButtonIcon__icon" focusable="false" role="img" aria-hidden="true"><path d="M1 1v14h14V1H1zM0 0h16v16H0V0zm9 1v14h1V1H9zM3 3.5h4v-1H3v1zm0 3h4v-1H3v1zm0 3h4v-1H3v1z"></path></svg></button></span><span class="euiToolTipAnchor"><button class="euiButtonIcon euiButtonIcon--primary kbnDocViewer__actionButton" type="button" aria-label="Filter for field present" data-test-subj="addExistsFilterButton"><svg width="16" height="16" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" class="euiIcon euiIcon--small euiButtonIcon__icon" focusable="false" role="img" aria-hidden="true"><path d="M12 2H2v11h6v1H1V1h12v6h-1V2zM5 5h5.999V4H5v1zM3 5V4h1v1H3zm2 3V7h3v1H5zM3 8V7h1v1H3zm2 3v-1h2v1H5zm5-1H8v1h2v2h1v-2h2v-1h-2V8h-1v2zm-7 1v-1h1v1H3zm7.5-5a4.5 4.5 0 110 9 4.5 4.5 0 010-9z"></path></svg></button></span></td><td class="kbnDocViewer__field"><div class="euiFlexGroup euiFlexGroup--gutterSmall euiFlexGroup--alignItemsCenter euiFlexGroup--directionRow"><div class="euiFlexItem euiFlexItem--flexGrowZero"><span class="euiToken euiToken--gray euiToken--square euiToken--small kbnFieldIcon"><svg width="16" height="16" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" class="euiIcon euiIcon--medium" focusable="false" role="img" aria-label="String field"><title>String field</title><path d="M9.147 4.297l-.255 1.455h.936l-.222 1.266h-.935l-.455 2.688c-.025.184-.013.323.036.417.048.093.17.144.365.151.075.004.23-.005.465-.027l-.13 1.32c-.3.097-.618.142-.957.135-.552-.007-.965-.17-1.239-.487-.274-.317-.386-.748-.335-1.293l.476-2.904h-.725l.216-1.266h.725l.254-1.455h1.78z"></path></svg></span></div><div class="euiFlexItem eui-textTruncate"><span class="euiToolTipAnchor eui-textTruncate"><span>kubernetes.pod_id</span></span></div></div></td><td><div class="kbnDocViewer__value" data-test-subj="tableDocViewRow-kubernetes.pod_id-value">48733f4e-9f95-40ae-a560-373154829bc8</div></td></tr><tr data-test-subj="tableDocViewRow-kubernetes.pod_name"><td class="kbnDocViewer__buttons"><span class="euiToolTipAnchor"><button class="euiButtonIcon euiButtonIcon--primary kbnDocViewer__actionButton" type="button" aria-label="Filter for value" data-test-subj="addInclusiveFilterButton"><svg width="16" height="16" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" class="euiIcon euiIcon--small euiButtonIcon__icon" focusable="false" role="img" aria-hidden="true"><path d="M7 6h2.5a.5.5 0 010 1H7v2.5a.5.5 0 01-1 0V7H3.5a.5.5 0 010-1H6V3.5a.5.5 0 011 0V6zm3.24 4.74c0-.117.04-.225.107-.31A5.478 5.478 0 0012 6.5 5.5 5.5 0 106.5 12a.5.5 0 110 1 6.5 6.5 0 114.936-2.27l4.419 4.418a.5.5 0 01-.707.707l-4.768-4.768a.499.499 0 01-.14-.347z"></path></svg></button></span><span class="euiToolTipAnchor"><button class="euiButtonIcon euiButtonIcon--primary kbnDocViewer__actionButton" type="button" aria-label="Filter out value" data-test-subj="removeInclusiveFilterButton"><svg width="16" height="16" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" class="euiIcon euiIcon--small euiButtonIcon__icon" focusable="false" role="img" aria-hidden="true"><path d="M9.5 6a.5.5 0 010 1h-6a.5.5 0 010-1h6zm.74 4.74c0-.117.04-.225.107-.31A5.478 5.478 0 0012 6.5 5.5 5.5 0 106.5 12a.5.5 0 110 1 6.5 6.5 0 114.936-2.27l4.419 4.418a.5.5 0 01-.707.707l-4.768-4.768a.499.499 0 01-.14-.347z"></path></svg></button></span><span class="euiToolTipAnchor"><button class="euiButtonIcon euiButtonIcon--primary kbnDocViewer__actionButton" type="button" aria-label="Toggle column in table" aria-pressed="true" data-test-subj="toggleColumnButton"><svg width="16" height="16" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" class="euiIcon euiIcon--small euiButtonIcon__icon" focusable="false" role="img" aria-hidden="true"><path d="M1 1v14h14V1H1zM0 0h16v16H0V0zm9 1v14h1V1H9zM3 3.5h4v-1H3v1zm0 3h4v-1H3v1zm0 3h4v-1H3v1z"></path></svg></button></span><span class="euiToolTipAnchor"><button class="euiButtonIcon euiButtonIcon--primary kbnDocViewer__actionButton" type="button" aria-label="Filter for field present" data-test-subj="addExistsFilterButton"><svg width="16" height="16" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" class="euiIcon euiIcon--small euiButtonIcon__icon" focusable="false" role="img" aria-hidden="true"><path d="M12 2H2v11h6v1H1V1h12v6h-1V2zM5 5h5.999V4H5v1zM3 5V4h1v1H3zm2 3V7h3v1H5zM3 8V7h1v1H3zm2 3v-1h2v1H5zm5-1H8v1h2v2h1v-2h2v-1h-2V8h-1v2zm-7 1v-1h1v1H3zm7.5-5a4.5 4.5 0 110 9 4.5 4.5 0 010-9z"></path></svg></button></span></td><td class="kbnDocViewer__field"><div class="euiFlexGroup euiFlexGroup--gutterSmall euiFlexGroup--alignItemsCenter euiFlexGroup--directionRow"><div class="euiFlexItem euiFlexItem--flexGrowZero"><span class="euiToken euiToken--gray euiToken--square euiToken--small kbnFieldIcon"><svg width="16" height="16" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" class="euiIcon euiIcon--medium" focusable="false" role="img" aria-label="String field"><title>String field</title><path d="M9.147 4.297l-.255 1.455h.936l-.222 1.266h-.935l-.455 2.688c-.025.184-.013.323.036.417.048.093.17.144.365.151.075.004.23-.005.465-.027l-.13 1.32c-.3.097-.618.142-.957.135-.552-.007-.965-.17-1.239-.487-.274-.317-.386-.748-.335-1.293l.476-2.904h-.725l.216-1.266h.725l.254-1.455h1.78z"></path></svg></span></div><div class="euiFlexItem eui-textTruncate"><span class="euiToolTipAnchor eui-textTruncate"><span>kubernetes.pod_name</span></span></div></div></td><td><div class="kbnDocViewer__value" data-test-subj="tableDocViewRow-kubernetes.pod_name-value">consultaexp-api-deployment-desa-5499587c9f-kx8gs</div></td></tr><tr data-test-subj="tableDocViewRow-log"><td class="kbnDocViewer__buttons"><span class="euiToolTipAnchor"><button class="euiButtonIcon euiButtonIcon--primary kbnDocViewer__actionButton" type="button" aria-label="Filter for value" data-test-subj="addInclusiveFilterButton"><svg width="16" height="16" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" class="euiIcon euiIcon--small euiButtonIcon__icon" focusable="false" role="img" aria-hidden="true"><path d="M7 6h2.5a.5.5 0 010 1H7v2.5a.5.5 0 01-1 0V7H3.5a.5.5 0 010-1H6V3.5a.5.5 0 011 0V6zm3.24 4.74c0-.117.04-.225.107-.31A5.478 5.478 0 0012 6.5 5.5 5.5 0 106.5 12a.5.5 0 110 1 6.5 6.5 0 114.936-2.27l4.419 4.418a.5.5 0 01-.707.707l-4.768-4.768a.499.499 0 01-.14-.347z"></path></svg></button></span><span class="euiToolTipAnchor"><button class="euiButtonIcon euiButtonIcon--primary kbnDocViewer__actionButton" type="button" aria-label="Filter out value" data-test-subj="removeInclusiveFilterButton"><svg width="16" height="16" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" class="euiIcon euiIcon--small euiButtonIcon__icon" focusable="false" role="img" aria-hidden="true"><path d="M9.5 6a.5.5 0 010 1h-6a.5.5 0 010-1h6zm.74 4.74c0-.117.04-.225.107-.31A5.478 5.478 0 0012 6.5 5.5 5.5 0 106.5 12a.5.5 0 110 1 6.5 6.5 0 114.936-2.27l4.419 4.418a.5.5 0 01-.707.707l-4.768-4.768a.499.499 0 01-.14-.347z"></path></svg></button></span><span class="euiToolTipAnchor"><button class="euiButtonIcon euiButtonIcon--primary kbnDocViewer__actionButton" type="button" aria-label="Toggle column in table" aria-pressed="false" data-test-subj="toggleColumnButton"><svg width="16" height="16" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" class="euiIcon euiIcon--small euiButtonIcon__icon" focusable="false" role="img" aria-hidden="true"><path d="M1 1v14h14V1H1zM0 0h16v16H0V0zm9 1v14h1V1H9zM3 3.5h4v-1H3v1zm0 3h4v-1H3v1zm0 3h4v-1H3v1z"></path></svg></button></span><span class="euiToolTipAnchor"><button class="euiButtonIcon euiButtonIcon--primary kbnDocViewer__actionButton" type="button" aria-label="Filter for field present" data-test-subj="addExistsFilterButton"><svg width="16" height="16" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" class="euiIcon euiIcon--small euiButtonIcon__icon" focusable="false" role="img" aria-hidden="true"><path d="M12 2H2v11h6v1H1V1h12v6h-1V2zM5 5h5.999V4H5v1zM3 5V4h1v1H3zm2 3V7h3v1H5zM3 8V7h1v1H3zm2 3v-1h2v1H5zm5-1H8v1h2v2h1v-2h2v-1h-2V8h-1v2zm-7 1v-1h1v1H3zm7.5-5a4.5 4.5 0 110 9 4.5 4.5 0 010-9z"></path></svg></button></span></td><td class="kbnDocViewer__field"><div class="euiFlexGroup euiFlexGroup--gutterSmall euiFlexGroup--alignItemsCenter euiFlexGroup--directionRow"><div class="euiFlexItem euiFlexItem--flexGrowZero"><span class="euiToken euiToken--gray euiToken--square euiToken--small kbnFieldIcon"><svg width="16" height="16" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" class="euiIcon euiIcon--medium" focusable="false" role="img" aria-label="String field"><title>String field</title><path d="M9.147 4.297l-.255 1.455h.936l-.222 1.266h-.935l-.455 2.688c-.025.184-.013.323.036.417.048.093.17.144.365.151.075.004.23-.005.465-.027l-.13 1.32c-.3.097-.618.142-.957.135-.552-.007-.965-.17-1.239-.487-.274-.317-.386-.748-.335-1.293l.476-2.904h-.725l.216-1.266h.725l.254-1.455h1.78z"></path></svg></span></div><div class="euiFlexItem eui-textTruncate"><span class="euiToolTipAnchor eui-textTruncate"><span>log</span></span></div></div></td><td><span class="euiToolTipAnchor"><button class="euiButtonIcon euiButtonIcon--primary" type="button" aria-expanded="false" aria-label="Toggle field details" data-test-subj="collapseBtn"><svg width="16" height="16" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" class="euiIcon euiIcon--small euiButtonIcon__icon" focusable="false" role="img" aria-hidden="true"><path fill-rule="nonzero" d="M5.157 13.069l4.611-4.685a.546.546 0 000-.768L5.158 2.93a.552.552 0 010-.771.53.53 0 01.759 0l4.61 4.684c.631.641.63 1.672 0 2.312l-4.61 4.684a.53.53 0 01-.76 0 .552.552 0 010-.771z"></path></svg></button></span><div class="kbnDocViewer__value truncate-by-height" data-test-subj="tableDocViewRow-log-value">{"line_number":377,"class":"es.um.atica.consultaexpedientesbackend.rest.RestExpedientes","@version":1,"source_host":"consultaexp-api-deployment-desa-5499587c9f-kx8gs","message":" ############################################### titulaciones: 23274740","thread_name":"http-nio-8080-exec-6","_@timestamp":"2021-06-08T15:51:53.335+00:00","level":"INFO","file":"RestExpedientes.java","method":"getTitulaciones","logger_name":"es.um.atica.consultaexpedientesbackend.rest.RestExpedientes"}
</div></td></tr><tr data-test-subj="tableDocViewRow-log_processed.@version"><td class="kbnDocViewer__buttons"><span class="euiToolTipAnchor"><button class="euiButtonIcon euiButtonIcon--primary kbnDocViewer__actionButton" type="button" aria-label="Filter for value" data-test-subj="addInclusiveFilterButton"><svg width="16" height="16" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" class="euiIcon euiIcon--small euiButtonIcon__icon" focusable="false" role="img" aria-hidden="true"><path d="M7 6h2.5a.5.5 0 010 1H7v2.5a.5.5 0 01-1 0V7H3.5a.5.5 0 010-1H6V3.5a.5.5 0 011 0V6zm3.24 4.74c0-.117.04-.225.107-.31A5.478 5.478 0 0012 6.5 5.5 5.5 0 106.5 12a.5.5 0 110 1 6.5 6.5 0 114.936-2.27l4.419 4.418a.5.5 0 01-.707.707l-4.768-4.768a.499.499 0 01-.14-.347z"></path></svg></button></span><span class="euiToolTipAnchor"><button class="euiButtonIcon euiButtonIcon--primary kbnDocViewer__actionButton" type="button" aria-label="Filter out value" data-test-subj="removeInclusiveFilterButton"><svg width="16" height="16" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" class="euiIcon euiIcon--small euiButtonIcon__icon" focusable="false" role="img" aria-hidden="true"><path d="M9.5 6a.5.5 0 010 1h-6a.5.5 0 010-1h6zm.74 4.74c0-.117.04-.225.107-.31A5.478 5.478 0 0012 6.5 5.5 5.5 0 106.5 12a.5.5 0 110 1 6.5 6.5 0 114.936-2.27l4.419 4.418a.5.5 0 01-.707.707l-4.768-4.768a.499.499 0 01-.14-.347z"></path></svg></button></span><span class="euiToolTipAnchor"><button class="euiButtonIcon euiButtonIcon--primary kbnDocViewer__actionButton" type="button" aria-label="Toggle column in table" aria-pressed="false" data-test-subj="toggleColumnButton"><svg width="16" height="16" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" class="euiIcon euiIcon--small euiButtonIcon__icon" focusable="false" role="img" aria-hidden="true"><path d="M1 1v14h14V1H1zM0 0h16v16H0V0zm9 1v14h1V1H9zM3 3.5h4v-1H3v1zm0 3h4v-1H3v1zm0 3h4v-1H3v1z"></path></svg></button></span><span class="euiToolTipAnchor"><button class="euiButtonIcon euiButtonIcon--primary kbnDocViewer__actionButton" type="button" aria-label="Filter for field present" data-test-subj="addExistsFilterButton"><svg width="16" height="16" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" class="euiIcon euiIcon--small euiButtonIcon__icon" focusable="false" role="img" aria-hidden="true"><path d="M12 2H2v11h6v1H1V1h12v6h-1V2zM5 5h5.999V4H5v1zM3 5V4h1v1H3zm2 3V7h3v1H5zM3 8V7h1v1H3zm2 3v-1h2v1H5zm5-1H8v1h2v2h1v-2h2v-1h-2V8h-1v2zm-7 1v-1h1v1H3zm7.5-5a4.5 4.5 0 110 9 4.5 4.5 0 010-9z"></path></svg></button></span></td><td class="kbnDocViewer__field"><div class="euiFlexGroup euiFlexGroup--gutterSmall euiFlexGroup--alignItemsCenter euiFlexGroup--directionRow"><div class="euiFlexItem euiFlexItem--flexGrowZero"><span class="euiToken euiToken--gray euiToken--square euiToken--small kbnFieldIcon"><svg width="16" height="16" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" class="euiIcon euiIcon--medium" focusable="false" role="img" aria-label="Number field"><title>Number field</title><path d="M7.8 9.812h-.842l-.78 2.335H5.031l.78-2.335H4.6l.182-1.043h1.373l.507-1.504H5.454l.188-1.042h1.367l.792-2.37H8.94l-.792 2.37h.849l.792-2.37h1.145l-.792 2.37H11.4l-.182 1.042H9.8L9.293 8.77h1.248l-.183 1.043H8.946l-.775 2.335H7.026L7.8 9.812zm-.5-1.043h.842l.513-1.504h-.849L7.3 8.77z"></path></svg></span></div><div class="euiFlexItem eui-textTruncate"><span class="euiToolTipAnchor eui-textTruncate"><span>log_processed.@version</span></span></div></div></td><td><div class="kbnDocViewer__value" data-test-subj="tableDocViewRow-log_processed.@version-value">1</div></td></tr><tr data-test-subj="tableDocViewRow-log_processed._@timestamp"><td class="kbnDocViewer__buttons"><span class="euiToolTipAnchor"><button class="euiButtonIcon euiButtonIcon--primary kbnDocViewer__actionButton" type="button" aria-label="Filter for value" data-test-subj="addInclusiveFilterButton"><svg width="16" height="16" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" class="euiIcon euiIcon--small euiButtonIcon__icon" focusable="false" role="img" aria-hidden="true"><path d="M7 6h2.5a.5.5 0 010 1H7v2.5a.5.5 0 01-1 0V7H3.5a.5.5 0 010-1H6V3.5a.5.5 0 011 0V6zm3.24 4.74c0-.117.04-.225.107-.31A5.478 5.478 0 0012 6.5 5.5 5.5 0 106.5 12a.5.5 0 110 1 6.5 6.5 0 114.936-2.27l4.419 4.418a.5.5 0 01-.707.707l-4.768-4.768a.499.499 0 01-.14-.347z"></path></svg></button></span><span class="euiToolTipAnchor"><button class="euiButtonIcon euiButtonIcon--primary kbnDocViewer__actionButton" type="button" aria-label="Filter out value" data-test-subj="removeInclusiveFilterButton"><svg width="16" height="16" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" class="euiIcon euiIcon--small euiButtonIcon__icon" focusable="false" role="img" aria-hidden="true"><path d="M9.5 6a.5.5 0 010 1h-6a.5.5 0 010-1h6zm.74 4.74c0-.117.04-.225.107-.31A5.478 5.478 0 0012 6.5 5.5 5.5 0 106.5 12a.5.5 0 110 1 6.5 6.5 0 114.936-2.27l4.419 4.418a.5.5 0 01-.707.707l-4.768-4.768a.499.499 0 01-.14-.347z"></path></svg></button></span><span class="euiToolTipAnchor"><button class="euiButtonIcon euiButtonIcon--primary kbnDocViewer__actionButton" type="button" aria-label="Toggle column in table" aria-pressed="false" data-test-subj="toggleColumnButton"><svg width="16" height="16" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" class="euiIcon euiIcon--small euiButtonIcon__icon" focusable="false" role="img" aria-hidden="true"><path d="M1 1v14h14V1H1zM0 0h16v16H0V0zm9 1v14h1V1H9zM3 3.5h4v-1H3v1zm0 3h4v-1H3v1zm0 3h4v-1H3v1z"></path></svg></button></span><span class="euiToolTipAnchor"><button class="euiButtonIcon euiButtonIcon--primary kbnDocViewer__actionButton" type="button" aria-label="Filter for field present" data-test-subj="addExistsFilterButton"><svg width="16" height="16" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" class="euiIcon euiIcon--small euiButtonIcon__icon" focusable="false" role="img" aria-hidden="true"><path d="M12 2H2v11h6v1H1V1h12v6h-1V2zM5 5h5.999V4H5v1zM3 5V4h1v1H3zm2 3V7h3v1H5zM3 8V7h1v1H3zm2 3v-1h2v1H5zm5-1H8v1h2v2h1v-2h2v-1h-2V8h-1v2zm-7 1v-1h1v1H3zm7.5-5a4.5 4.5 0 110 9 4.5 4.5 0 010-9z"></path></svg></button></span></td><td class="kbnDocViewer__field"><div class="euiFlexGroup euiFlexGroup--gutterSmall euiFlexGroup--alignItemsCenter euiFlexGroup--directionRow"><div class="euiFlexItem euiFlexItem--flexGrowZero"><span class="euiToken euiToken--gray euiToken--square euiToken--small kbnFieldIcon"><svg width="16" height="16" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" class="euiIcon euiIcon--medium" focusable="false" role="img" aria-label="Date field"><title>Date field</title><path fill-rule="evenodd" d="M13 11.567C13 12.36 12.36 13 11.567 13H4.433C3.64 13 3 12.36 3 11.567V4.433C3 3.64 3.64 3 4.433 3H6v-.495a.51.51 0 01.412-.497L6.5 2c.276 0 .5.214.5.505V3h2v-.495a.51.51 0 01.412-.497L9.5 2c.276 0 .5.214.5.505V3h1.567C12.36 3 13 3.64 13 4.433v7.134zM4 6v5.33c0 .37.3.67.67.67h6.66c.37 0 .67-.3.67-.67V6H4zm1.5 4c.245 0 .45.183.492.412L6 10.5c0 .245-.183.45-.412.492L5.5 11a.505.505 0 01-.5-.5c0-.245.183-.45.412-.492L5.5 10zM8 10c.245 0 .45.183.492.412l.008.088c0 .245-.183.45-.412.492L8 11a.505.505 0 01-.5-.5c0-.245.183-.45.412-.492L8 10zm2.5 0c.245 0 .45.183.492.412L11 10.5c0 .245-.183.45-.412.492L10.5 11a.505.505 0 01-.5-.5c0-.245.183-.45.412-.492L10.5 10zm-5-1.5c.245 0 .45.183.492.412L6 9c0 .245-.183.45-.412.492L5.5 9.5A.505.505 0 015 9c0-.245.183-.45.412-.492L5.5 8.5zm2.5 0c.245 0 .45.183.492.412L8.5 9c0 .245-.183.45-.412.492L8 9.5a.505.505 0 01-.5-.5c0-.245.183-.45.412-.492L8 8.5zm2.5 0c.245 0 .45.183.492.412L11 9c0 .245-.183.45-.412.492L10.5 9.5A.505.505 0 0110 9c0-.245.183-.45.412-.492L10.5 8.5zM5.5 7c.245 0 .45.183.492.412L6 7.5c0 .245-.183.45-.412.492L5.5 8a.505.505 0 01-.5-.5c0-.245.183-.45.412-.492L5.5 7zM8 7c.245 0 .45.183.492.412L8.5 7.5c0 .245-.183.45-.412.492L8 8a.505.505 0 01-.5-.5c0-.245.183-.45.412-.492L8 7zm2.5 0c.245 0 .45.183.492.412L11 7.5c0 .245-.183.45-.412.492L10.5 8a.505.505 0 01-.5-.5c0-.245.183-.45.412-.492L10.5 7zM4 5h8v-.33c0-.37-.3-.67-.67-.67H4.67C4.3 4 4 4.3 4 4.67V5z"></path></svg></span></div><div class="euiFlexItem eui-textTruncate"><span class="euiToolTipAnchor eui-textTruncate"><span>log_processed._@timestamp</span></span></div></div></td><td><div class="kbnDocViewer__value" data-test-subj="tableDocViewRow-log_processed._@timestamp-value">Jun 8, 2021 @ 17:51:53.335</div></td></tr><tr data-test-subj="tableDocViewRow-log_processed.class"><td class="kbnDocViewer__buttons"><span class="euiToolTipAnchor"><button class="euiButtonIcon euiButtonIcon--primary kbnDocViewer__actionButton" type="button" aria-label="Filter for value" data-test-subj="addInclusiveFilterButton"><svg width="16" height="16" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" class="euiIcon euiIcon--small euiButtonIcon__icon" focusable="false" role="img" aria-hidden="true"><path d="M7 6h2.5a.5.5 0 010 1H7v2.5a.5.5 0 01-1 0V7H3.5a.5.5 0 010-1H6V3.5a.5.5 0 011 0V6zm3.24 4.74c0-.117.04-.225.107-.31A5.478 5.478 0 0012 6.5 5.5 5.5 0 106.5 12a.5.5 0 110 1 6.5 6.5 0 114.936-2.27l4.419 4.418a.5.5 0 01-.707.707l-4.768-4.768a.499.499 0 01-.14-.347z"></path></svg></button></span><span class="euiToolTipAnchor"><button class="euiButtonIcon euiButtonIcon--primary kbnDocViewer__actionButton" type="button" aria-label="Filter out value" data-test-subj="removeInclusiveFilterButton"><svg width="16" height="16" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" class="euiIcon euiIcon--small euiButtonIcon__icon" focusable="false" role="img" aria-hidden="true"><path d="M9.5 6a.5.5 0 010 1h-6a.5.5 0 010-1h6zm.74 4.74c0-.117.04-.225.107-.31A5.478 5.478 0 0012 6.5 5.5 5.5 0 106.5 12a.5.5 0 110 1 6.5 6.5 0 114.936-2.27l4.419 4.418a.5.5 0 01-.707.707l-4.768-4.768a.499.499 0 01-.14-.347z"></path></svg></button></span><span class="euiToolTipAnchor"><button class="euiButtonIcon euiButtonIcon--primary kbnDocViewer__actionButton" type="button" aria-label="Toggle column in table" aria-pressed="false" data-test-subj="toggleColumnButton"><svg width="16" height="16" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" class="euiIcon euiIcon--small euiButtonIcon__icon" focusable="false" role="img" aria-hidden="true"><path d="M1 1v14h14V1H1zM0 0h16v16H0V0zm9 1v14h1V1H9zM3 3.5h4v-1H3v1zm0 3h4v-1H3v1zm0 3h4v-1H3v1z"></path></svg></button></span><span class="euiToolTipAnchor"><button class="euiButtonIcon euiButtonIcon--primary kbnDocViewer__actionButton" type="button" aria-label="Filter for field present" data-test-subj="addExistsFilterButton"><svg width="16" height="16" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" class="euiIcon euiIcon--small euiButtonIcon__icon" focusable="false" role="img" aria-hidden="true"><path d="M12 2H2v11h6v1H1V1h12v6h-1V2zM5 5h5.999V4H5v1zM3 5V4h1v1H3zm2 3V7h3v1H5zM3 8V7h1v1H3zm2 3v-1h2v1H5zm5-1H8v1h2v2h1v-2h2v-1h-2V8h-1v2zm-7 1v-1h1v1H3zm7.5-5a4.5 4.5 0 110 9 4.5 4.5 0 010-9z"></path></svg></button></span></td><td class="kbnDocViewer__field"><div class="euiFlexGroup euiFlexGroup--gutterSmall euiFlexGroup--alignItemsCenter euiFlexGroup--directionRow"><div class="euiFlexItem euiFlexItem--flexGrowZero"><span class="euiToken euiToken--gray euiToken--square euiToken--small kbnFieldIcon"><svg width="16" height="16" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" class="euiIcon euiIcon--medium" focusable="false" role="img" aria-label="String field"><title>String field</title><path d="M9.147 4.297l-.255 1.455h.936l-.222 1.266h-.935l-.455 2.688c-.025.184-.013.323.036.417.048.093.17.144.365.151.075.004.23-.005.465-.027l-.13 1.32c-.3.097-.618.142-.957.135-.552-.007-.965-.17-1.239-.487-.274-.317-.386-.748-.335-1.293l.476-2.904h-.725l.216-1.266h.725l.254-1.455h1.78z"></path></svg></span></div><div class="euiFlexItem eui-textTruncate"><span class="euiToolTipAnchor eui-textTruncate"><span>log_processed.class</span></span></div></div></td><td><div class="kbnDocViewer__value" data-test-subj="tableDocViewRow-log_processed.class-value">es.um.atica.consultaexpedientesbackend.rest.RestExpedientes</div></td></tr><tr data-test-subj="tableDocViewRow-log_processed.file"><td class="kbnDocViewer__buttons"><span class="euiToolTipAnchor"><button class="euiButtonIcon euiButtonIcon--primary kbnDocViewer__actionButton" type="button" aria-label="Filter for value" data-test-subj="addInclusiveFilterButton"><svg width="16" height="16" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" class="euiIcon euiIcon--small euiButtonIcon__icon" focusable="false" role="img" aria-hidden="true"><path d="M7 6h2.5a.5.5 0 010 1H7v2.5a.5.5 0 01-1 0V7H3.5a.5.5 0 010-1H6V3.5a.5.5 0 011 0V6zm3.24 4.74c0-.117.04-.225.107-.31A5.478 5.478 0 0012 6.5 5.5 5.5 0 106.5 12a.5.5 0 110 1 6.5 6.5 0 114.936-2.27l4.419 4.418a.5.5 0 01-.707.707l-4.768-4.768a.499.499 0 01-.14-.347z"></path></svg></button></span><span class="euiToolTipAnchor"><button class="euiButtonIcon euiButtonIcon--primary kbnDocViewer__actionButton" type="button" aria-label="Filter out value" data-test-subj="removeInclusiveFilterButton"><svg width="16" height="16" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" class="euiIcon euiIcon--small euiButtonIcon__icon" focusable="false" role="img" aria-hidden="true"><path d="M9.5 6a.5.5 0 010 1h-6a.5.5 0 010-1h6zm.74 4.74c0-.117.04-.225.107-.31A5.478 5.478 0 0012 6.5 5.5 5.5 0 106.5 12a.5.5 0 110 1 6.5 6.5 0 114.936-2.27l4.419 4.418a.5.5 0 01-.707.707l-4.768-4.768a.499.499 0 01-.14-.347z"></path></svg></button></span><span class="euiToolTipAnchor"><button class="euiButtonIcon euiButtonIcon--primary kbnDocViewer__actionButton" type="button" aria-label="Toggle column in table" aria-pressed="true" data-test-subj="toggleColumnButton"><svg width="16" height="16" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" class="euiIcon euiIcon--small euiButtonIcon__icon" focusable="false" role="img" aria-hidden="true"><path d="M1 1v14h14V1H1zM0 0h16v16H0V0zm9 1v14h1V1H9zM3 3.5h4v-1H3v1zm0 3h4v-1H3v1zm0 3h4v-1H3v1z"></path></svg></button></span><span class="euiToolTipAnchor"><button class="euiButtonIcon euiButtonIcon--primary kbnDocViewer__actionButton" type="button" aria-label="Filter for field present" data-test-subj="addExistsFilterButton"><svg width="16" height="16" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" class="euiIcon euiIcon--small euiButtonIcon__icon" focusable="false" role="img" aria-hidden="true"><path d="M12 2H2v11h6v1H1V1h12v6h-1V2zM5 5h5.999V4H5v1zM3 5V4h1v1H3zm2 3V7h3v1H5zM3 8V7h1v1H3zm2 3v-1h2v1H5zm5-1H8v1h2v2h1v-2h2v-1h-2V8h-1v2zm-7 1v-1h1v1H3zm7.5-5a4.5 4.5 0 110 9 4.5 4.5 0 010-9z"></path></svg></button></span></td><td class="kbnDocViewer__field"><div class="euiFlexGroup euiFlexGroup--gutterSmall euiFlexGroup--alignItemsCenter euiFlexGroup--directionRow"><div class="euiFlexItem euiFlexItem--flexGrowZero"><span class="euiToken euiToken--gray euiToken--square euiToken--small kbnFieldIcon"><svg width="16" height="16" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" class="euiIcon euiIcon--medium" focusable="false" role="img" aria-label="String field"><title>String field</title><path d="M9.147 4.297l-.255 1.455h.936l-.222 1.266h-.935l-.455 2.688c-.025.184-.013.323.036.417.048.093.17.144.365.151.075.004.23-.005.465-.027l-.13 1.32c-.3.097-.618.142-.957.135-.552-.007-.965-.17-1.239-.487-.274-.317-.386-.748-.335-1.293l.476-2.904h-.725l.216-1.266h.725l.254-1.455h1.78z"></path></svg></span></div><div class="euiFlexItem eui-textTruncate"><span class="euiToolTipAnchor eui-textTruncate"><span>log_processed.file</span></span></div></div></td><td><div class="kbnDocViewer__value" data-test-subj="tableDocViewRow-log_processed.file-value">RestExpedientes.java</div></td></tr><tr data-test-subj="tableDocViewRow-log_processed.level"><td class="kbnDocViewer__buttons"><span class="euiToolTipAnchor"><button class="euiButtonIcon euiButtonIcon--primary kbnDocViewer__actionButton" type="button" aria-label="Filter for value" data-test-subj="addInclusiveFilterButton"><svg width="16" height="16" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" class="euiIcon euiIcon--small euiButtonIcon__icon" focusable="false" role="img" aria-hidden="true"><path d="M7 6h2.5a.5.5 0 010 1H7v2.5a.5.5 0 01-1 0V7H3.5a.5.5 0 010-1H6V3.5a.5.5 0 011 0V6zm3.24 4.74c0-.117.04-.225.107-.31A5.478 5.478 0 0012 6.5 5.5 5.5 0 106.5 12a.5.5 0 110 1 6.5 6.5 0 114.936-2.27l4.419 4.418a.5.5 0 01-.707.707l-4.768-4.768a.499.499 0 01-.14-.347z"></path></svg></button></span><span class="euiToolTipAnchor"><button class="euiButtonIcon euiButtonIcon--primary kbnDocViewer__actionButton" type="button" aria-label="Filter out value" data-test-subj="removeInclusiveFilterButton"><svg width="16" height="16" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" class="euiIcon euiIcon--small euiButtonIcon__icon" focusable="false" role="img" aria-hidden="true"><path d="M9.5 6a.5.5 0 010 1h-6a.5.5 0 010-1h6zm.74 4.74c0-.117.04-.225.107-.31A5.478 5.478 0 0012 6.5 5.5 5.5 0 106.5 12a.5.5 0 110 1 6.5 6.5 0 114.936-2.27l4.419 4.418a.5.5 0 01-.707.707l-4.768-4.768a.499.499 0 01-.14-.347z"></path></svg></button></span><span class="euiToolTipAnchor"><button class="euiButtonIcon euiButtonIcon--primary kbnDocViewer__actionButton" type="button" aria-label="Toggle column in table" aria-pressed="false" data-test-subj="toggleColumnButton"><svg width="16" height="16" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" class="euiIcon euiIcon--small euiButtonIcon__icon" focusable="false" role="img" aria-hidden="true"><path d="M1 1v14h14V1H1zM0 0h16v16H0V0zm9 1v14h1V1H9zM3 3.5h4v-1H3v1zm0 3h4v-1H3v1zm0 3h4v-1H3v1z"></path></svg></button></span><span class="euiToolTipAnchor"><button class="euiButtonIcon euiButtonIcon--primary kbnDocViewer__actionButton" type="button" aria-label="Filter for field present" data-test-subj="addExistsFilterButton"><svg width="16" height="16" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" class="euiIcon euiIcon--small euiButtonIcon__icon" focusable="false" role="img" aria-hidden="true"><path d="M12 2H2v11h6v1H1V1h12v6h-1V2zM5 5h5.999V4H5v1zM3 5V4h1v1H3zm2 3V7h3v1H5zM3 8V7h1v1H3zm2 3v-1h2v1H5zm5-1H8v1h2v2h1v-2h2v-1h-2V8h-1v2zm-7 1v-1h1v1H3zm7.5-5a4.5 4.5 0 110 9 4.5 4.5 0 010-9z"></path></svg></button></span></td><td class="kbnDocViewer__field"><div class="euiFlexGroup euiFlexGroup--gutterSmall euiFlexGroup--alignItemsCenter euiFlexGroup--directionRow"><div class="euiFlexItem euiFlexItem--flexGrowZero"><span class="euiToken euiToken--gray euiToken--square euiToken--small kbnFieldIcon"><svg width="16" height="16" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" class="euiIcon euiIcon--medium" focusable="false" role="img" aria-label="String field"><title>String field</title><path d="M9.147 4.297l-.255 1.455h.936l-.222 1.266h-.935l-.455 2.688c-.025.184-.013.323.036.417.048.093.17.144.365.151.075.004.23-.005.465-.027l-.13 1.32c-.3.097-.618.142-.957.135-.552-.007-.965-.17-1.239-.487-.274-.317-.386-.748-.335-1.293l.476-2.904h-.725l.216-1.266h.725l.254-1.455h1.78z"></path></svg></span></div><div class="euiFlexItem eui-textTruncate"><span class="euiToolTipAnchor eui-textTruncate"><span>log_processed.level</span></span></div></div></td><td><div class="kbnDocViewer__value" data-test-subj="tableDocViewRow-log_processed.level-value">INFO</div></td></tr><tr data-test-subj="tableDocViewRow-log_processed.line_number"><td class="kbnDocViewer__buttons"><span class="euiToolTipAnchor"><button class="euiButtonIcon euiButtonIcon--primary kbnDocViewer__actionButton" type="button" aria-label="Filter for value" data-test-subj="addInclusiveFilterButton"><svg width="16" height="16" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" class="euiIcon euiIcon--small euiButtonIcon__icon" focusable="false" role="img" aria-hidden="true"><path d="M7 6h2.5a.5.5 0 010 1H7v2.5a.5.5 0 01-1 0V7H3.5a.5.5 0 010-1H6V3.5a.5.5 0 011 0V6zm3.24 4.74c0-.117.04-.225.107-.31A5.478 5.478 0 0012 6.5 5.5 5.5 0 106.5 12a.5.5 0 110 1 6.5 6.5 0 114.936-2.27l4.419 4.418a.5.5 0 01-.707.707l-4.768-4.768a.499.499 0 01-.14-.347z"></path></svg></button></span><span class="euiToolTipAnchor"><button class="euiButtonIcon euiButtonIcon--primary kbnDocViewer__actionButton" type="button" aria-label="Filter out value" data-test-subj="removeInclusiveFilterButton"><svg width="16" height="16" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" class="euiIcon euiIcon--small euiButtonIcon__icon" focusable="false" role="img" aria-hidden="true"><path d="M9.5 6a.5.5 0 010 1h-6a.5.5 0 010-1h6zm.74 4.74c0-.117.04-.225.107-.31A5.478 5.478 0 0012 6.5 5.5 5.5 0 106.5 12a.5.5 0 110 1 6.5 6.5 0 114.936-2.27l4.419 4.418a.5.5 0 01-.707.707l-4.768-4.768a.499.499 0 01-.14-.347z"></path></svg></button></span><span class="euiToolTipAnchor"><button class="euiButtonIcon euiButtonIcon--primary kbnDocViewer__actionButton" type="button" aria-label="Toggle column in table" aria-pressed="false" data-test-subj="toggleColumnButton"><svg width="16" height="16" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" class="euiIcon euiIcon--small euiButtonIcon__icon" focusable="false" role="img" aria-hidden="true"><path d="M1 1v14h14V1H1zM0 0h16v16H0V0zm9 1v14h1V1H9zM3 3.5h4v-1H3v1zm0 3h4v-1H3v1zm0 3h4v-1H3v1z"></path></svg></button></span><span class="euiToolTipAnchor"><button class="euiButtonIcon euiButtonIcon--primary kbnDocViewer__actionButton" type="button" aria-label="Filter for field present" data-test-subj="addExistsFilterButton"><svg width="16" height="16" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" class="euiIcon euiIcon--small euiButtonIcon__icon" focusable="false" role="img" aria-hidden="true"><path d="M12 2H2v11h6v1H1V1h12v6h-1V2zM5 5h5.999V4H5v1zM3 5V4h1v1H3zm2 3V7h3v1H5zM3 8V7h1v1H3zm2 3v-1h2v1H5zm5-1H8v1h2v2h1v-2h2v-1h-2V8h-1v2zm-7 1v-1h1v1H3zm7.5-5a4.5 4.5 0 110 9 4.5 4.5 0 010-9z"></path></svg></button></span></td><td class="kbnDocViewer__field"><div class="euiFlexGroup euiFlexGroup--gutterSmall euiFlexGroup--alignItemsCenter euiFlexGroup--directionRow"><div class="euiFlexItem euiFlexItem--flexGrowZero"><span class="euiToken euiToken--gray euiToken--square euiToken--small kbnFieldIcon"><svg width="16" height="16" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" class="euiIcon euiIcon--medium" focusable="false" role="img" aria-label="Number field"><title>Number field</title><path d="M7.8 9.812h-.842l-.78 2.335H5.031l.78-2.335H4.6l.182-1.043h1.373l.507-1.504H5.454l.188-1.042h1.367l.792-2.37H8.94l-.792 2.37h.849l.792-2.37h1.145l-.792 2.37H11.4l-.182 1.042H9.8L9.293 8.77h1.248l-.183 1.043H8.946l-.775 2.335H7.026L7.8 9.812zm-.5-1.043h.842l.513-1.504h-.849L7.3 8.77z"></path></svg></span></div><div class="euiFlexItem eui-textTruncate"><span class="euiToolTipAnchor eui-textTruncate"><span>log_processed.line_number</span></span></div></div></td><td><div class="kbnDocViewer__value" data-test-subj="tableDocViewRow-log_processed.line_number-value">377</div></td></tr><tr data-test-subj="tableDocViewRow-log_processed.logger_name"><td class="kbnDocViewer__buttons"><span class="euiToolTipAnchor"><button class="euiButtonIcon euiButtonIcon--primary kbnDocViewer__actionButton" type="button" aria-label="Filter for value" data-test-subj="addInclusiveFilterButton"><svg width="16" height="16" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" class="euiIcon euiIcon--small euiButtonIcon__icon" focusable="false" role="img" aria-hidden="true"><path d="M7 6h2.5a.5.5 0 010 1H7v2.5a.5.5 0 01-1 0V7H3.5a.5.5 0 010-1H6V3.5a.5.5 0 011 0V6zm3.24 4.74c0-.117.04-.225.107-.31A5.478 5.478 0 0012 6.5 5.5 5.5 0 106.5 12a.5.5 0 110 1 6.5 6.5 0 114.936-2.27l4.419 4.418a.5.5 0 01-.707.707l-4.768-4.768a.499.499 0 01-.14-.347z"></path></svg></button></span><span class="euiToolTipAnchor"><button class="euiButtonIcon euiButtonIcon--primary kbnDocViewer__actionButton" type="button" aria-label="Filter out value" data-test-subj="removeInclusiveFilterButton"><svg width="16" height="16" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" class="euiIcon euiIcon--small euiButtonIcon__icon" focusable="false" role="img" aria-hidden="true"><path d="M9.5 6a.5.5 0 010 1h-6a.5.5 0 010-1h6zm.74 4.74c0-.117.04-.225.107-.31A5.478 5.478 0 0012 6.5 5.5 5.5 0 106.5 12a.5.5 0 110 1 6.5 6.5 0 114.936-2.27l4.419 4.418a.5.5 0 01-.707.707l-4.768-4.768a.499.499 0 01-.14-.347z"></path></svg></button></span><span class="euiToolTipAnchor"><button class="euiButtonIcon euiButtonIcon--primary kbnDocViewer__actionButton" type="button" aria-label="Toggle column in table" aria-pressed="false" data-test-subj="toggleColumnButton"><svg width="16" height="16" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" class="euiIcon euiIcon--small euiButtonIcon__icon" focusable="false" role="img" aria-hidden="true"><path d="M1 1v14h14V1H1zM0 0h16v16H0V0zm9 1v14h1V1H9zM3 3.5h4v-1H3v1zm0 3h4v-1H3v1zm0 3h4v-1H3v1z"></path></svg></button></span><span class="euiToolTipAnchor"><button class="euiButtonIcon euiButtonIcon--primary kbnDocViewer__actionButton" type="button" aria-label="Filter for field present" data-test-subj="addExistsFilterButton"><svg width="16" height="16" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" class="euiIcon euiIcon--small euiButtonIcon__icon" focusable="false" role="img" aria-hidden="true"><path d="M12 2H2v11h6v1H1V1h12v6h-1V2zM5 5h5.999V4H5v1zM3 5V4h1v1H3zm2 3V7h3v1H5zM3 8V7h1v1H3zm2 3v-1h2v1H5zm5-1H8v1h2v2h1v-2h2v-1h-2V8h-1v2zm-7 1v-1h1v1H3zm7.5-5a4.5 4.5 0 110 9 4.5 4.5 0 010-9z"></path></svg></button></span></td><td class="kbnDocViewer__field"><div class="euiFlexGroup euiFlexGroup--gutterSmall euiFlexGroup--alignItemsCenter euiFlexGroup--directionRow"><div class="euiFlexItem euiFlexItem--flexGrowZero"><span class="euiToken euiToken--gray euiToken--square euiToken--small kbnFieldIcon"><svg width="16" height="16" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" class="euiIcon euiIcon--medium" focusable="false" role="img" aria-label="String field"><title>String field</title><path d="M9.147 4.297l-.255 1.455h.936l-.222 1.266h-.935l-.455 2.688c-.025.184-.013.323.036.417.048.093.17.144.365.151.075.004.23-.005.465-.027l-.13 1.32c-.3.097-.618.142-.957.135-.552-.007-.965-.17-1.239-.487-.274-.317-.386-.748-.335-1.293l.476-2.904h-.725l.216-1.266h.725l.254-1.455h1.78z"></path></svg></span></div><div class="euiFlexItem eui-textTruncate"><span class="euiToolTipAnchor eui-textTruncate"><span>log_processed.logger_name</span></span></div></div></td><td><div class="kbnDocViewer__value" data-test-subj="tableDocViewRow-log_processed.logger_name-value">es.um.atica.consultaexpedientesbackend.rest.RestExpedientes</div></td></tr><tr data-test-subj="tableDocViewRow-log_processed.message"><td class="kbnDocViewer__buttons"><span class="euiToolTipAnchor"><button class="euiButtonIcon euiButtonIcon--primary kbnDocViewer__actionButton" type="button" aria-label="Filter for value" data-test-subj="addInclusiveFilterButton"><svg width="16" height="16" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" class="euiIcon euiIcon--small euiButtonIcon__icon" focusable="false" role="img" aria-hidden="true"><path d="M7 6h2.5a.5.5 0 010 1H7v2.5a.5.5 0 01-1 0V7H3.5a.5.5 0 010-1H6V3.5a.5.5 0 011 0V6zm3.24 4.74c0-.117.04-.225.107-.31A5.478 5.478 0 0012 6.5 5.5 5.5 0 106.5 12a.5.5 0 110 1 6.5 6.5 0 114.936-2.27l4.419 4.418a.5.5 0 01-.707.707l-4.768-4.768a.499.499 0 01-.14-.347z"></path></svg></button></span><span class="euiToolTipAnchor"><button class="euiButtonIcon euiButtonIcon--primary kbnDocViewer__actionButton" type="button" aria-label="Filter out value" data-test-subj="removeInclusiveFilterButton"><svg width="16" height="16" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" class="euiIcon euiIcon--small euiButtonIcon__icon" focusable="false" role="img" aria-hidden="true"><path d="M9.5 6a.5.5 0 010 1h-6a.5.5 0 010-1h6zm.74 4.74c0-.117.04-.225.107-.31A5.478 5.478 0 0012 6.5 5.5 5.5 0 106.5 12a.5.5 0 110 1 6.5 6.5 0 114.936-2.27l4.419 4.418a.5.5 0 01-.707.707l-4.768-4.768a.499.499 0 01-.14-.347z"></path></svg></button></span><span class="euiToolTipAnchor"><button class="euiButtonIcon euiButtonIcon--primary kbnDocViewer__actionButton" type="button" aria-label="Toggle column in table" aria-pressed="true" data-test-subj="toggleColumnButton"><svg width="16" height="16" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" class="euiIcon euiIcon--small euiButtonIcon__icon" focusable="false" role="img" aria-hidden="true"><path d="M1 1v14h14V1H1zM0 0h16v16H0V0zm9 1v14h1V1H9zM3 3.5h4v-1H3v1zm0 3h4v-1H3v1zm0 3h4v-1H3v1z"></path></svg></button></span><span class="euiToolTipAnchor"><button class="euiButtonIcon euiButtonIcon--primary kbnDocViewer__actionButton" type="button" aria-label="Filter for field present" data-test-subj="addExistsFilterButton"><svg width="16" height="16" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" class="euiIcon euiIcon--small euiButtonIcon__icon" focusable="false" role="img" aria-hidden="true"><path d="M12 2H2v11h6v1H1V1h12v6h-1V2zM5 5h5.999V4H5v1zM3 5V4h1v1H3zm2 3V7h3v1H5zM3 8V7h1v1H3zm2 3v-1h2v1H5zm5-1H8v1h2v2h1v-2h2v-1h-2V8h-1v2zm-7 1v-1h1v1H3zm7.5-5a4.5 4.5 0 110 9 4.5 4.5 0 010-9z"></path></svg></button></span></td><td class="kbnDocViewer__field"><div class="euiFlexGroup euiFlexGroup--gutterSmall euiFlexGroup--alignItemsCenter euiFlexGroup--directionRow"><div class="euiFlexItem euiFlexItem--flexGrowZero"><span class="euiToken euiToken--gray euiToken--square euiToken--small kbnFieldIcon"><svg width="16" height="16" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" class="euiIcon euiIcon--medium" focusable="false" role="img" aria-label="String field"><title>String field</title><path d="M9.147 4.297l-.255 1.455h.936l-.222 1.266h-.935l-.455 2.688c-.025.184-.013.323.036.417.048.093.17.144.365.151.075.004.23-.005.465-.027l-.13 1.32c-.3.097-.618.142-.957.135-.552-.007-.965-.17-1.239-.487-.274-.317-.386-.748-.335-1.293l.476-2.904h-.725l.216-1.266h.725l.254-1.455h1.78z"></path></svg></span></div><div class="euiFlexItem eui-textTruncate"><span class="euiToolTipAnchor eui-textTruncate"><span>log_processed.message</span></span></div></div></td><td><div class="kbnDocViewer__value" data-test-subj="tableDocViewRow-log_processed.message-value"> ############################################### titulaciones: 23274740</div></td></tr><tr data-test-subj="tableDocViewRow-log_processed.method"><td class="kbnDocViewer__buttons"><span class="euiToolTipAnchor"><button class="euiButtonIcon euiButtonIcon--primary kbnDocViewer__actionButton" type="button" aria-label="Filter for value" data-test-subj="addInclusiveFilterButton"><svg width="16" height="16" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" class="euiIcon euiIcon--small euiButtonIcon__icon" focusable="false" role="img" aria-hidden="true"><path d="M7 6h2.5a.5.5 0 010 1H7v2.5a.5.5 0 01-1 0V7H3.5a.5.5 0 010-1H6V3.5a.5.5 0 011 0V6zm3.24 4.74c0-.117.04-.225.107-.31A5.478 5.478 0 0012 6.5 5.5 5.5 0 106.5 12a.5.5 0 110 1 6.5 6.5 0 114.936-2.27l4.419 4.418a.5.5 0 01-.707.707l-4.768-4.768a.499.499 0 01-.14-.347z"></path></svg></button></span><span class="euiToolTipAnchor"><button class="euiButtonIcon euiButtonIcon--primary kbnDocViewer__actionButton" type="button" aria-label="Filter out value" data-test-subj="removeInclusiveFilterButton"><svg width="16" height="16" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" class="euiIcon euiIcon--small euiButtonIcon__icon" focusable="false" role="img" aria-hidden="true"><path d="M9.5 6a.5.5 0 010 1h-6a.5.5 0 010-1h6zm.74 4.74c0-.117.04-.225.107-.31A5.478 5.478 0 0012 6.5 5.5 5.5 0 106.5 12a.5.5 0 110 1 6.5 6.5 0 114.936-2.27l4.419 4.418a.5.5 0 01-.707.707l-4.768-4.768a.499.499 0 01-.14-.347z"></path></svg></button></span><span class="euiToolTipAnchor"><button class="euiButtonIcon euiButtonIcon--primary kbnDocViewer__actionButton" type="button" aria-label="Toggle column in table" aria-pressed="false" data-test-subj="toggleColumnButton"><svg width="16" height="16" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" class="euiIcon euiIcon--small euiButtonIcon__icon" focusable="false" role="img" aria-hidden="true"><path d="M1 1v14h14V1H1zM0 0h16v16H0V0zm9 1v14h1V1H9zM3 3.5h4v-1H3v1zm0 3h4v-1H3v1zm0 3h4v-1H3v1z"></path></svg></button></span><span class="euiToolTipAnchor"><button class="euiButtonIcon euiButtonIcon--primary kbnDocViewer__actionButton" type="button" aria-label="Filter for field present" data-test-subj="addExistsFilterButton"><svg width="16" height="16" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" class="euiIcon euiIcon--small euiButtonIcon__icon" focusable="false" role="img" aria-hidden="true"><path d="M12 2H2v11h6v1H1V1h12v6h-1V2zM5 5h5.999V4H5v1zM3 5V4h1v1H3zm2 3V7h3v1H5zM3 8V7h1v1H3zm2 3v-1h2v1H5zm5-1H8v1h2v2h1v-2h2v-1h-2V8h-1v2zm-7 1v-1h1v1H3zm7.5-5a4.5 4.5 0 110 9 4.5 4.5 0 010-9z"></path></svg></button></span></td><td class="kbnDocViewer__field"><div class="euiFlexGroup euiFlexGroup--gutterSmall euiFlexGroup--alignItemsCenter euiFlexGroup--directionRow"><div class="euiFlexItem euiFlexItem--flexGrowZero"><span class="euiToken euiToken--gray euiToken--square euiToken--small kbnFieldIcon"><svg width="16" height="16" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" class="euiIcon euiIcon--medium" focusable="false" role="img" aria-label="String field"><title>String field</title><path d="M9.147 4.297l-.255 1.455h.936l-.222 1.266h-.935l-.455 2.688c-.025.184-.013.323.036.417.048.093.17.144.365.151.075.004.23-.005.465-.027l-.13 1.32c-.3.097-.618.142-.957.135-.552-.007-.965-.17-1.239-.487-.274-.317-.386-.748-.335-1.293l.476-2.904h-.725l.216-1.266h.725l.254-1.455h1.78z"></path></svg></span></div><div class="euiFlexItem eui-textTruncate"><span class="euiToolTipAnchor eui-textTruncate"><span>log_processed.method</span></span></div></div></td><td><div class="kbnDocViewer__value" data-test-subj="tableDocViewRow-log_processed.method-value">getTitulaciones</div></td></tr><tr data-test-subj="tableDocViewRow-log_processed.source_host"><td class="kbnDocViewer__buttons"><span class="euiToolTipAnchor"><button class="euiButtonIcon euiButtonIcon--primary kbnDocViewer__actionButton" type="button" aria-label="Filter for value" data-test-subj="addInclusiveFilterButton"><svg width="16" height="16" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" class="euiIcon euiIcon--small euiButtonIcon__icon" focusable="false" role="img" aria-hidden="true"><path d="M7 6h2.5a.5.5 0 010 1H7v2.5a.5.5 0 01-1 0V7H3.5a.5.5 0 010-1H6V3.5a.5.5 0 011 0V6zm3.24 4.74c0-.117.04-.225.107-.31A5.478 5.478 0 0012 6.5 5.5 5.5 0 106.5 12a.5.5 0 110 1 6.5 6.5 0 114.936-2.27l4.419 4.418a.5.5 0 01-.707.707l-4.768-4.768a.499.499 0 01-.14-.347z"></path></svg></button></span><span class="euiToolTipAnchor"><button class="euiButtonIcon euiButtonIcon--primary kbnDocViewer__actionButton" type="button" aria-label="Filter out value" data-test-subj="removeInclusiveFilterButton"><svg width="16" height="16" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" class="euiIcon euiIcon--small euiButtonIcon__icon" focusable="false" role="img" aria-hidden="true"><path d="M9.5 6a.5.5 0 010 1h-6a.5.5 0 010-1h6zm.74 4.74c0-.117.04-.225.107-.31A5.478 5.478 0 0012 6.5 5.5 5.5 0 106.5 12a.5.5 0 110 1 6.5 6.5 0 114.936-2.27l4.419 4.418a.5.5 0 01-.707.707l-4.768-4.768a.499.499 0 01-.14-.347z"></path></svg></button></span><span class="euiToolTipAnchor"><button class="euiButtonIcon euiButtonIcon--primary kbnDocViewer__actionButton" type="button" aria-label="Toggle column in table" aria-pressed="false" data-test-subj="toggleColumnButton"><svg width="16" height="16" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" class="euiIcon euiIcon--small euiButtonIcon__icon" focusable="false" role="img" aria-hidden="true"><path d="M1 1v14h14V1H1zM0 0h16v16H0V0zm9 1v14h1V1H9zM3 3.5h4v-1H3v1zm0 3h4v-1H3v1zm0 3h4v-1H3v1z"></path></svg></button></span><span class="euiToolTipAnchor"><button class="euiButtonIcon euiButtonIcon--primary kbnDocViewer__actionButton" type="button" aria-label="Filter for field present" data-test-subj="addExistsFilterButton"><svg width="16" height="16" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" class="euiIcon euiIcon--small euiButtonIcon__icon" focusable="false" role="img" aria-hidden="true"><path d="M12 2H2v11h6v1H1V1h12v6h-1V2zM5 5h5.999V4H5v1zM3 5V4h1v1H3zm2 3V7h3v1H5zM3 8V7h1v1H3zm2 3v-1h2v1H5zm5-1H8v1h2v2h1v-2h2v-1h-2V8h-1v2zm-7 1v-1h1v1H3zm7.5-5a4.5 4.5 0 110 9 4.5 4.5 0 010-9z"></path></svg></button></span></td><td class="kbnDocViewer__field"><div class="euiFlexGroup euiFlexGroup--gutterSmall euiFlexGroup--alignItemsCenter euiFlexGroup--directionRow"><div class="euiFlexItem euiFlexItem--flexGrowZero"><span class="euiToken euiToken--gray euiToken--square euiToken--small kbnFieldIcon"><svg width="16" height="16" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" class="euiIcon euiIcon--medium" focusable="false" role="img" aria-label="String field"><title>String field</title><path d="M9.147 4.297l-.255 1.455h.936l-.222 1.266h-.935l-.455 2.688c-.025.184-.013.323.036.417.048.093.17.144.365.151.075.004.23-.005.465-.027l-.13 1.32c-.3.097-.618.142-.957.135-.552-.007-.965-.17-1.239-.487-.274-.317-.386-.748-.335-1.293l.476-2.904h-.725l.216-1.266h.725l.254-1.455h1.78z"></path></svg></span></div><div class="euiFlexItem eui-textTruncate"><span class="euiToolTipAnchor eui-textTruncate"><span>log_processed.source_host</span></span></div></div></td><td><div class="kbnDocViewer__value" data-test-subj="tableDocViewRow-log_processed.source_host-value">consultaexp-api-deployment-desa-5499587c9f-kx8gs</div></td></tr><tr data-test-subj="tableDocViewRow-log_processed.thread_name"><td class="kbnDocViewer__buttons"><span class="euiToolTipAnchor"><button class="euiButtonIcon euiButtonIcon--primary kbnDocViewer__actionButton" type="button" aria-label="Filter for value" data-test-subj="addInclusiveFilterButton"><svg width="16" height="16" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" class="euiIcon euiIcon--small euiButtonIcon__icon" focusable="false" role="img" aria-hidden="true"><path d="M7 6h2.5a.5.5 0 010 1H7v2.5a.5.5 0 01-1 0V7H3.5a.5.5 0 010-1H6V3.5a.5.5 0 011 0V6zm3.24 4.74c0-.117.04-.225.107-.31A5.478 5.478 0 0012 6.5 5.5 5.5 0 106.5 12a.5.5 0 110 1 6.5 6.5 0 114.936-2.27l4.419 4.418a.5.5 0 01-.707.707l-4.768-4.768a.499.499 0 01-.14-.347z"></path></svg></button></span><span class="euiToolTipAnchor"><button class="euiButtonIcon euiButtonIcon--primary kbnDocViewer__actionButton" type="button" aria-label="Filter out value" data-test-subj="removeInclusiveFilterButton"><svg width="16" height="16" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" class="euiIcon euiIcon--small euiButtonIcon__icon" focusable="false" role="img" aria-hidden="true"><path d="M9.5 6a.5.5 0 010 1h-6a.5.5 0 010-1h6zm.74 4.74c0-.117.04-.225.107-.31A5.478 5.478 0 0012 6.5 5.5 5.5 0 106.5 12a.5.5 0 110 1 6.5 6.5 0 114.936-2.27l4.419 4.418a.5.5 0 01-.707.707l-4.768-4.768a.499.499 0 01-.14-.347z"></path></svg></button></span><span class="euiToolTipAnchor"><button class="euiButtonIcon euiButtonIcon--primary kbnDocViewer__actionButton" type="button" aria-label="Toggle column in table" aria-pressed="false" data-test-subj="toggleColumnButton"><svg width="16" height="16" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" class="euiIcon euiIcon--small euiButtonIcon__icon" focusable="false" role="img" aria-hidden="true"><path d="M1 1v14h14V1H1zM0 0h16v16H0V0zm9 1v14h1V1H9zM3 3.5h4v-1H3v1zm0 3h4v-1H3v1zm0 3h4v-1H3v1z"></path></svg></button></span><span class="euiToolTipAnchor"><button class="euiButtonIcon euiButtonIcon--primary kbnDocViewer__actionButton" type="button" aria-label="Filter for field present" data-test-subj="addExistsFilterButton"><svg width="16" height="16" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" class="euiIcon euiIcon--small euiButtonIcon__icon" focusable="false" role="img" aria-hidden="true"><path d="M12 2H2v11h6v1H1V1h12v6h-1V2zM5 5h5.999V4H5v1zM3 5V4h1v1H3zm2 3V7h3v1H5zM3 8V7h1v1H3zm2 3v-1h2v1H5zm5-1H8v1h2v2h1v-2h2v-1h-2V8h-1v2zm-7 1v-1h1v1H3zm7.5-5a4.5 4.5 0 110 9 4.5 4.5 0 010-9z"></path></svg></button></span></td><td class="kbnDocViewer__field"><div class="euiFlexGroup euiFlexGroup--gutterSmall euiFlexGroup--alignItemsCenter euiFlexGroup--directionRow"><div class="euiFlexItem euiFlexItem--flexGrowZero"><span class="euiToken euiToken--gray euiToken--square euiToken--small kbnFieldIcon"><svg width="16" height="16" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" class="euiIcon euiIcon--medium" focusable="false" role="img" aria-label="String field"><title>String field</title><path d="M9.147 4.297l-.255 1.455h.936l-.222 1.266h-.935l-.455 2.688c-.025.184-.013.323.036.417.048.093.17.144.365.151.075.004.23-.005.465-.027l-.13 1.32c-.3.097-.618.142-.957.135-.552-.007-.965-.17-1.239-.487-.274-.317-.386-.748-.335-1.293l.476-2.904h-.725l.216-1.266h.725l.254-1.455h1.78z"></path></svg></span></div><div class="euiFlexItem eui-textTruncate"><span class="euiToolTipAnchor eui-textTruncate"><span>log_processed.thread_name</span></span></div></div></td><td><div class="kbnDocViewer__value" data-test-subj="tableDocViewRow-log_processed.thread_name-value">http-nio-8080-exec-6</div></td></tr><tr data-test-subj="tableDocViewRow-message"><td class="kbnDocViewer__buttons"><span class="euiToolTipAnchor"><button class="euiButtonIcon euiButtonIcon--primary kbnDocViewer__actionButton" type="button" aria-label="Filter for value" data-test-subj="addInclusiveFilterButton"><svg width="16" height="16" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" class="euiIcon euiIcon--small euiButtonIcon__icon" focusable="false" role="img" aria-hidden="true"><path d="M7 6h2.5a.5.5 0 010 1H7v2.5a.5.5 0 01-1 0V7H3.5a.5.5 0 010-1H6V3.5a.5.5 0 011 0V6zm3.24 4.74c0-.117.04-.225.107-.31A5.478 5.478 0 0012 6.5 5.5 5.5 0 106.5 12a.5.5 0 110 1 6.5 6.5 0 114.936-2.27l4.419 4.418a.5.5 0 01-.707.707l-4.768-4.768a.499.499 0 01-.14-.347z"></path></svg></button></span><span class="euiToolTipAnchor"><button class="euiButtonIcon euiButtonIcon--primary kbnDocViewer__actionButton" type="button" aria-label="Filter out value" data-test-subj="removeInclusiveFilterButton"><svg width="16" height="16" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" class="euiIcon euiIcon--small euiButtonIcon__icon" focusable="false" role="img" aria-hidden="true"><path d="M9.5 6a.5.5 0 010 1h-6a.5.5 0 010-1h6zm.74 4.74c0-.117.04-.225.107-.31A5.478 5.478 0 0012 6.5 5.5 5.5 0 106.5 12a.5.5 0 110 1 6.5 6.5 0 114.936-2.27l4.419 4.418a.5.5 0 01-.707.707l-4.768-4.768a.499.499 0 01-.14-.347z"></path></svg></button></span><span class="euiToolTipAnchor"><button class="euiButtonIcon euiButtonIcon--primary kbnDocViewer__actionButton" type="button" aria-label="Toggle column in table" aria-pressed="false" data-test-subj="toggleColumnButton"><svg width="16" height="16" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" class="euiIcon euiIcon--small euiButtonIcon__icon" focusable="false" role="img" aria-hidden="true"><path d="M1 1v14h14V1H1zM0 0h16v16H0V0zm9 1v14h1V1H9zM3 3.5h4v-1H3v1zm0 3h4v-1H3v1zm0 3h4v-1H3v1z"></path></svg></button></span><span class="euiToolTipAnchor"><button class="euiButtonIcon euiButtonIcon--primary kbnDocViewer__actionButton" type="button" aria-label="Filter for field present" data-test-subj="addExistsFilterButton"><svg width="16" height="16" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" class="euiIcon euiIcon--small euiButtonIcon__icon" focusable="false" role="img" aria-hidden="true"><path d="M12 2H2v11h6v1H1V1h12v6h-1V2zM5 5h5.999V4H5v1zM3 5V4h1v1H3zm2 3V7h3v1H5zM3 8V7h1v1H3zm2 3v-1h2v1H5zm5-1H8v1h2v2h1v-2h2v-1h-2V8h-1v2zm-7 1v-1h1v1H3zm7.5-5a4.5 4.5 0 110 9 4.5 4.5 0 010-9z"></path></svg></button></span></td><td class="kbnDocViewer__field"><div class="euiFlexGroup euiFlexGroup--gutterSmall euiFlexGroup--alignItemsCenter euiFlexGroup--directionRow"><div class="euiFlexItem euiFlexItem--flexGrowZero"><span class="euiToken euiToken--gray euiToken--square euiToken--small kbnFieldIcon"><svg width="16" height="16" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" class="euiIcon euiIcon--medium" focusable="false" role="img" aria-label="String field"><title>String field</title><path d="M9.147 4.297l-.255 1.455h.936l-.222 1.266h-.935l-.455 2.688c-.025.184-.013.323.036.417.048.093.17.144.365.151.075.004.23-.005.465-.027l-.13 1.32c-.3.097-.618.142-.957.135-.552-.007-.965-.17-1.239-.487-.274-.317-.386-.748-.335-1.293l.476-2.904h-.725l.216-1.266h.725l.254-1.455h1.78z"></path></svg></span></div><div class="euiFlexItem eui-textTruncate"><span class="euiToolTipAnchor eui-textTruncate"><span>message</span></span></div></div></td><td><span class="euiToolTipAnchor"><button class="euiButtonIcon euiButtonIcon--primary" type="button" aria-expanded="false" aria-label="Toggle field details" data-test-subj="collapseBtn"><svg width="16" height="16" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" class="euiIcon euiIcon--small euiButtonIcon__icon" focusable="false" role="img" aria-hidden="true"><path fill-rule="nonzero" d="M5.157 13.069l4.611-4.685a.546.546 0 000-.768L5.158 2.93a.552.552 0 010-.771.53.53 0 01.759 0l4.61 4.684c.631.641.63 1.672 0 2.312l-4.61 4.684a.53.53 0 01-.76 0 .552.552 0 010-.771z"></path></svg></button></span><div class="kbnDocViewer__value truncate-by-height" data-test-subj="tableDocViewRow-message-value">{"_@timestamp":1623167513.335847,"log":"{\"line_number\":377,\"class\":\"es.um.atica.consultaexpedientesbackend.rest.RestExpedientes\",\"@version\":1,\"source_host\":\"consultaexp-api-deployment-desa-5499587c9f-kx8gs\",\"message\":\" ############################################### titulaciones: 23274740\",\"thread_name\":\"http-nio-8080-exec-6\",\"_@timestamp\":\"2021-06-08T15:51:53.335+00:00\",\"level\":\"INFO\",\"file\":\"RestExpedientes.java\",\"method\":\"getTitulaciones\",\"logger_name\":\"es.um.atica.consultaexpedientesbackend.rest.RestExpedientes\"}\n","stream":"stdout","time":"2021-06-08T15:51:53.335846939Z","log_processed":{"line_number":377,"class":"es.um.atica.consultaexpedientesbackend.rest.RestExpedientes","@version":1,"source_host":"consultaexp-api-deployment-desa-5499587c9f-kx8gs","message":" ############################################### titulaciones: 23274740","thread_name":"http-nio-8080-exec-6","_@timestamp":"2021-06-08T15:51:53.335+00:00","level":"INFO","file":"RestExpedientes.java","method":"getTitulaciones","logger_name":"es.um.atica.consultaexpedientesbackend.rest.RestExpedientes"},"kubernetes":{"pod_name":"consultaexp-api-deployment-desa-5499587c9f-kx8gs","namespace_name":"consultaexp-ns-desa","pod_id":"48733f4e-9f95-40ae-a560-373154829bc8","labels":{"app":"api","author":"campusvirtual","pod-template-hash":"5499587c9f"},"annotations":{"cattle.io/timestamp":"2021-02-04T12:09:09Z","cni.projectcalico.org/podIP":"10.42.148.90/32","cni.projectcalico.org/podIPs":"10.42.148.90/32","field.cattle.io/ports":"[[{\"containerPort\":8080,\"dnsName\":\"consultaexp-api-deployment-desa\",\"kind\":\"ClusterIP\",\"name\":\"8080tcp2\",\"protocol\":\"TCP\"}]]","field.cattle.io/publicEndpoints":"[{\"addresses\":[\"155.54.228.21\",\"155.54.228.22\",\"155.54.228.23\"],\"hostname\":\"micampusdesa.um.es\",\"ingressId\":\"consultaexp-ns-desa:consultaexp-api-ingress-desa\",\"path\":\"/consulta/expedienteacademico\",\"port\":80,\"protocol\":\"HTTP\",\"serviceId\":\"consultaexp-ns-desa:consultaexp-api-service-desa\"}]"},"host":"155.54.228.21","container_name":"api","docker_id":"ebf5e81608c2d6b3bd25f16c81b9931ac6810595086c6ea1e9fbf880cf74d5d2","container_hash":"registry.um.es:443/mncs/consulta-expedientes-api@sha256:53d5dc41868a6dc36523c8c75d0ae9372b2c4d38729256ac0ce0d96348a7acd8","container_image":"registry.um.es:443/mncs/consulta-expedientes-api:0.0.540570"}}</div></td></tr><tr data-test-subj="tableDocViewRow-stream"><td class="kbnDocViewer__buttons"><span class="euiToolTipAnchor"><button class="euiButtonIcon euiButtonIcon--primary kbnDocViewer__actionButton" type="button" aria-label="Filter for value" data-test-subj="addInclusiveFilterButton"><svg width="16" height="16" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" class="euiIcon euiIcon--small euiButtonIcon__icon" focusable="false" role="img" aria-hidden="true"><path d="M7 6h2.5a.5.5 0 010 1H7v2.5a.5.5 0 01-1 0V7H3.5a.5.5 0 010-1H6V3.5a.5.5 0 011 0V6zm3.24 4.74c0-.117.04-.225.107-.31A5.478 5.478 0 0012 6.5 5.5 5.5 0 106.5 12a.5.5 0 110 1 6.5 6.5 0 114.936-2.27l4.419 4.418a.5.5 0 01-.707.707l-4.768-4.768a.499.499 0 01-.14-.347z"></path></svg></button></span><span class="euiToolTipAnchor"><button class="euiButtonIcon euiButtonIcon--primary kbnDocViewer__actionButton" type="button" aria-label="Filter out value" data-test-subj="removeInclusiveFilterButton"><svg width="16" height="16" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" class="euiIcon euiIcon--small euiButtonIcon__icon" focusable="false" role="img" aria-hidden="true"><path d="M9.5 6a.5.5 0 010 1h-6a.5.5 0 010-1h6zm.74 4.74c0-.117.04-.225.107-.31A5.478 5.478 0 0012 6.5 5.5 5.5 0 106.5 12a.5.5 0 110 1 6.5 6.5 0 114.936-2.27l4.419 4.418a.5.5 0 01-.707.707l-4.768-4.768a.499.499 0 01-.14-.347z"></path></svg></button></span><span class="euiToolTipAnchor"><button class="euiButtonIcon euiButtonIcon--primary kbnDocViewer__actionButton" type="button" aria-label="Toggle column in table" aria-pressed="false" data-test-subj="toggleColumnButton"><svg width="16" height="16" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" class="euiIcon euiIcon--small euiButtonIcon__icon" focusable="false" role="img" aria-hidden="true"><path d="M1 1v14h14V1H1zM0 0h16v16H0V0zm9 1v14h1V1H9zM3 3.5h4v-1H3v1zm0 3h4v-1H3v1zm0 3h4v-1H3v1z"></path></svg></button></span><span class="euiToolTipAnchor"><button class="euiButtonIcon euiButtonIcon--primary kbnDocViewer__actionButton" type="button" aria-label="Filter for field present" data-test-subj="addExistsFilterButton"><svg width="16" height="16" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" class="euiIcon euiIcon--small euiButtonIcon__icon" focusable="false" role="img" aria-hidden="true"><path d="M12 2H2v11h6v1H1V1h12v6h-1V2zM5 5h5.999V4H5v1zM3 5V4h1v1H3zm2 3V7h3v1H5zM3 8V7h1v1H3zm2 3v-1h2v1H5zm5-1H8v1h2v2h1v-2h2v-1h-2V8h-1v2zm-7 1v-1h1v1H3zm7.5-5a4.5 4.5 0 110 9 4.5 4.5 0 010-9z"></path></svg></button></span></td><td class="kbnDocViewer__field"><div class="euiFlexGroup euiFlexGroup--gutterSmall euiFlexGroup--alignItemsCenter euiFlexGroup--directionRow"><div class="euiFlexItem euiFlexItem--flexGrowZero"><span class="euiToken euiToken--gray euiToken--square euiToken--small kbnFieldIcon"><svg width="16" height="16" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" class="euiIcon euiIcon--medium" focusable="false" role="img" aria-label="String field"><title>String field</title><path d="M9.147 4.297l-.255 1.455h.936l-.222 1.266h-.935l-.455 2.688c-.025.184-.013.323.036.417.048.093.17.144.365.151.075.004.23-.005.465-.027l-.13 1.32c-.3.097-.618.142-.957.135-.552-.007-.965-.17-1.239-.487-.274-.317-.386-.748-.335-1.293l.476-2.904h-.725l.216-1.266h.725l.254-1.455h1.78z"></path></svg></span></div><div class="euiFlexItem eui-textTruncate"><span class="euiToolTipAnchor eui-textTruncate"><span>stream</span></span></div></div></td><td><div class="kbnDocViewer__value" data-test-subj="tableDocViewRow-stream-value">stdout</div></td></tr><tr data-test-subj="tableDocViewRow-tags"><td class="kbnDocViewer__buttons"><span class="euiToolTipAnchor"><button class="euiButtonIcon euiButtonIcon--primary kbnDocViewer__actionButton" type="button" aria-label="Filter for value" data-test-subj="addInclusiveFilterButton"><svg width="16" height="16" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" class="euiIcon euiIcon--small euiButtonIcon__icon" focusable="false" role="img" aria-hidden="true"><path d="M7 6h2.5a.5.5 0 010 1H7v2.5a.5.5 0 01-1 0V7H3.5a.5.5 0 010-1H6V3.5a.5.5 0 011 0V6zm3.24 4.74c0-.117.04-.225.107-.31A5.478 5.478 0 0012 6.5 5.5 5.5 0 106.5 12a.5.5 0 110 1 6.5 6.5 0 114.936-2.27l4.419 4.418a.5.5 0 01-.707.707l-4.768-4.768a.499.499 0 01-.14-.347z"></path></svg></button></span><span class="euiToolTipAnchor"><button class="euiButtonIcon euiButtonIcon--primary kbnDocViewer__actionButton" type="button" aria-label="Filter out value" data-test-subj="removeInclusiveFilterButton"><svg width="16" height="16" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" class="euiIcon euiIcon--small euiButtonIcon__icon" focusable="false" role="img" aria-hidden="true"><path d="M9.5 6a.5.5 0 010 1h-6a.5.5 0 010-1h6zm.74 4.74c0-.117.04-.225.107-.31A5.478 5.478 0 0012 6.5 5.5 5.5 0 106.5 12a.5.5 0 110 1 6.5 6.5 0 114.936-2.27l4.419 4.418a.5.5 0 01-.707.707l-4.768-4.768a.499.499 0 01-.14-.347z"></path></svg></button></span><span class="euiToolTipAnchor"><button class="euiButtonIcon euiButtonIcon--primary kbnDocViewer__actionButton" type="button" aria-label="Toggle column in table" aria-pressed="false" data-test-subj="toggleColumnButton"><svg width="16" height="16" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" class="euiIcon euiIcon--small euiButtonIcon__icon" focusable="false" role="img" aria-hidden="true"><path d="M1 1v14h14V1H1zM0 0h16v16H0V0zm9 1v14h1V1H9zM3 3.5h4v-1H3v1zm0 3h4v-1H3v1zm0 3h4v-1H3v1z"></path></svg></button></span><span class="euiToolTipAnchor"><button class="euiButtonIcon euiButtonIcon--primary kbnDocViewer__actionButton" type="button" aria-label="Filter for field present" data-test-subj="addExistsFilterButton"><svg width="16" height="16" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" class="euiIcon euiIcon--small euiButtonIcon__icon" focusable="false" role="img" aria-hidden="true"><path d="M12 2H2v11h6v1H1V1h12v6h-1V2zM5 5h5.999V4H5v1zM3 5V4h1v1H3zm2 3V7h3v1H5zM3 8V7h1v1H3zm2 3v-1h2v1H5zm5-1H8v1h2v2h1v-2h2v-1h-2V8h-1v2zm-7 1v-1h1v1H3zm7.5-5a4.5 4.5 0 110 9 4.5 4.5 0 010-9z"></path></svg></button></span></td><td class="kbnDocViewer__field"><div class="euiFlexGroup euiFlexGroup--gutterSmall euiFlexGroup--alignItemsCenter euiFlexGroup--directionRow"><div class="euiFlexItem euiFlexItem--flexGrowZero"><span class="euiToken euiToken--gray euiToken--square euiToken--small kbnFieldIcon"><svg width="16" height="16" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" class="euiIcon euiIcon--medium" focusable="false" role="img" aria-label="String field"><title>String field</title><path d="M9.147 4.297l-.255 1.455h.936l-.222 1.266h-.935l-.455 2.688c-.025.184-.013.323.036.417.048.093.17.144.365.151.075.004.23-.005.465-.027l-.13 1.32c-.3.097-.618.142-.957.135-.552-.007-.965-.17-1.239-.487-.274-.317-.386-.748-.335-1.293l.476-2.904h-.725l.216-1.266h.725l.254-1.455h1.78z"></path></svg></span></div><div class="euiFlexItem eui-textTruncate"><span class="euiToolTipAnchor eui-textTruncate"><span>tags</span></span></div></div></td><td><div class="kbnDocViewer__value" data-test-subj="tableDocViewRow-tags-value">_grokparsefailure, _geoip_lookup_failure</div></td></tr><tr data-test-subj="tableDocViewRow-time"><td class="kbnDocViewer__buttons"><span class="euiToolTipAnchor"><button class="euiButtonIcon euiButtonIcon--primary kbnDocViewer__actionButton" type="button" aria-label="Filter for value" data-test-subj="addInclusiveFilterButton"><svg width="16" height="16" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" class="euiIcon euiIcon--small euiButtonIcon__icon" focusable="false" role="img" aria-hidden="true"><path d="M7 6h2.5a.5.5 0 010 1H7v2.5a.5.5 0 01-1 0V7H3.5a.5.5 0 010-1H6V3.5a.5.5 0 011 0V6zm3.24 4.74c0-.117.04-.225.107-.31A5.478 5.478 0 0012 6.5 5.5 5.5 0 106.5 12a.5.5 0 110 1 6.5 6.5 0 114.936-2.27l4.419 4.418a.5.5 0 01-.707.707l-4.768-4.768a.499.499 0 01-.14-.347z"></path></svg></button></span><span class="euiToolTipAnchor"><button class="euiButtonIcon euiButtonIcon--primary kbnDocViewer__actionButton" type="button" aria-label="Filter out value" data-test-subj="removeInclusiveFilterButton"><svg width="16" height="16" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" class="euiIcon euiIcon--small euiButtonIcon__icon" focusable="false" role="img" aria-hidden="true"><path d="M9.5 6a.5.5 0 010 1h-6a.5.5 0 010-1h6zm.74 4.74c0-.117.04-.225.107-.31A5.478 5.478 0 0012 6.5 5.5 5.5 0 106.5 12a.5.5 0 110 1 6.5 6.5 0 114.936-2.27l4.419 4.418a.5.5 0 01-.707.707l-4.768-4.768a.499.499 0 01-.14-.347z"></path></svg></button></span><span class="euiToolTipAnchor"><button class="euiButtonIcon euiButtonIcon--primary kbnDocViewer__actionButton" type="button" aria-label="Toggle column in table" aria-pressed="false" data-test-subj="toggleColumnButton"><svg width="16" height="16" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" class="euiIcon euiIcon--small euiButtonIcon__icon" focusable="false" role="img" aria-hidden="true"><path d="M1 1v14h14V1H1zM0 0h16v16H0V0zm9 1v14h1V1H9zM3 3.5h4v-1H3v1zm0 3h4v-1H3v1zm0 3h4v-1H3v1z"></path></svg></button></span><span class="euiToolTipAnchor"><button class="euiButtonIcon euiButtonIcon--primary kbnDocViewer__actionButton" type="button" aria-label="Filter for field present" data-test-subj="addExistsFilterButton"><svg width="16" height="16" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" class="euiIcon euiIcon--small euiButtonIcon__icon" focusable="false" role="img" aria-hidden="true"><path d="M12 2H2v11h6v1H1V1h12v6h-1V2zM5 5h5.999V4H5v1zM3 5V4h1v1H3zm2 3V7h3v1H5zM3 8V7h1v1H3zm2 3v-1h2v1H5zm5-1H8v1h2v2h1v-2h2v-1h-2V8h-1v2zm-7 1v-1h1v1H3zm7.5-5a4.5 4.5 0 110 9 4.5 4.5 0 010-9z"></path></svg></button></span></td><td class="kbnDocViewer__field"><div class="euiFlexGroup euiFlexGroup--gutterSmall euiFlexGroup--alignItemsCenter euiFlexGroup--directionRow"><div class="euiFlexItem euiFlexItem--flexGrowZero"><span class="euiToken euiToken--gray euiToken--square euiToken--small kbnFieldIcon"><svg width="16" height="16" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" class="euiIcon euiIcon--medium" focusable="false" role="img" aria-label="Date field"><title>Date field</title><path fill-rule="evenodd" d="M13 11.567C13 12.36 12.36 13 11.567 13H4.433C3.64 13 3 12.36 3 11.567V4.433C3 3.64 3.64 3 4.433 3H6v-.495a.51.51 0 01.412-.497L6.5 2c.276 0 .5.214.5.505V3h2v-.495a.51.51 0 01.412-.497L9.5 2c.276 0 .5.214.5.505V3h1.567C12.36 3 13 3.64 13 4.433v7.134zM4 6v5.33c0 .37.3.67.67.67h6.66c.37 0 .67-.3.67-.67V6H4zm1.5 4c.245 0 .45.183.492.412L6 10.5c0 .245-.183.45-.412.492L5.5 11a.505.505 0 01-.5-.5c0-.245.183-.45.412-.492L5.5 10zM8 10c.245 0 .45.183.492.412l.008.088c0 .245-.183.45-.412.492L8 11a.505.505 0 01-.5-.5c0-.245.183-.45.412-.492L8 10zm2.5 0c.245 0 .45.183.492.412L11 10.5c0 .245-.183.45-.412.492L10.5 11a.505.505 0 01-.5-.5c0-.245.183-.45.412-.492L10.5 10zm-5-1.5c.245 0 .45.183.492.412L6 9c0 .245-.183.45-.412.492L5.5 9.5A.505.505 0 015 9c0-.245.183-.45.412-.492L5.5 8.5zm2.5 0c.245 0 .45.183.492.412L8.5 9c0 .245-.183.45-.412.492L8 9.5a.505.505 0 01-.5-.5c0-.245.183-.45.412-.492L8 8.5zm2.5 0c.245 0 .45.183.492.412L11 9c0 .245-.183.45-.412.492L10.5 9.5A.505.505 0 0110 9c0-.245.183-.45.412-.492L10.5 8.5zM5.5 7c.245 0 .45.183.492.412L6 7.5c0 .245-.183.45-.412.492L5.5 8a.505.505 0 01-.5-.5c0-.245.183-.45.412-.492L5.5 7zM8 7c.245 0 .45.183.492.412L8.5 7.5c0 .245-.183.45-.412.492L8 8a.505.505 0 01-.5-.5c0-.245.183-.45.412-.492L8 7zm2.5 0c.245 0 .45.183.492.412L11 7.5c0 .245-.183.45-.412.492L10.5 8a.505.505 0 01-.5-.5c0-.245.183-.45.412-.492L10.5 7zM4 5h8v-.33c0-.37-.3-.67-.67-.67H4.67C4.3 4 4 4.3 4 4.67V5z"></path></svg></span></div><div class="euiFlexItem eui-textTruncate"><span class="euiToolTipAnchor eui-textTruncate"><span>time</span></span></div></div></td><td><div class="kbnDocViewer__value" data-test-subj="tableDocViewRow-time-value">Jun 8, 2021 @ 17:51:53.335</div></td></tr></tbody></table> |
Esta es la estructura desglosada de cada evento de log en LAGAR:
También puede ser conveniente usar paneles visuales para comunicar información relacionada, sugerencias o aspectos que los usuarios deban tener en cuenta. |
Aquí aparecen artículos relacionados sobre la base de las etiquetas que usted seleccione. Haga clic para editar la macro y añadir o modificar las etiquetas.
|
TIPOS DE LOGS EN LAGAR SEGÚN ORIGEN
