diff --git a/agent/alpine/README.md b/agent/alpine/README.md index 60d596211..15a48b244 100644 --- a/agent/alpine/README.md +++ b/agent/alpine/README.md @@ -14,7 +14,7 @@ Zabbix agent is deployed on a monitoring target to actively monitor local resour # Zabbix agent images -These are the only official Zabbix agent Docker images. They are based on Alpine Linux v3.4, Ubuntu 14.04 (trusty) and CentOS 7 images. The available versions of Zabbix agent are: +These are the only official Zabbix agent Docker images. They are based on Alpine Linux v3.4, Ubuntu 18.04 (bionic) and CentOS 7 images. The available versions of Zabbix agent are: Zabbix agent 3.0 (tags: alpine-3.0-latest, ubuntu-3.0-latest, centos-3.0-latest) Zabbix agent 3.0.* (tags: alpine-3.0.*, ubuntu-3.0.*, centos-3.0.*) diff --git a/agent/alpine/docker-entrypoint.sh b/agent/alpine/docker-entrypoint.sh index b77cc0b57..bd3a9ab50 100755 --- a/agent/alpine/docker-entrypoint.sh +++ b/agent/alpine/docker-entrypoint.sh @@ -593,6 +593,7 @@ prepare_web_server_nginx() { fi ln -sf /dev/fd/2 /var/log/php5-fpm.log + ln -sf /dev/fd/2 /var/log/php7.2-fpm.log } stop_databases() { @@ -845,6 +846,10 @@ prepare_zbx_web_config() { PHP_CONFIG_FILE="/etc/php.d/99-zabbix.ini" elif [ -f "/etc/php7/conf.d/99-zabbix.ini" ]; then PHP_CONFIG_FILE="/etc/php7/conf.d/99-zabbix.ini" + elif [ -f "/etc/php/7.2/fpm/conf.d/99-zabbix.ini" ]; then + PHP_CONFIG_FILE="/etc/php/7.2/fpm/conf.d/99-zabbix.ini" + elif [ -f "/etc/php/7.2/apache2/conf.d/99-zabbix.ini" ]; then + PHP_CONFIG_FILE="/etc/php/7.2/apache2/conf.d/99-zabbix.ini" fi if [ -n "$PHP_CONFIG_FILE" ]; then diff --git a/agent/centos/README.md b/agent/centos/README.md index 60d596211..15a48b244 100644 --- a/agent/centos/README.md +++ b/agent/centos/README.md @@ -14,7 +14,7 @@ Zabbix agent is deployed on a monitoring target to actively monitor local resour # Zabbix agent images -These are the only official Zabbix agent Docker images. They are based on Alpine Linux v3.4, Ubuntu 14.04 (trusty) and CentOS 7 images. The available versions of Zabbix agent are: +These are the only official Zabbix agent Docker images. They are based on Alpine Linux v3.4, Ubuntu 18.04 (bionic) and CentOS 7 images. The available versions of Zabbix agent are: Zabbix agent 3.0 (tags: alpine-3.0-latest, ubuntu-3.0-latest, centos-3.0-latest) Zabbix agent 3.0.* (tags: alpine-3.0.*, ubuntu-3.0.*, centos-3.0.*) diff --git a/agent/centos/docker-entrypoint.sh b/agent/centos/docker-entrypoint.sh index b77cc0b57..bd3a9ab50 100755 --- a/agent/centos/docker-entrypoint.sh +++ b/agent/centos/docker-entrypoint.sh @@ -593,6 +593,7 @@ prepare_web_server_nginx() { fi ln -sf /dev/fd/2 /var/log/php5-fpm.log + ln -sf /dev/fd/2 /var/log/php7.2-fpm.log } stop_databases() { @@ -845,6 +846,10 @@ prepare_zbx_web_config() { PHP_CONFIG_FILE="/etc/php.d/99-zabbix.ini" elif [ -f "/etc/php7/conf.d/99-zabbix.ini" ]; then PHP_CONFIG_FILE="/etc/php7/conf.d/99-zabbix.ini" + elif [ -f "/etc/php/7.2/fpm/conf.d/99-zabbix.ini" ]; then + PHP_CONFIG_FILE="/etc/php/7.2/fpm/conf.d/99-zabbix.ini" + elif [ -f "/etc/php/7.2/apache2/conf.d/99-zabbix.ini" ]; then + PHP_CONFIG_FILE="/etc/php/7.2/apache2/conf.d/99-zabbix.ini" fi if [ -n "$PHP_CONFIG_FILE" ]; then diff --git a/agent/ubuntu/Dockerfile b/agent/ubuntu/Dockerfile index 1997cb5cd..d650c013f 100644 --- a/agent/ubuntu/Dockerfile +++ b/agent/ubuntu/Dockerfile @@ -1,4 +1,4 @@ -FROM ubuntu:trusty as builder +FROM ubuntu:bionic as builder ARG APT_FLAGS_COMMON="-y" ARG APT_FLAGS_DEV="${APT_FLAGS_COMMON} --no-install-recommends" @@ -9,8 +9,9 @@ ARG ZBX_SOURCES=svn://svn.zabbix.com/tags/${ZBX_VERSION}/ ENV LANG=en_US.UTF-8 LANGUAGE=en_US:en LC_ALL=en_US.UTF-8 DEBIAN_FRONTEND=noninteractive TERM=xterm \ ZBX_TYPE=agent ZBX_VERSION=${ZBX_VERSION} ZBX_SOURCES=${ZBX_SOURCES} -RUN locale-gen $LC_ALL && \ - apt-get ${APT_FLAGS_COMMON} update && \ +RUN apt-get ${APT_FLAGS_COMMON} update && \ + apt-get ${APT_FLAGS_PERSISTENT} install locales && \ + locale-gen $LC_ALL && \ apt-get ${APT_FLAGS_DEV} install \ autoconf \ automake \ @@ -41,7 +42,7 @@ RUN locale-gen $LC_ALL && \ --silent && \ make -j"$(nproc)" -s -FROM ubuntu:trusty +FROM ubuntu:bionic LABEL maintainer="Alexey Pustovalov " ARG BUILD_DATE @@ -77,7 +78,9 @@ COPY --from=builder /tmp/zabbix-${ZBX_VERSION}/src/zabbix_get/zabbix_get /usr/bi COPY --from=builder /tmp/zabbix-${ZBX_VERSION}/src/zabbix_sender/zabbix_sender /usr/bin/zabbix_sender COPY --from=builder /tmp/zabbix-${ZBX_VERSION}/conf/zabbix_agentd.conf /etc/zabbix/zabbix_agentd.conf -RUN locale-gen $LC_ALL && \ +RUN apt-get ${APT_FLAGS_COMMON} update && \ + apt-get ${APT_FLAGS_PERSISTENT} install locales && \ + locale-gen $LC_ALL && \ echo "#!/bin/sh\nexit 0" > /usr/sbin/policy-rc.d && \ addgroup --system --quiet zabbix && \ adduser --quiet \ diff --git a/agent/ubuntu/README.md b/agent/ubuntu/README.md index 60d596211..15a48b244 100644 --- a/agent/ubuntu/README.md +++ b/agent/ubuntu/README.md @@ -14,7 +14,7 @@ Zabbix agent is deployed on a monitoring target to actively monitor local resour # Zabbix agent images -These are the only official Zabbix agent Docker images. They are based on Alpine Linux v3.4, Ubuntu 14.04 (trusty) and CentOS 7 images. The available versions of Zabbix agent are: +These are the only official Zabbix agent Docker images. They are based on Alpine Linux v3.4, Ubuntu 18.04 (bionic) and CentOS 7 images. The available versions of Zabbix agent are: Zabbix agent 3.0 (tags: alpine-3.0-latest, ubuntu-3.0-latest, centos-3.0-latest) Zabbix agent 3.0.* (tags: alpine-3.0.*, ubuntu-3.0.*, centos-3.0.*) diff --git a/agent/ubuntu/docker-entrypoint.sh b/agent/ubuntu/docker-entrypoint.sh index b77cc0b57..bd3a9ab50 100755 --- a/agent/ubuntu/docker-entrypoint.sh +++ b/agent/ubuntu/docker-entrypoint.sh @@ -593,6 +593,7 @@ prepare_web_server_nginx() { fi ln -sf /dev/fd/2 /var/log/php5-fpm.log + ln -sf /dev/fd/2 /var/log/php7.2-fpm.log } stop_databases() { @@ -845,6 +846,10 @@ prepare_zbx_web_config() { PHP_CONFIG_FILE="/etc/php.d/99-zabbix.ini" elif [ -f "/etc/php7/conf.d/99-zabbix.ini" ]; then PHP_CONFIG_FILE="/etc/php7/conf.d/99-zabbix.ini" + elif [ -f "/etc/php/7.2/fpm/conf.d/99-zabbix.ini" ]; then + PHP_CONFIG_FILE="/etc/php/7.2/fpm/conf.d/99-zabbix.ini" + elif [ -f "/etc/php/7.2/apache2/conf.d/99-zabbix.ini" ]; then + PHP_CONFIG_FILE="/etc/php/7.2/apache2/conf.d/99-zabbix.ini" fi if [ -n "$PHP_CONFIG_FILE" ]; then diff --git a/docker-compose_v3_ubuntu_mysql_latest.yaml b/docker-compose_v3_ubuntu_mysql_latest.yaml index ade7ac331..b89fc1899 100644 --- a/docker-compose_v3_ubuntu_mysql_latest.yaml +++ b/docker-compose_v3_ubuntu_mysql_latest.yaml @@ -5,8 +5,8 @@ services: ports: - "10051:10051" volumes: - - /etc/localtime:/etc/localtime:ro - - /etc/timezone:/etc/timezone:ro +# - /etc/localtime:/etc/localtime:ro +# - /etc/timezone:/etc/timezone:ro - ./zbx_env/usr/lib/zabbix/alertscripts:/usr/lib/zabbix/alertscripts:ro - ./zbx_env/usr/lib/zabbix/externalscripts:/usr/lib/zabbix/externalscripts:ro - ./zbx_env/var/lib/zabbix/modules:/var/lib/zabbix/modules:ro @@ -66,8 +66,8 @@ services: ports: - "10061:10051" volumes: - - /etc/localtime:/etc/localtime:ro - - /etc/timezone:/etc/timezone:ro +# - /etc/localtime:/etc/localtime:ro +# - /etc/timezone:/etc/timezone:ro - ./zbx_env/usr/lib/zabbix/externalscripts:/usr/lib/zabbix/externalscripts:ro - ./zbx_env/var/lib/zabbix/modules:/var/lib/zabbix/modules:ro - ./zbx_env/var/lib/zabbix/enc:/var/lib/zabbix/enc:ro @@ -117,8 +117,8 @@ services: ports: - "10071:10051" volumes: - - /etc/localtime:/etc/localtime:ro - - /etc/timezone:/etc/timezone:ro +# - /etc/localtime:/etc/localtime:ro +# - /etc/timezone:/etc/timezone:ro - ./zbx_env/usr/lib/zabbix/externalscripts:/usr/lib/zabbix/externalscripts:ro - ./zbx_env/var/lib/zabbix/modules:/var/lib/zabbix/modules:ro - ./zbx_env/var/lib/zabbix/enc:/var/lib/zabbix/enc:ro @@ -174,8 +174,8 @@ services: - mysql-server:mysql-server - zabbix-server:zabbix-server volumes: - - /etc/localtime:/etc/localtime:ro - - /etc/timezone:/etc/timezone:ro +# - /etc/localtime:/etc/localtime:ro +# - /etc/timezone:/etc/timezone:ro - ./zbx_env/etc/ssl/apache2:/etc/ssl/apache2:ro deploy: resources: @@ -225,8 +225,8 @@ services: - mysql-server:mysql-server - zabbix-server:zabbix-server volumes: - - /etc/localtime:/etc/localtime:ro - - /etc/timezone:/etc/timezone:ro +# - /etc/localtime:/etc/localtime:ro +# - /etc/timezone:/etc/timezone:ro - ./zbx_env/etc/ssl/nginx:/etc/ssl/nginx:ro deploy: resources: @@ -272,8 +272,8 @@ services: ports: - "10050:10050" volumes: - - /etc/localtime:/etc/localtime:ro - - /etc/timezone:/etc/timezone:ro +# - /etc/localtime:/etc/localtime:ro +# - /etc/timezone:/etc/timezone:ro - ./zbx_env/etc/zabbix/zabbix_agentd.d:/etc/zabbix/zabbix_agentd.d:ro - ./zbx_env/var/lib/zabbix/modules:/var/lib/zabbix/modules:ro - ./zbx_env/var/lib/zabbix/enc:/var/lib/zabbix/enc:ro diff --git a/docker-compose_v3_ubuntu_mysql_local.yaml b/docker-compose_v3_ubuntu_mysql_local.yaml index 0d7493875..f7996aee1 100644 --- a/docker-compose_v3_ubuntu_mysql_local.yaml +++ b/docker-compose_v3_ubuntu_mysql_local.yaml @@ -4,13 +4,13 @@ services: build: context: ./server-mysql/ubuntu cache_from: - - ubuntu:trusty + - ubuntu:bionic image: zabbix-server-mysql:ubuntu-3.4-local ports: - "10051:10051" volumes: - - /etc/localtime:/etc/localtime:ro - - /etc/timezone:/etc/timezone:ro +# - /etc/localtime:/etc/localtime:ro +# - /etc/timezone:/etc/timezone:ro - ./zbx_env/usr/lib/zabbix/alertscripts:/usr/lib/zabbix/alertscripts:ro - ./zbx_env/usr/lib/zabbix/externalscripts:/usr/lib/zabbix/externalscripts:ro - ./zbx_env/var/lib/zabbix/modules:/var/lib/zabbix/modules:ro @@ -69,13 +69,13 @@ services: build: context: ./proxy-sqlite3/ubuntu cache_from: - - ubuntu:trusty + - ubuntu:bionic image: zabbix-proxy-sqlite3:ubuntu-3.4-local ports: - "10061:10051" volumes: - - /etc/localtime:/etc/localtime:ro - - /etc/timezone:/etc/timezone:ro +# - /etc/localtime:/etc/localtime:ro +# - /etc/timezone:/etc/timezone:ro - ./zbx_env/usr/lib/zabbix/externalscripts:/usr/lib/zabbix/externalscripts:ro - ./zbx_env/var/lib/zabbix/modules:/var/lib/zabbix/modules:ro - ./zbx_env/var/lib/zabbix/enc:/var/lib/zabbix/enc:ro @@ -124,13 +124,13 @@ services: build: context: ./proxy-mysql/ubuntu cache_from: - - ubuntu:trusty + - ubuntu:bionic image: zabbix-proxy-mysql:ubuntu-3.4-local ports: - "10071:10051" volumes: - - /etc/localtime:/etc/localtime:ro - - /etc/timezone:/etc/timezone:ro +# - /etc/localtime:/etc/localtime:ro +# - /etc/timezone:/etc/timezone:ro - ./zbx_env/usr/lib/zabbix/externalscripts:/usr/lib/zabbix/externalscripts:ro - ./zbx_env/var/lib/zabbix/modules:/var/lib/zabbix/modules:ro - ./zbx_env/var/lib/zabbix/enc:/var/lib/zabbix/enc:ro @@ -181,7 +181,7 @@ services: build: context: ./web-apache-mysql/ubuntu cache_from: - - ubuntu:trusty + - ubuntu:bionic image: zabbix-web-apache-mysql:ubuntu-3.4-local ports: - "80:80" @@ -190,8 +190,8 @@ services: - mysql-server:mysql-server - zabbix-server:zabbix-server volumes: - - /etc/localtime:/etc/localtime:ro - - /etc/timezone:/etc/timezone:ro +# - /etc/localtime:/etc/localtime:ro +# - /etc/timezone:/etc/timezone:ro - ./zbx_env/etc/ssl/apache2:/etc/ssl/apache2:ro deploy: resources: @@ -236,7 +236,7 @@ services: build: context: ./web-nginx-mysql/ubuntu cache_from: - - ubuntu:trusty + - ubuntu:bionic image: zabbix-web-nginx-mysql:ubuntu-3.4-local ports: - "8081:80" @@ -245,8 +245,8 @@ services: - mysql-server:mysql-server - zabbix-server:zabbix-server volumes: - - /etc/localtime:/etc/localtime:ro - - /etc/timezone:/etc/timezone:ro +# - /etc/localtime:/etc/localtime:ro +# - /etc/timezone:/etc/timezone:ro - ./zbx_env/etc/ssl/nginx:/etc/ssl/nginx:ro deploy: resources: @@ -291,13 +291,13 @@ services: build: context: ./agent/ubuntu cache_from: - - ubuntu:trusty + - ubuntu:bionic image: zabbix-agent:ubuntu-3.4-local ports: - "10050:10050" volumes: - - /etc/localtime:/etc/localtime:ro - - /etc/timezone:/etc/timezone:ro +# - /etc/localtime:/etc/localtime:ro +# - /etc/timezone:/etc/timezone:ro - ./zbx_env/etc/zabbix/zabbix_agentd.d:/etc/zabbix/zabbix_agentd.d:ro - ./zbx_env/var/lib/zabbix/modules:/var/lib/zabbix/modules:ro - ./zbx_env/var/lib/zabbix/enc:/var/lib/zabbix/enc:ro @@ -335,7 +335,7 @@ services: build: context: ./java-gateway/ubuntu cache_from: - - ubuntu:trusty + - ubuntu:bionic image: zabbix-java-gateway:ubuntu-3.4-local ports: - "10052:10052" @@ -366,7 +366,7 @@ services: build: context: ./snmptraps/ubuntu cache_from: - - ubuntu:trusty + - ubuntu:bionic image: zabbix-snmptraps:ubuntu-3.4-local ports: - "162:162/udp" diff --git a/docker-compose_v3_ubuntu_pgsql_latest.yaml b/docker-compose_v3_ubuntu_pgsql_latest.yaml index d755e047f..b26e82331 100644 --- a/docker-compose_v3_ubuntu_pgsql_latest.yaml +++ b/docker-compose_v3_ubuntu_pgsql_latest.yaml @@ -5,8 +5,8 @@ services: ports: - "10051:10051" volumes: - - /etc/localtime:/etc/localtime:ro - - /etc/timezone:/etc/timezone:ro +# - /etc/localtime:/etc/localtime:ro +# - /etc/timezone:/etc/timezone:ro - ./zbx_env/usr/lib/zabbix/alertscripts:/usr/lib/zabbix/alertscripts:ro - ./zbx_env/usr/lib/zabbix/externalscripts:/usr/lib/zabbix/externalscripts:ro - ./zbx_env/var/lib/zabbix/modules:/var/lib/zabbix/modules:ro @@ -66,8 +66,8 @@ services: ports: - "10061:10051" volumes: - - /etc/localtime:/etc/localtime:ro - - /etc/timezone:/etc/timezone:ro +# - /etc/localtime:/etc/localtime:ro +# - /etc/timezone:/etc/timezone:ro - ./zbx_env/usr/lib/zabbix/externalscripts:/usr/lib/zabbix/externalscripts:ro - ./zbx_env/var/lib/zabbix/modules:/var/lib/zabbix/modules:ro - ./zbx_env/var/lib/zabbix/enc:/var/lib/zabbix/enc:ro @@ -117,8 +117,8 @@ services: ports: - "10071:10051" volumes: - - /etc/localtime:/etc/localtime:ro - - /etc/timezone:/etc/timezone:ro +# - /etc/localtime:/etc/localtime:ro +# - /etc/timezone:/etc/timezone:ro - ./zbx_env/usr/lib/zabbix/externalscripts:/usr/lib/zabbix/externalscripts:ro - ./zbx_env/var/lib/zabbix/modules:/var/lib/zabbix/modules:ro - ./zbx_env/var/lib/zabbix/enc:/var/lib/zabbix/enc:ro @@ -174,8 +174,8 @@ services: - postgres-server:postgres-server - zabbix-server:zabbix-server volumes: - - /etc/localtime:/etc/localtime:ro - - /etc/timezone:/etc/timezone:ro +# - /etc/localtime:/etc/localtime:ro +# - /etc/timezone:/etc/timezone:ro - ./zbx_env/etc/ssl/apache2:/etc/ssl/apache2:ro deploy: resources: @@ -225,8 +225,8 @@ services: - postgres-server:postgres-server - zabbix-server:zabbix-server volumes: - - /etc/localtime:/etc/localtime:ro - - /etc/timezone:/etc/timezone:ro +# - /etc/localtime:/etc/localtime:ro +# - /etc/timezone:/etc/timezone:ro - ./zbx_env/etc/ssl/nginx:/etc/ssl/nginx:ro deploy: resources: @@ -272,8 +272,8 @@ services: ports: - "10050:10050" volumes: - - /etc/localtime:/etc/localtime:ro - - /etc/timezone:/etc/timezone:ro +# - /etc/localtime:/etc/localtime:ro +# - /etc/timezone:/etc/timezone:ro - ./zbx_env/etc/zabbix/zabbix_agentd.d:/etc/zabbix/zabbix_agentd.d:ro - ./zbx_env/var/lib/zabbix/modules:/var/lib/zabbix/modules:ro - ./zbx_env/var/lib/zabbix/enc:/var/lib/zabbix/enc:ro diff --git a/docker-compose_v3_ubuntu_pgsql_local.yaml b/docker-compose_v3_ubuntu_pgsql_local.yaml index 7d8a634fc..975d9009a 100644 --- a/docker-compose_v3_ubuntu_pgsql_local.yaml +++ b/docker-compose_v3_ubuntu_pgsql_local.yaml @@ -6,8 +6,8 @@ services: ports: - "10051:10051" volumes: - - /etc/localtime:/etc/localtime:ro - - /etc/timezone:/etc/timezone:ro +# - /etc/localtime:/etc/localtime:ro +# - /etc/timezone:/etc/timezone:ro - ./zbx_env/usr/lib/zabbix/alertscripts:/usr/lib/zabbix/alertscripts:ro - ./zbx_env/usr/lib/zabbix/externalscripts:/usr/lib/zabbix/externalscripts:ro - ./zbx_env/var/lib/zabbix/modules:/var/lib/zabbix/modules:ro @@ -68,8 +68,8 @@ services: ports: - "10061:10051" volumes: - - /etc/localtime:/etc/localtime:ro - - /etc/timezone:/etc/timezone:ro +# - /etc/localtime:/etc/localtime:ro +# - /etc/timezone:/etc/timezone:ro - ./zbx_env/usr/lib/zabbix/externalscripts:/usr/lib/zabbix/externalscripts:ro - ./zbx_env/var/lib/zabbix/modules:/var/lib/zabbix/modules:ro - ./zbx_env/var/lib/zabbix/enc:/var/lib/zabbix/enc:ro @@ -120,8 +120,8 @@ services: ports: - "10071:10051" volumes: - - /etc/localtime:/etc/localtime:ro - - /etc/timezone:/etc/timezone:ro +# - /etc/localtime:/etc/localtime:ro +# - /etc/timezone:/etc/timezone:ro - ./zbx_env/usr/lib/zabbix/externalscripts:/usr/lib/zabbix/externalscripts:ro - ./zbx_env/var/lib/zabbix/modules:/var/lib/zabbix/modules:ro - ./zbx_env/var/lib/zabbix/enc:/var/lib/zabbix/enc:ro @@ -179,8 +179,8 @@ services: - postgres-server:postgres-server - zabbix-server:zabbix-server volumes: - - /etc/localtime:/etc/localtime:ro - - /etc/timezone:/etc/timezone:ro +# - /etc/localtime:/etc/localtime:ro +# - /etc/timezone:/etc/timezone:ro - ./zbx_env/etc/ssl/apache2:/etc/ssl/apache2:ro deploy: resources: @@ -231,8 +231,8 @@ services: - postgres-server:postgres-server - zabbix-server:zabbix-server volumes: - - /etc/localtime:/etc/localtime:ro - - /etc/timezone:/etc/timezone:ro +# - /etc/localtime:/etc/localtime:ro +# - /etc/timezone:/etc/timezone:ro - ./zbx_env/etc/ssl/nginx:/etc/ssl/nginx:ro deploy: resources: @@ -279,8 +279,8 @@ services: ports: - "10050:10050" volumes: - - /etc/localtime:/etc/localtime:ro - - /etc/timezone:/etc/timezone:ro +# - /etc/localtime:/etc/localtime:ro +# - /etc/timezone:/etc/timezone:ro - ./zbx_env/etc/zabbix/zabbix_agentd.d:/etc/zabbix/zabbix_agentd.d:ro - ./zbx_env/var/lib/zabbix/modules:/var/lib/zabbix/modules:ro - ./zbx_env/var/lib/zabbix/enc:/var/lib/zabbix/enc:ro diff --git a/java-gateway/alpine/README.md b/java-gateway/alpine/README.md index d04f7a9f3..f507be718 100644 --- a/java-gateway/alpine/README.md +++ b/java-gateway/alpine/README.md @@ -14,7 +14,7 @@ Zabbix Java Gateway performs native support for monitoring JMX applications. Jav # Zabbix Java Gateway images -These are the only official Zabbix Java Gateway Docker images. They are based on Alpine Linux v3.4, Ubuntu 14.04 (trusty) and CentOS 7 images. The available versions of Zabbix Java Gateway are: +These are the only official Zabbix Java Gateway Docker images. They are based on Alpine Linux v3.4, Ubuntu 18.04 (bionic) and CentOS 7 images. The available versions of Zabbix Java Gateway are: Zabbix Java Gateway 3.0 (tags: alpine-3.0-latest, ubuntu-3.0-latest, centos-3.0-latest) Zabbix Java Gateway 3.0.* (tags: alpine-3.0.*, ubuntu-3.0.*, centos-3.0.*) diff --git a/java-gateway/alpine/docker-entrypoint.sh b/java-gateway/alpine/docker-entrypoint.sh index b77cc0b57..bd3a9ab50 100755 --- a/java-gateway/alpine/docker-entrypoint.sh +++ b/java-gateway/alpine/docker-entrypoint.sh @@ -593,6 +593,7 @@ prepare_web_server_nginx() { fi ln -sf /dev/fd/2 /var/log/php5-fpm.log + ln -sf /dev/fd/2 /var/log/php7.2-fpm.log } stop_databases() { @@ -845,6 +846,10 @@ prepare_zbx_web_config() { PHP_CONFIG_FILE="/etc/php.d/99-zabbix.ini" elif [ -f "/etc/php7/conf.d/99-zabbix.ini" ]; then PHP_CONFIG_FILE="/etc/php7/conf.d/99-zabbix.ini" + elif [ -f "/etc/php/7.2/fpm/conf.d/99-zabbix.ini" ]; then + PHP_CONFIG_FILE="/etc/php/7.2/fpm/conf.d/99-zabbix.ini" + elif [ -f "/etc/php/7.2/apache2/conf.d/99-zabbix.ini" ]; then + PHP_CONFIG_FILE="/etc/php/7.2/apache2/conf.d/99-zabbix.ini" fi if [ -n "$PHP_CONFIG_FILE" ]; then diff --git a/java-gateway/centos/README.md b/java-gateway/centos/README.md index d04f7a9f3..f507be718 100644 --- a/java-gateway/centos/README.md +++ b/java-gateway/centos/README.md @@ -14,7 +14,7 @@ Zabbix Java Gateway performs native support for monitoring JMX applications. Jav # Zabbix Java Gateway images -These are the only official Zabbix Java Gateway Docker images. They are based on Alpine Linux v3.4, Ubuntu 14.04 (trusty) and CentOS 7 images. The available versions of Zabbix Java Gateway are: +These are the only official Zabbix Java Gateway Docker images. They are based on Alpine Linux v3.4, Ubuntu 18.04 (bionic) and CentOS 7 images. The available versions of Zabbix Java Gateway are: Zabbix Java Gateway 3.0 (tags: alpine-3.0-latest, ubuntu-3.0-latest, centos-3.0-latest) Zabbix Java Gateway 3.0.* (tags: alpine-3.0.*, ubuntu-3.0.*, centos-3.0.*) diff --git a/java-gateway/centos/docker-entrypoint.sh b/java-gateway/centos/docker-entrypoint.sh index b77cc0b57..bd3a9ab50 100755 --- a/java-gateway/centos/docker-entrypoint.sh +++ b/java-gateway/centos/docker-entrypoint.sh @@ -593,6 +593,7 @@ prepare_web_server_nginx() { fi ln -sf /dev/fd/2 /var/log/php5-fpm.log + ln -sf /dev/fd/2 /var/log/php7.2-fpm.log } stop_databases() { @@ -845,6 +846,10 @@ prepare_zbx_web_config() { PHP_CONFIG_FILE="/etc/php.d/99-zabbix.ini" elif [ -f "/etc/php7/conf.d/99-zabbix.ini" ]; then PHP_CONFIG_FILE="/etc/php7/conf.d/99-zabbix.ini" + elif [ -f "/etc/php/7.2/fpm/conf.d/99-zabbix.ini" ]; then + PHP_CONFIG_FILE="/etc/php/7.2/fpm/conf.d/99-zabbix.ini" + elif [ -f "/etc/php/7.2/apache2/conf.d/99-zabbix.ini" ]; then + PHP_CONFIG_FILE="/etc/php/7.2/apache2/conf.d/99-zabbix.ini" fi if [ -n "$PHP_CONFIG_FILE" ]; then diff --git a/java-gateway/ubuntu/Dockerfile b/java-gateway/ubuntu/Dockerfile index c9366cff3..f7e3a0598 100644 --- a/java-gateway/ubuntu/Dockerfile +++ b/java-gateway/ubuntu/Dockerfile @@ -1,4 +1,4 @@ -FROM ubuntu:trusty +FROM ubuntu:bionic LABEL maintainer="Alexey Pustovalov " ARG BUILD_DATE @@ -21,7 +21,9 @@ LABEL org.label-schema.name="zabbix-${ZBX_TYPE}-ubuntu" \ STOPSIGNAL SIGTERM -RUN locale-gen $LC_ALL && \ +RUN apt-get ${APT_FLAGS_COMMON} update && \ + apt-get ${APT_FLAGS_PERSISTENT} install locales && \ + locale-gen $LC_ALL && \ echo "#!/bin/sh\nexit 0" > /usr/sbin/policy-rc.d && \ addgroup --system --quiet zabbix && \ adduser --quiet \ @@ -34,7 +36,7 @@ RUN locale-gen $LC_ALL && \ chown --quiet -R zabbix:root /etc/zabbix && \ apt-get ${APT_FLAGS_COMMON} update && \ apt-get ${APT_FLAGS_PERSISTENT} install \ - openjdk-7-jre-headless && \ + openjdk-8-jre-headless && \ apt-get ${APT_FLAGS_COMMON} autoremove && \ apt-get ${APT_FLAGS_COMMON} clean && \ rm -rf /var/lib/apt/lists/* @@ -55,7 +57,7 @@ RUN apt-get ${APT_FLAGS_COMMON} update && \ automake \ libc6-dev \ make \ - openjdk-7-jdk \ + openjdk-8-jdk \ pkg-config \ subversion \ gcc && \ @@ -85,7 +87,7 @@ RUN apt-get ${APT_FLAGS_COMMON} update && \ automake \ libc6-dev \ make \ - openjdk-7-jdk \ + openjdk-8-jdk \ pkg-config \ subversion \ gcc && \ diff --git a/java-gateway/ubuntu/README.md b/java-gateway/ubuntu/README.md index d04f7a9f3..f507be718 100644 --- a/java-gateway/ubuntu/README.md +++ b/java-gateway/ubuntu/README.md @@ -14,7 +14,7 @@ Zabbix Java Gateway performs native support for monitoring JMX applications. Jav # Zabbix Java Gateway images -These are the only official Zabbix Java Gateway Docker images. They are based on Alpine Linux v3.4, Ubuntu 14.04 (trusty) and CentOS 7 images. The available versions of Zabbix Java Gateway are: +These are the only official Zabbix Java Gateway Docker images. They are based on Alpine Linux v3.4, Ubuntu 18.04 (bionic) and CentOS 7 images. The available versions of Zabbix Java Gateway are: Zabbix Java Gateway 3.0 (tags: alpine-3.0-latest, ubuntu-3.0-latest, centos-3.0-latest) Zabbix Java Gateway 3.0.* (tags: alpine-3.0.*, ubuntu-3.0.*, centos-3.0.*) diff --git a/java-gateway/ubuntu/docker-entrypoint.sh b/java-gateway/ubuntu/docker-entrypoint.sh index b77cc0b57..bd3a9ab50 100755 --- a/java-gateway/ubuntu/docker-entrypoint.sh +++ b/java-gateway/ubuntu/docker-entrypoint.sh @@ -593,6 +593,7 @@ prepare_web_server_nginx() { fi ln -sf /dev/fd/2 /var/log/php5-fpm.log + ln -sf /dev/fd/2 /var/log/php7.2-fpm.log } stop_databases() { @@ -845,6 +846,10 @@ prepare_zbx_web_config() { PHP_CONFIG_FILE="/etc/php.d/99-zabbix.ini" elif [ -f "/etc/php7/conf.d/99-zabbix.ini" ]; then PHP_CONFIG_FILE="/etc/php7/conf.d/99-zabbix.ini" + elif [ -f "/etc/php/7.2/fpm/conf.d/99-zabbix.ini" ]; then + PHP_CONFIG_FILE="/etc/php/7.2/fpm/conf.d/99-zabbix.ini" + elif [ -f "/etc/php/7.2/apache2/conf.d/99-zabbix.ini" ]; then + PHP_CONFIG_FILE="/etc/php/7.2/apache2/conf.d/99-zabbix.ini" fi if [ -n "$PHP_CONFIG_FILE" ]; then diff --git a/proxy-mysql/alpine/README.md b/proxy-mysql/alpine/README.md index a54e04d35..2d0b754dc 100644 --- a/proxy-mysql/alpine/README.md +++ b/proxy-mysql/alpine/README.md @@ -14,7 +14,7 @@ Zabbix proxy is a process that may collect monitoring data from one or more moni # Zabbix proxy images -These are the only official Zabbix proxy Docker images. They are based on Alpine Linux v3.4, Ubuntu 14.04 (trusty) and CentOS 7 images. The available versions of Zabbix proxy are: +These are the only official Zabbix proxy Docker images. They are based on Alpine Linux v3.4, Ubuntu 18.04 (bionic) and CentOS 7 images. The available versions of Zabbix proxy are: Zabbix proxy 3.0 (tags: alpine-3.0-latest, ubuntu-3.0-latest, centos-3.0-latest) Zabbix proxy 3.0.* (tags: alpine-3.0.*, ubuntu-3.0.*, centos-3.0.*) diff --git a/proxy-mysql/alpine/docker-entrypoint.sh b/proxy-mysql/alpine/docker-entrypoint.sh index b77cc0b57..bd3a9ab50 100755 --- a/proxy-mysql/alpine/docker-entrypoint.sh +++ b/proxy-mysql/alpine/docker-entrypoint.sh @@ -593,6 +593,7 @@ prepare_web_server_nginx() { fi ln -sf /dev/fd/2 /var/log/php5-fpm.log + ln -sf /dev/fd/2 /var/log/php7.2-fpm.log } stop_databases() { @@ -845,6 +846,10 @@ prepare_zbx_web_config() { PHP_CONFIG_FILE="/etc/php.d/99-zabbix.ini" elif [ -f "/etc/php7/conf.d/99-zabbix.ini" ]; then PHP_CONFIG_FILE="/etc/php7/conf.d/99-zabbix.ini" + elif [ -f "/etc/php/7.2/fpm/conf.d/99-zabbix.ini" ]; then + PHP_CONFIG_FILE="/etc/php/7.2/fpm/conf.d/99-zabbix.ini" + elif [ -f "/etc/php/7.2/apache2/conf.d/99-zabbix.ini" ]; then + PHP_CONFIG_FILE="/etc/php/7.2/apache2/conf.d/99-zabbix.ini" fi if [ -n "$PHP_CONFIG_FILE" ]; then diff --git a/proxy-mysql/centos/README.md b/proxy-mysql/centos/README.md index a54e04d35..2d0b754dc 100644 --- a/proxy-mysql/centos/README.md +++ b/proxy-mysql/centos/README.md @@ -14,7 +14,7 @@ Zabbix proxy is a process that may collect monitoring data from one or more moni # Zabbix proxy images -These are the only official Zabbix proxy Docker images. They are based on Alpine Linux v3.4, Ubuntu 14.04 (trusty) and CentOS 7 images. The available versions of Zabbix proxy are: +These are the only official Zabbix proxy Docker images. They are based on Alpine Linux v3.4, Ubuntu 18.04 (bionic) and CentOS 7 images. The available versions of Zabbix proxy are: Zabbix proxy 3.0 (tags: alpine-3.0-latest, ubuntu-3.0-latest, centos-3.0-latest) Zabbix proxy 3.0.* (tags: alpine-3.0.*, ubuntu-3.0.*, centos-3.0.*) diff --git a/proxy-mysql/centos/docker-entrypoint.sh b/proxy-mysql/centos/docker-entrypoint.sh index b77cc0b57..bd3a9ab50 100755 --- a/proxy-mysql/centos/docker-entrypoint.sh +++ b/proxy-mysql/centos/docker-entrypoint.sh @@ -593,6 +593,7 @@ prepare_web_server_nginx() { fi ln -sf /dev/fd/2 /var/log/php5-fpm.log + ln -sf /dev/fd/2 /var/log/php7.2-fpm.log } stop_databases() { @@ -845,6 +846,10 @@ prepare_zbx_web_config() { PHP_CONFIG_FILE="/etc/php.d/99-zabbix.ini" elif [ -f "/etc/php7/conf.d/99-zabbix.ini" ]; then PHP_CONFIG_FILE="/etc/php7/conf.d/99-zabbix.ini" + elif [ -f "/etc/php/7.2/fpm/conf.d/99-zabbix.ini" ]; then + PHP_CONFIG_FILE="/etc/php/7.2/fpm/conf.d/99-zabbix.ini" + elif [ -f "/etc/php/7.2/apache2/conf.d/99-zabbix.ini" ]; then + PHP_CONFIG_FILE="/etc/php/7.2/apache2/conf.d/99-zabbix.ini" fi if [ -n "$PHP_CONFIG_FILE" ]; then diff --git a/proxy-mysql/ubuntu/Dockerfile b/proxy-mysql/ubuntu/Dockerfile index 41be51b60..49805a22f 100644 --- a/proxy-mysql/ubuntu/Dockerfile +++ b/proxy-mysql/ubuntu/Dockerfile @@ -1,4 +1,4 @@ -FROM ubuntu:trusty +FROM ubuntu:bionic LABEL maintainer="Alexey Pustovalov " ARG BUILD_DATE @@ -23,10 +23,10 @@ LABEL org.label-schema.name="zabbix-${ZBX_TYPE}-${ZBX_DB_TYPE}-ubuntu" \ STOPSIGNAL SIGTERM -RUN locale-gen $LC_ALL && \ +RUN apt-get ${APT_FLAGS_COMMON} update && \ + apt-get ${APT_FLAGS_PERSISTENT} install locales && \ + locale-gen $LC_ALL && \ echo "#!/bin/sh\nexit 0" > /usr/sbin/policy-rc.d && \ - DISTRIB_CODENAME=$(/bin/bash -c 'source /etc/lsb-release && echo $DISTRIB_CODENAME') && \ - echo "deb http://us.archive.ubuntu.com/ubuntu/ $DISTRIB_CODENAME multiverse" >> /etc/apt/sources.list && \ addgroup --system --quiet zabbix && \ adduser --quiet \ --system --disabled-login \ @@ -50,14 +50,14 @@ RUN locale-gen $LC_ALL && \ apt-get ${APT_FLAGS_COMMON} update && \ apt-get ${APT_FLAGS_PERSISTENT} install \ fping \ - libcurl3 \ - libevent-2.0 \ - libmysqlclient18 \ + libcurl4 \ + libevent-2.1 \ + libmysqlclient20 \ libopenipmi0 \ libpcre3 \ libsnmp30 \ libssh2-1 \ - libssl1.0.0 \ + libssl1.1 \ libxml2 \ mysql-client \ snmp-mibs-downloader \ diff --git a/proxy-mysql/ubuntu/README.md b/proxy-mysql/ubuntu/README.md index a54e04d35..2d0b754dc 100644 --- a/proxy-mysql/ubuntu/README.md +++ b/proxy-mysql/ubuntu/README.md @@ -14,7 +14,7 @@ Zabbix proxy is a process that may collect monitoring data from one or more moni # Zabbix proxy images -These are the only official Zabbix proxy Docker images. They are based on Alpine Linux v3.4, Ubuntu 14.04 (trusty) and CentOS 7 images. The available versions of Zabbix proxy are: +These are the only official Zabbix proxy Docker images. They are based on Alpine Linux v3.4, Ubuntu 18.04 (bionic) and CentOS 7 images. The available versions of Zabbix proxy are: Zabbix proxy 3.0 (tags: alpine-3.0-latest, ubuntu-3.0-latest, centos-3.0-latest) Zabbix proxy 3.0.* (tags: alpine-3.0.*, ubuntu-3.0.*, centos-3.0.*) diff --git a/proxy-mysql/ubuntu/docker-entrypoint.sh b/proxy-mysql/ubuntu/docker-entrypoint.sh index b77cc0b57..bd3a9ab50 100755 --- a/proxy-mysql/ubuntu/docker-entrypoint.sh +++ b/proxy-mysql/ubuntu/docker-entrypoint.sh @@ -593,6 +593,7 @@ prepare_web_server_nginx() { fi ln -sf /dev/fd/2 /var/log/php5-fpm.log + ln -sf /dev/fd/2 /var/log/php7.2-fpm.log } stop_databases() { @@ -845,6 +846,10 @@ prepare_zbx_web_config() { PHP_CONFIG_FILE="/etc/php.d/99-zabbix.ini" elif [ -f "/etc/php7/conf.d/99-zabbix.ini" ]; then PHP_CONFIG_FILE="/etc/php7/conf.d/99-zabbix.ini" + elif [ -f "/etc/php/7.2/fpm/conf.d/99-zabbix.ini" ]; then + PHP_CONFIG_FILE="/etc/php/7.2/fpm/conf.d/99-zabbix.ini" + elif [ -f "/etc/php/7.2/apache2/conf.d/99-zabbix.ini" ]; then + PHP_CONFIG_FILE="/etc/php/7.2/apache2/conf.d/99-zabbix.ini" fi if [ -n "$PHP_CONFIG_FILE" ]; then diff --git a/proxy-sqlite3/alpine/README.md b/proxy-sqlite3/alpine/README.md index a8dd8ead8..0962e4ffc 100644 --- a/proxy-sqlite3/alpine/README.md +++ b/proxy-sqlite3/alpine/README.md @@ -14,7 +14,7 @@ Zabbix proxy is a process that may collect monitoring data from one or more moni # Zabbix proxy images -These are the only official Zabbix proxy Docker images. They are based on Alpine Linux v3.4, Ubuntu 14.04 (trusty) and CentOS 7 images. The available versions of Zabbix proxy are: +These are the only official Zabbix proxy Docker images. They are based on Alpine Linux v3.4, Ubuntu 18.04 (bionic) and CentOS 7 images. The available versions of Zabbix proxy are: Zabbix proxy 3.0 (tags: alpine-3.0-latest, ubuntu-3.0-latest, centos-3.0-latest) Zabbix proxy 3.0.* (tags: alpine-3.0.*, ubuntu-3.0.*, centos-3.0.*) diff --git a/proxy-sqlite3/alpine/docker-entrypoint.sh b/proxy-sqlite3/alpine/docker-entrypoint.sh index b77cc0b57..bd3a9ab50 100755 --- a/proxy-sqlite3/alpine/docker-entrypoint.sh +++ b/proxy-sqlite3/alpine/docker-entrypoint.sh @@ -593,6 +593,7 @@ prepare_web_server_nginx() { fi ln -sf /dev/fd/2 /var/log/php5-fpm.log + ln -sf /dev/fd/2 /var/log/php7.2-fpm.log } stop_databases() { @@ -845,6 +846,10 @@ prepare_zbx_web_config() { PHP_CONFIG_FILE="/etc/php.d/99-zabbix.ini" elif [ -f "/etc/php7/conf.d/99-zabbix.ini" ]; then PHP_CONFIG_FILE="/etc/php7/conf.d/99-zabbix.ini" + elif [ -f "/etc/php/7.2/fpm/conf.d/99-zabbix.ini" ]; then + PHP_CONFIG_FILE="/etc/php/7.2/fpm/conf.d/99-zabbix.ini" + elif [ -f "/etc/php/7.2/apache2/conf.d/99-zabbix.ini" ]; then + PHP_CONFIG_FILE="/etc/php/7.2/apache2/conf.d/99-zabbix.ini" fi if [ -n "$PHP_CONFIG_FILE" ]; then diff --git a/proxy-sqlite3/centos/README.md b/proxy-sqlite3/centos/README.md index a8dd8ead8..0962e4ffc 100644 --- a/proxy-sqlite3/centos/README.md +++ b/proxy-sqlite3/centos/README.md @@ -14,7 +14,7 @@ Zabbix proxy is a process that may collect monitoring data from one or more moni # Zabbix proxy images -These are the only official Zabbix proxy Docker images. They are based on Alpine Linux v3.4, Ubuntu 14.04 (trusty) and CentOS 7 images. The available versions of Zabbix proxy are: +These are the only official Zabbix proxy Docker images. They are based on Alpine Linux v3.4, Ubuntu 18.04 (bionic) and CentOS 7 images. The available versions of Zabbix proxy are: Zabbix proxy 3.0 (tags: alpine-3.0-latest, ubuntu-3.0-latest, centos-3.0-latest) Zabbix proxy 3.0.* (tags: alpine-3.0.*, ubuntu-3.0.*, centos-3.0.*) diff --git a/proxy-sqlite3/centos/docker-entrypoint.sh b/proxy-sqlite3/centos/docker-entrypoint.sh index b77cc0b57..bd3a9ab50 100755 --- a/proxy-sqlite3/centos/docker-entrypoint.sh +++ b/proxy-sqlite3/centos/docker-entrypoint.sh @@ -593,6 +593,7 @@ prepare_web_server_nginx() { fi ln -sf /dev/fd/2 /var/log/php5-fpm.log + ln -sf /dev/fd/2 /var/log/php7.2-fpm.log } stop_databases() { @@ -845,6 +846,10 @@ prepare_zbx_web_config() { PHP_CONFIG_FILE="/etc/php.d/99-zabbix.ini" elif [ -f "/etc/php7/conf.d/99-zabbix.ini" ]; then PHP_CONFIG_FILE="/etc/php7/conf.d/99-zabbix.ini" + elif [ -f "/etc/php/7.2/fpm/conf.d/99-zabbix.ini" ]; then + PHP_CONFIG_FILE="/etc/php/7.2/fpm/conf.d/99-zabbix.ini" + elif [ -f "/etc/php/7.2/apache2/conf.d/99-zabbix.ini" ]; then + PHP_CONFIG_FILE="/etc/php/7.2/apache2/conf.d/99-zabbix.ini" fi if [ -n "$PHP_CONFIG_FILE" ]; then diff --git a/proxy-sqlite3/ubuntu/Dockerfile b/proxy-sqlite3/ubuntu/Dockerfile index 9164a18ec..894868c80 100644 --- a/proxy-sqlite3/ubuntu/Dockerfile +++ b/proxy-sqlite3/ubuntu/Dockerfile @@ -1,4 +1,4 @@ -FROM ubuntu:trusty +FROM ubuntu:bionic LABEL maintainer="Alexey Pustovalov " ARG BUILD_DATE @@ -22,10 +22,10 @@ LABEL org.label-schema.name="zabbix-${ZBX_TYPE}-${ZBX_DB_TYPE}-ubuntu" \ STOPSIGNAL SIGTERM -RUN locale-gen $LC_ALL && \ +RUN apt-get ${APT_FLAGS_COMMON} update && \ + apt-get ${APT_FLAGS_PERSISTENT} install locales && \ + locale-gen $LC_ALL && \ echo "#!/bin/sh\nexit 0" > /usr/sbin/policy-rc.d && \ - DISTRIB_CODENAME=$(/bin/bash -c 'source /etc/lsb-release && echo $DISTRIB_CODENAME') && \ - echo "deb http://us.archive.ubuntu.com/ubuntu/ $DISTRIB_CODENAME multiverse" >> /etc/apt/sources.list && \ addgroup --system --quiet zabbix && \ adduser --quiet \ --system --disabled-login \ @@ -48,14 +48,14 @@ RUN locale-gen $LC_ALL && \ apt-get ${APT_FLAGS_COMMON} update && \ apt-get ${APT_FLAGS_PERSISTENT} install \ fping \ - libcurl3 \ - libevent-2.0 \ + libcurl4 \ + libevent-2.1 \ libopenipmi0 \ libpcre3 \ libsnmp30 \ libsqlite3-0 \ libssh2-1 \ - libssl1.0.0 \ + libssl1.1 \ libxml2 \ snmp-mibs-downloader \ unixodbc && \ diff --git a/proxy-sqlite3/ubuntu/README.md b/proxy-sqlite3/ubuntu/README.md index a8dd8ead8..0962e4ffc 100644 --- a/proxy-sqlite3/ubuntu/README.md +++ b/proxy-sqlite3/ubuntu/README.md @@ -14,7 +14,7 @@ Zabbix proxy is a process that may collect monitoring data from one or more moni # Zabbix proxy images -These are the only official Zabbix proxy Docker images. They are based on Alpine Linux v3.4, Ubuntu 14.04 (trusty) and CentOS 7 images. The available versions of Zabbix proxy are: +These are the only official Zabbix proxy Docker images. They are based on Alpine Linux v3.4, Ubuntu 18.04 (bionic) and CentOS 7 images. The available versions of Zabbix proxy are: Zabbix proxy 3.0 (tags: alpine-3.0-latest, ubuntu-3.0-latest, centos-3.0-latest) Zabbix proxy 3.0.* (tags: alpine-3.0.*, ubuntu-3.0.*, centos-3.0.*) diff --git a/proxy-sqlite3/ubuntu/docker-entrypoint.sh b/proxy-sqlite3/ubuntu/docker-entrypoint.sh index b77cc0b57..bd3a9ab50 100755 --- a/proxy-sqlite3/ubuntu/docker-entrypoint.sh +++ b/proxy-sqlite3/ubuntu/docker-entrypoint.sh @@ -593,6 +593,7 @@ prepare_web_server_nginx() { fi ln -sf /dev/fd/2 /var/log/php5-fpm.log + ln -sf /dev/fd/2 /var/log/php7.2-fpm.log } stop_databases() { @@ -845,6 +846,10 @@ prepare_zbx_web_config() { PHP_CONFIG_FILE="/etc/php.d/99-zabbix.ini" elif [ -f "/etc/php7/conf.d/99-zabbix.ini" ]; then PHP_CONFIG_FILE="/etc/php7/conf.d/99-zabbix.ini" + elif [ -f "/etc/php/7.2/fpm/conf.d/99-zabbix.ini" ]; then + PHP_CONFIG_FILE="/etc/php/7.2/fpm/conf.d/99-zabbix.ini" + elif [ -f "/etc/php/7.2/apache2/conf.d/99-zabbix.ini" ]; then + PHP_CONFIG_FILE="/etc/php/7.2/apache2/conf.d/99-zabbix.ini" fi if [ -n "$PHP_CONFIG_FILE" ]; then diff --git a/server-mysql/alpine/README.md b/server-mysql/alpine/README.md index ddf26634b..0f0038e27 100644 --- a/server-mysql/alpine/README.md +++ b/server-mysql/alpine/README.md @@ -16,7 +16,7 @@ The server performs the polling and trapping of data, it calculates triggers, se # Zabbix server images -These are the only official Zabbix server Docker images. They are based on Alpine Linux v3.4, Ubuntu 14.04 (trusty) and CentOS 7 images. The available versions of Zabbix server are: +These are the only official Zabbix server Docker images. They are based on Alpine Linux v3.4, Ubuntu 18.04 (bionic) and CentOS 7 images. The available versions of Zabbix server are: Zabbix server 3.0 (tags: alpine-3.0-latest, ubuntu-3.0-latest, centos-3.0-latest) Zabbix server 3.0.* (tags: alpine-3.0.*, ubuntu-3.0.*, centos-3.0.*) diff --git a/server-mysql/alpine/docker-entrypoint.sh b/server-mysql/alpine/docker-entrypoint.sh index b77cc0b57..bd3a9ab50 100755 --- a/server-mysql/alpine/docker-entrypoint.sh +++ b/server-mysql/alpine/docker-entrypoint.sh @@ -593,6 +593,7 @@ prepare_web_server_nginx() { fi ln -sf /dev/fd/2 /var/log/php5-fpm.log + ln -sf /dev/fd/2 /var/log/php7.2-fpm.log } stop_databases() { @@ -845,6 +846,10 @@ prepare_zbx_web_config() { PHP_CONFIG_FILE="/etc/php.d/99-zabbix.ini" elif [ -f "/etc/php7/conf.d/99-zabbix.ini" ]; then PHP_CONFIG_FILE="/etc/php7/conf.d/99-zabbix.ini" + elif [ -f "/etc/php/7.2/fpm/conf.d/99-zabbix.ini" ]; then + PHP_CONFIG_FILE="/etc/php/7.2/fpm/conf.d/99-zabbix.ini" + elif [ -f "/etc/php/7.2/apache2/conf.d/99-zabbix.ini" ]; then + PHP_CONFIG_FILE="/etc/php/7.2/apache2/conf.d/99-zabbix.ini" fi if [ -n "$PHP_CONFIG_FILE" ]; then diff --git a/server-mysql/centos/README.md b/server-mysql/centos/README.md index ddf26634b..0f0038e27 100644 --- a/server-mysql/centos/README.md +++ b/server-mysql/centos/README.md @@ -16,7 +16,7 @@ The server performs the polling and trapping of data, it calculates triggers, se # Zabbix server images -These are the only official Zabbix server Docker images. They are based on Alpine Linux v3.4, Ubuntu 14.04 (trusty) and CentOS 7 images. The available versions of Zabbix server are: +These are the only official Zabbix server Docker images. They are based on Alpine Linux v3.4, Ubuntu 18.04 (bionic) and CentOS 7 images. The available versions of Zabbix server are: Zabbix server 3.0 (tags: alpine-3.0-latest, ubuntu-3.0-latest, centos-3.0-latest) Zabbix server 3.0.* (tags: alpine-3.0.*, ubuntu-3.0.*, centos-3.0.*) diff --git a/server-mysql/centos/docker-entrypoint.sh b/server-mysql/centos/docker-entrypoint.sh index b77cc0b57..bd3a9ab50 100755 --- a/server-mysql/centos/docker-entrypoint.sh +++ b/server-mysql/centos/docker-entrypoint.sh @@ -593,6 +593,7 @@ prepare_web_server_nginx() { fi ln -sf /dev/fd/2 /var/log/php5-fpm.log + ln -sf /dev/fd/2 /var/log/php7.2-fpm.log } stop_databases() { @@ -845,6 +846,10 @@ prepare_zbx_web_config() { PHP_CONFIG_FILE="/etc/php.d/99-zabbix.ini" elif [ -f "/etc/php7/conf.d/99-zabbix.ini" ]; then PHP_CONFIG_FILE="/etc/php7/conf.d/99-zabbix.ini" + elif [ -f "/etc/php/7.2/fpm/conf.d/99-zabbix.ini" ]; then + PHP_CONFIG_FILE="/etc/php/7.2/fpm/conf.d/99-zabbix.ini" + elif [ -f "/etc/php/7.2/apache2/conf.d/99-zabbix.ini" ]; then + PHP_CONFIG_FILE="/etc/php/7.2/apache2/conf.d/99-zabbix.ini" fi if [ -n "$PHP_CONFIG_FILE" ]; then diff --git a/server-mysql/ubuntu/Dockerfile b/server-mysql/ubuntu/Dockerfile index 978c232fd..9dec9a943 100644 --- a/server-mysql/ubuntu/Dockerfile +++ b/server-mysql/ubuntu/Dockerfile @@ -1,4 +1,4 @@ -FROM ubuntu:trusty +FROM ubuntu:bionic LABEL maintainer "Alexey Pustovalov " ARG BUILD_DATE @@ -22,10 +22,10 @@ LABEL org.label-schema.name="zabbix-${ZBX_TYPE}-${ZBX_DB_TYPE}-ubuntu" \ STOPSIGNAL SIGTERM -RUN locale-gen $LC_ALL && \ +RUN apt-get ${APT_FLAGS_COMMON} update && \ + apt-get ${APT_FLAGS_PERSISTENT} install locales && \ + locale-gen $LC_ALL && \ echo "#!/bin/sh\nexit 0" > /usr/sbin/policy-rc.d && \ - DISTRIB_CODENAME=$(/bin/bash -c 'source /etc/lsb-release && echo $DISTRIB_CODENAME') && \ - echo "deb http://us.archive.ubuntu.com/ubuntu/ $DISTRIB_CODENAME multiverse" >> /etc/apt/sources.list && \ addgroup --system --quiet zabbix && \ adduser --quiet \ --system --disabled-login \ @@ -51,15 +51,15 @@ RUN locale-gen $LC_ALL && \ apt-get ${APT_FLAGS_COMMON} update && \ apt-get ${APT_FLAGS_PERSISTENT} install \ fping \ - libcurl3 \ - libevent-2.0 \ + libcurl4 \ + libevent-2.1 \ libiksemel3 \ - libmysqlclient18 \ + libmysqlclient20 \ libopenipmi0 \ libpcre3 \ libsnmp30 \ libssh2-1 \ - libssl1.0.0 \ + libssl1.1 \ libxml2 \ mysql-client \ snmp-mibs-downloader \ diff --git a/server-mysql/ubuntu/README.md b/server-mysql/ubuntu/README.md index ddf26634b..0f0038e27 100644 --- a/server-mysql/ubuntu/README.md +++ b/server-mysql/ubuntu/README.md @@ -16,7 +16,7 @@ The server performs the polling and trapping of data, it calculates triggers, se # Zabbix server images -These are the only official Zabbix server Docker images. They are based on Alpine Linux v3.4, Ubuntu 14.04 (trusty) and CentOS 7 images. The available versions of Zabbix server are: +These are the only official Zabbix server Docker images. They are based on Alpine Linux v3.4, Ubuntu 18.04 (bionic) and CentOS 7 images. The available versions of Zabbix server are: Zabbix server 3.0 (tags: alpine-3.0-latest, ubuntu-3.0-latest, centos-3.0-latest) Zabbix server 3.0.* (tags: alpine-3.0.*, ubuntu-3.0.*, centos-3.0.*) diff --git a/server-mysql/ubuntu/docker-entrypoint.sh b/server-mysql/ubuntu/docker-entrypoint.sh index b77cc0b57..bd3a9ab50 100755 --- a/server-mysql/ubuntu/docker-entrypoint.sh +++ b/server-mysql/ubuntu/docker-entrypoint.sh @@ -593,6 +593,7 @@ prepare_web_server_nginx() { fi ln -sf /dev/fd/2 /var/log/php5-fpm.log + ln -sf /dev/fd/2 /var/log/php7.2-fpm.log } stop_databases() { @@ -845,6 +846,10 @@ prepare_zbx_web_config() { PHP_CONFIG_FILE="/etc/php.d/99-zabbix.ini" elif [ -f "/etc/php7/conf.d/99-zabbix.ini" ]; then PHP_CONFIG_FILE="/etc/php7/conf.d/99-zabbix.ini" + elif [ -f "/etc/php/7.2/fpm/conf.d/99-zabbix.ini" ]; then + PHP_CONFIG_FILE="/etc/php/7.2/fpm/conf.d/99-zabbix.ini" + elif [ -f "/etc/php/7.2/apache2/conf.d/99-zabbix.ini" ]; then + PHP_CONFIG_FILE="/etc/php/7.2/apache2/conf.d/99-zabbix.ini" fi if [ -n "$PHP_CONFIG_FILE" ]; then diff --git a/server-pgsql/alpine/README.md b/server-pgsql/alpine/README.md index de99b700f..f9fbe8077 100644 --- a/server-pgsql/alpine/README.md +++ b/server-pgsql/alpine/README.md @@ -16,7 +16,7 @@ The server performs the polling and trapping of data, it calculates triggers, se # Zabbix server images -These are the only official Zabbix server Docker images. They are based on Alpine Linux v3.4, Ubuntu 14.04 (trusty) and CentOS 7 images. The available versions of Zabbix server are: +These are the only official Zabbix server Docker images. They are based on Alpine Linux v3.4, Ubuntu 18.04 (bionic) and CentOS 7 images. The available versions of Zabbix server are: Zabbix server 3.0 (tags: alpine-3.0-latest, ubuntu-3.0-latest, centos-3.0-latest) Zabbix server 3.0.* (tags: alpine-3.0.*, ubuntu-3.0.*, centos-3.0.*) diff --git a/server-pgsql/alpine/docker-entrypoint.sh b/server-pgsql/alpine/docker-entrypoint.sh index b77cc0b57..bd3a9ab50 100755 --- a/server-pgsql/alpine/docker-entrypoint.sh +++ b/server-pgsql/alpine/docker-entrypoint.sh @@ -593,6 +593,7 @@ prepare_web_server_nginx() { fi ln -sf /dev/fd/2 /var/log/php5-fpm.log + ln -sf /dev/fd/2 /var/log/php7.2-fpm.log } stop_databases() { @@ -845,6 +846,10 @@ prepare_zbx_web_config() { PHP_CONFIG_FILE="/etc/php.d/99-zabbix.ini" elif [ -f "/etc/php7/conf.d/99-zabbix.ini" ]; then PHP_CONFIG_FILE="/etc/php7/conf.d/99-zabbix.ini" + elif [ -f "/etc/php/7.2/fpm/conf.d/99-zabbix.ini" ]; then + PHP_CONFIG_FILE="/etc/php/7.2/fpm/conf.d/99-zabbix.ini" + elif [ -f "/etc/php/7.2/apache2/conf.d/99-zabbix.ini" ]; then + PHP_CONFIG_FILE="/etc/php/7.2/apache2/conf.d/99-zabbix.ini" fi if [ -n "$PHP_CONFIG_FILE" ]; then diff --git a/server-pgsql/centos/README.md b/server-pgsql/centos/README.md index de99b700f..f9fbe8077 100644 --- a/server-pgsql/centos/README.md +++ b/server-pgsql/centos/README.md @@ -16,7 +16,7 @@ The server performs the polling and trapping of data, it calculates triggers, se # Zabbix server images -These are the only official Zabbix server Docker images. They are based on Alpine Linux v3.4, Ubuntu 14.04 (trusty) and CentOS 7 images. The available versions of Zabbix server are: +These are the only official Zabbix server Docker images. They are based on Alpine Linux v3.4, Ubuntu 18.04 (bionic) and CentOS 7 images. The available versions of Zabbix server are: Zabbix server 3.0 (tags: alpine-3.0-latest, ubuntu-3.0-latest, centos-3.0-latest) Zabbix server 3.0.* (tags: alpine-3.0.*, ubuntu-3.0.*, centos-3.0.*) diff --git a/server-pgsql/centos/docker-entrypoint.sh b/server-pgsql/centos/docker-entrypoint.sh index b77cc0b57..bd3a9ab50 100755 --- a/server-pgsql/centos/docker-entrypoint.sh +++ b/server-pgsql/centos/docker-entrypoint.sh @@ -593,6 +593,7 @@ prepare_web_server_nginx() { fi ln -sf /dev/fd/2 /var/log/php5-fpm.log + ln -sf /dev/fd/2 /var/log/php7.2-fpm.log } stop_databases() { @@ -845,6 +846,10 @@ prepare_zbx_web_config() { PHP_CONFIG_FILE="/etc/php.d/99-zabbix.ini" elif [ -f "/etc/php7/conf.d/99-zabbix.ini" ]; then PHP_CONFIG_FILE="/etc/php7/conf.d/99-zabbix.ini" + elif [ -f "/etc/php/7.2/fpm/conf.d/99-zabbix.ini" ]; then + PHP_CONFIG_FILE="/etc/php/7.2/fpm/conf.d/99-zabbix.ini" + elif [ -f "/etc/php/7.2/apache2/conf.d/99-zabbix.ini" ]; then + PHP_CONFIG_FILE="/etc/php/7.2/apache2/conf.d/99-zabbix.ini" fi if [ -n "$PHP_CONFIG_FILE" ]; then diff --git a/server-pgsql/ubuntu/Dockerfile b/server-pgsql/ubuntu/Dockerfile index 121526c7c..885a060a7 100644 --- a/server-pgsql/ubuntu/Dockerfile +++ b/server-pgsql/ubuntu/Dockerfile @@ -1,4 +1,4 @@ -FROM ubuntu:trusty +FROM ubuntu:bionic LABEL maintainer "Alexey Pustovalov " ARG BUILD_DATE @@ -22,10 +22,10 @@ LABEL org.label-schema.name="zabbix-${ZBX_TYPE}-${ZBX_DB_TYPE}-ubuntu" \ STOPSIGNAL SIGTERM -RUN locale-gen $LC_ALL && \ +RUN apt-get ${APT_FLAGS_COMMON} update && \ + apt-get ${APT_FLAGS_PERSISTENT} install locales && \ + locale-gen $LC_ALL && \ echo "#!/bin/sh\nexit 0" > /usr/sbin/policy-rc.d && \ - DISTRIB_CODENAME=$(/bin/bash -c 'source /etc/lsb-release && echo $DISTRIB_CODENAME') && \ - echo "deb http://us.archive.ubuntu.com/ubuntu/ $DISTRIB_CODENAME multiverse" >> /etc/apt/sources.list && \ addgroup --system --quiet zabbix && \ adduser --quiet \ --system --disabled-login \ @@ -51,15 +51,15 @@ RUN locale-gen $LC_ALL && \ apt-get ${APT_FLAGS_COMMON} update && \ apt-get ${APT_FLAGS_PERSISTENT} install \ fping \ - libcurl3 \ - libevent-2.0 \ + libcurl4 \ + libevent-2.1 \ libiksemel3 \ libopenipmi0 \ libpcre3 \ libpq5 \ libsnmp30 \ libssh2-1 \ - libssl1.0.0 \ + libssl1.1 \ libxml2 \ postgresql-client \ snmp-mibs-downloader \ diff --git a/server-pgsql/ubuntu/README.md b/server-pgsql/ubuntu/README.md index de99b700f..f9fbe8077 100644 --- a/server-pgsql/ubuntu/README.md +++ b/server-pgsql/ubuntu/README.md @@ -16,7 +16,7 @@ The server performs the polling and trapping of data, it calculates triggers, se # Zabbix server images -These are the only official Zabbix server Docker images. They are based on Alpine Linux v3.4, Ubuntu 14.04 (trusty) and CentOS 7 images. The available versions of Zabbix server are: +These are the only official Zabbix server Docker images. They are based on Alpine Linux v3.4, Ubuntu 18.04 (bionic) and CentOS 7 images. The available versions of Zabbix server are: Zabbix server 3.0 (tags: alpine-3.0-latest, ubuntu-3.0-latest, centos-3.0-latest) Zabbix server 3.0.* (tags: alpine-3.0.*, ubuntu-3.0.*, centos-3.0.*) diff --git a/server-pgsql/ubuntu/docker-entrypoint.sh b/server-pgsql/ubuntu/docker-entrypoint.sh index b77cc0b57..bd3a9ab50 100755 --- a/server-pgsql/ubuntu/docker-entrypoint.sh +++ b/server-pgsql/ubuntu/docker-entrypoint.sh @@ -593,6 +593,7 @@ prepare_web_server_nginx() { fi ln -sf /dev/fd/2 /var/log/php5-fpm.log + ln -sf /dev/fd/2 /var/log/php7.2-fpm.log } stop_databases() { @@ -845,6 +846,10 @@ prepare_zbx_web_config() { PHP_CONFIG_FILE="/etc/php.d/99-zabbix.ini" elif [ -f "/etc/php7/conf.d/99-zabbix.ini" ]; then PHP_CONFIG_FILE="/etc/php7/conf.d/99-zabbix.ini" + elif [ -f "/etc/php/7.2/fpm/conf.d/99-zabbix.ini" ]; then + PHP_CONFIG_FILE="/etc/php/7.2/fpm/conf.d/99-zabbix.ini" + elif [ -f "/etc/php/7.2/apache2/conf.d/99-zabbix.ini" ]; then + PHP_CONFIG_FILE="/etc/php/7.2/apache2/conf.d/99-zabbix.ini" fi if [ -n "$PHP_CONFIG_FILE" ]; then diff --git a/snmptraps/alpine/README.md b/snmptraps/alpine/README.md index 51fa5bee2..59654efc4 100644 --- a/snmptraps/alpine/README.md +++ b/snmptraps/alpine/README.md @@ -14,7 +14,7 @@ The image is used to receive SNMP traps, store them to a log file and provide ac # Zabbix snmptraps images -These are the only official Zabbix snmptraps Docker images. They are based on Alpine Linux v3.4, Ubuntu 14.04 (trusty) and CentOS 7 images. The available versions of Zabbix snmptraps are: +These are the only official Zabbix snmptraps Docker images. They are based on Alpine Linux v3.4, Ubuntu 18.04 (bionic) and CentOS 7 images. The available versions of Zabbix snmptraps are: Zabbix snmptraps 3.0 (tags: alpine-3.0-latest, ubuntu-3.0-latest, centos-3.0-latest) Zabbix snmptraps 3.0.* (tags: alpine-3.0.*, ubuntu-3.0.*, centos-3.0.*) diff --git a/snmptraps/centos/README.md b/snmptraps/centos/README.md index 51fa5bee2..59654efc4 100644 --- a/snmptraps/centos/README.md +++ b/snmptraps/centos/README.md @@ -14,7 +14,7 @@ The image is used to receive SNMP traps, store them to a log file and provide ac # Zabbix snmptraps images -These are the only official Zabbix snmptraps Docker images. They are based on Alpine Linux v3.4, Ubuntu 14.04 (trusty) and CentOS 7 images. The available versions of Zabbix snmptraps are: +These are the only official Zabbix snmptraps Docker images. They are based on Alpine Linux v3.4, Ubuntu 18.04 (bionic) and CentOS 7 images. The available versions of Zabbix snmptraps are: Zabbix snmptraps 3.0 (tags: alpine-3.0-latest, ubuntu-3.0-latest, centos-3.0-latest) Zabbix snmptraps 3.0.* (tags: alpine-3.0.*, ubuntu-3.0.*, centos-3.0.*) diff --git a/snmptraps/ubuntu/Dockerfile b/snmptraps/ubuntu/Dockerfile index b9ae8fa20..39bd5a3ee 100644 --- a/snmptraps/ubuntu/Dockerfile +++ b/snmptraps/ubuntu/Dockerfile @@ -1,4 +1,4 @@ -FROM ubuntu:trusty +FROM ubuntu:bionic LABEL maintainer "Alexey Pustovalov " ARG BUILD_DATE @@ -33,10 +33,10 @@ STOPSIGNAL SIGTERM COPY ["snmptrapfmt_1.14+nmu1ubuntu2_amd64.deb", "/tmp/"] -RUN locale-gen $LC_ALL && \ +RUN apt-get ${APT_FLAGS_COMMON} update && \ + apt-get ${APT_FLAGS_PERSISTENT} install locales && \ + locale-gen $LC_ALL && \ echo "#!/bin/sh\nexit 0" > /usr/sbin/policy-rc.d && \ - DISTRIB_CODENAME=$(/bin/bash -c 'source /etc/lsb-release && echo $DISTRIB_CODENAME') && \ - echo "deb http://us.archive.ubuntu.com/ubuntu/ $DISTRIB_CODENAME multiverse" >> /etc/apt/sources.list && \ addgroup --system --quiet zabbix && \ adduser --quiet \ --system --disabled-login \ diff --git a/snmptraps/ubuntu/README.md b/snmptraps/ubuntu/README.md index 51fa5bee2..59654efc4 100644 --- a/snmptraps/ubuntu/README.md +++ b/snmptraps/ubuntu/README.md @@ -14,7 +14,7 @@ The image is used to receive SNMP traps, store them to a log file and provide ac # Zabbix snmptraps images -These are the only official Zabbix snmptraps Docker images. They are based on Alpine Linux v3.4, Ubuntu 14.04 (trusty) and CentOS 7 images. The available versions of Zabbix snmptraps are: +These are the only official Zabbix snmptraps Docker images. They are based on Alpine Linux v3.4, Ubuntu 18.04 (bionic) and CentOS 7 images. The available versions of Zabbix snmptraps are: Zabbix snmptraps 3.0 (tags: alpine-3.0-latest, ubuntu-3.0-latest, centos-3.0-latest) Zabbix snmptraps 3.0.* (tags: alpine-3.0.*, ubuntu-3.0.*, centos-3.0.*) diff --git a/web-apache-mysql/alpine/README.md b/web-apache-mysql/alpine/README.md index 976dea8eb..23bee9b96 100644 --- a/web-apache-mysql/alpine/README.md +++ b/web-apache-mysql/alpine/README.md @@ -14,7 +14,7 @@ Zabbix web interface is a part of Zabbix software. It is used to manage resource # Zabbix web interface images -These are the only official Zabbix web interface Docker images. They are based on Alpine Linux v3.4, Ubuntu 14.04 (trusty) and CentOS 7 images. The available versions of Zabbix web interface are: +These are the only official Zabbix web interface Docker images. They are based on Alpine Linux v3.4, Ubuntu 18.04 (bionic) and CentOS 7 images. The available versions of Zabbix web interface are: Zabbix web interface 3.0 (tags: alpine-3.0-latest, ubuntu-3.0-latest, centos-3.0-latest) Zabbix web interface 3.0.* (tags: alpine-3.0.*, ubuntu-3.0.*, centos-3.0.*) diff --git a/web-apache-mysql/alpine/docker-entrypoint.sh b/web-apache-mysql/alpine/docker-entrypoint.sh index b77cc0b57..bd3a9ab50 100755 --- a/web-apache-mysql/alpine/docker-entrypoint.sh +++ b/web-apache-mysql/alpine/docker-entrypoint.sh @@ -593,6 +593,7 @@ prepare_web_server_nginx() { fi ln -sf /dev/fd/2 /var/log/php5-fpm.log + ln -sf /dev/fd/2 /var/log/php7.2-fpm.log } stop_databases() { @@ -845,6 +846,10 @@ prepare_zbx_web_config() { PHP_CONFIG_FILE="/etc/php.d/99-zabbix.ini" elif [ -f "/etc/php7/conf.d/99-zabbix.ini" ]; then PHP_CONFIG_FILE="/etc/php7/conf.d/99-zabbix.ini" + elif [ -f "/etc/php/7.2/fpm/conf.d/99-zabbix.ini" ]; then + PHP_CONFIG_FILE="/etc/php/7.2/fpm/conf.d/99-zabbix.ini" + elif [ -f "/etc/php/7.2/apache2/conf.d/99-zabbix.ini" ]; then + PHP_CONFIG_FILE="/etc/php/7.2/apache2/conf.d/99-zabbix.ini" fi if [ -n "$PHP_CONFIG_FILE" ]; then diff --git a/web-apache-mysql/centos/README.md b/web-apache-mysql/centos/README.md index 976dea8eb..23bee9b96 100644 --- a/web-apache-mysql/centos/README.md +++ b/web-apache-mysql/centos/README.md @@ -14,7 +14,7 @@ Zabbix web interface is a part of Zabbix software. It is used to manage resource # Zabbix web interface images -These are the only official Zabbix web interface Docker images. They are based on Alpine Linux v3.4, Ubuntu 14.04 (trusty) and CentOS 7 images. The available versions of Zabbix web interface are: +These are the only official Zabbix web interface Docker images. They are based on Alpine Linux v3.4, Ubuntu 18.04 (bionic) and CentOS 7 images. The available versions of Zabbix web interface are: Zabbix web interface 3.0 (tags: alpine-3.0-latest, ubuntu-3.0-latest, centos-3.0-latest) Zabbix web interface 3.0.* (tags: alpine-3.0.*, ubuntu-3.0.*, centos-3.0.*) diff --git a/web-apache-mysql/centos/docker-entrypoint.sh b/web-apache-mysql/centos/docker-entrypoint.sh index b77cc0b57..bd3a9ab50 100755 --- a/web-apache-mysql/centos/docker-entrypoint.sh +++ b/web-apache-mysql/centos/docker-entrypoint.sh @@ -593,6 +593,7 @@ prepare_web_server_nginx() { fi ln -sf /dev/fd/2 /var/log/php5-fpm.log + ln -sf /dev/fd/2 /var/log/php7.2-fpm.log } stop_databases() { @@ -845,6 +846,10 @@ prepare_zbx_web_config() { PHP_CONFIG_FILE="/etc/php.d/99-zabbix.ini" elif [ -f "/etc/php7/conf.d/99-zabbix.ini" ]; then PHP_CONFIG_FILE="/etc/php7/conf.d/99-zabbix.ini" + elif [ -f "/etc/php/7.2/fpm/conf.d/99-zabbix.ini" ]; then + PHP_CONFIG_FILE="/etc/php/7.2/fpm/conf.d/99-zabbix.ini" + elif [ -f "/etc/php/7.2/apache2/conf.d/99-zabbix.ini" ]; then + PHP_CONFIG_FILE="/etc/php/7.2/apache2/conf.d/99-zabbix.ini" fi if [ -n "$PHP_CONFIG_FILE" ]; then diff --git a/web-apache-mysql/ubuntu/Dockerfile b/web-apache-mysql/ubuntu/Dockerfile index b203c95a9..4bb3553e3 100644 --- a/web-apache-mysql/ubuntu/Dockerfile +++ b/web-apache-mysql/ubuntu/Dockerfile @@ -1,4 +1,4 @@ -FROM ubuntu:trusty +FROM ubuntu:bionic LABEL maintainer="Alexey Pustovalov " ARG BUILD_DATE @@ -21,7 +21,9 @@ LABEL org.label-schema.name="zabbix-web-${ZBX_OPT_TYPE}-${DB_TYPE}-ubuntu" \ STOPSIGNAL SIGTERM -RUN locale-gen $LC_ALL && \ +RUN apt-get ${APT_FLAGS_COMMON} update && \ + apt-get ${APT_FLAGS_PERSISTENT} install locales && \ + locale-gen $LC_ALL && \ echo "#!/bin/sh\nexit 0" > /usr/sbin/policy-rc.d && \ addgroup --system --quiet zabbix && \ adduser --quiet \ @@ -37,12 +39,15 @@ RUN locale-gen $LC_ALL && \ apt-get ${APT_FLAGS_PERSISTENT} install \ apache2 \ curl \ - libapache2-mod-php5 \ + libapache2-mod-php \ mysql-client \ - php5-gd \ - php5-json \ - php5-ldap \ - php5-mysql \ + php7.2-bcmath \ + php7.2-gd \ + php7.2-json \ + php7.2-ldap \ + php7.2-mbstring \ + php7.2-mysql \ + php7.2-xml \ ttf-dejavu-core && \ apt-get ${APT_FLAGS_COMMON} autoremove && \ apt-get ${APT_FLAGS_COMMON} clean && \ @@ -102,7 +107,7 @@ VOLUME ["/etc/ssl/apache2"] COPY ["conf/etc/zabbix/apache.conf", "/etc/zabbix/"] COPY ["conf/etc/zabbix/apache_ssl.conf", "/etc/zabbix/"] COPY ["conf/etc/zabbix/web/zabbix.conf.php", "/etc/zabbix/web/"] -COPY ["conf/etc/php5/apache2/conf.d/99-zabbix.ini", "/etc/php5/apache2/conf.d/"] +COPY ["conf/etc/php/7.2/apache2/conf.d/99-zabbix.ini", "/etc/php/7.2/apache2/conf.d/"] COPY ["docker-entrypoint.sh", "/usr/bin/"] ENTRYPOINT ["docker-entrypoint.sh"] diff --git a/web-apache-mysql/ubuntu/README.md b/web-apache-mysql/ubuntu/README.md index 976dea8eb..23bee9b96 100644 --- a/web-apache-mysql/ubuntu/README.md +++ b/web-apache-mysql/ubuntu/README.md @@ -14,7 +14,7 @@ Zabbix web interface is a part of Zabbix software. It is used to manage resource # Zabbix web interface images -These are the only official Zabbix web interface Docker images. They are based on Alpine Linux v3.4, Ubuntu 14.04 (trusty) and CentOS 7 images. The available versions of Zabbix web interface are: +These are the only official Zabbix web interface Docker images. They are based on Alpine Linux v3.4, Ubuntu 18.04 (bionic) and CentOS 7 images. The available versions of Zabbix web interface are: Zabbix web interface 3.0 (tags: alpine-3.0-latest, ubuntu-3.0-latest, centos-3.0-latest) Zabbix web interface 3.0.* (tags: alpine-3.0.*, ubuntu-3.0.*, centos-3.0.*) diff --git a/web-nginx-mysql/ubuntu/conf/etc/php5/fpm/conf.d/99-zabbix.ini b/web-apache-mysql/ubuntu/conf/etc/php/7.2/apache2/conf.d/99-zabbix.ini similarity index 80% rename from web-nginx-mysql/ubuntu/conf/etc/php5/fpm/conf.d/99-zabbix.ini rename to web-apache-mysql/ubuntu/conf/etc/php/7.2/apache2/conf.d/99-zabbix.ini index 2ceb8be41..a7a7c4c8b 100644 --- a/web-nginx-mysql/ubuntu/conf/etc/php5/fpm/conf.d/99-zabbix.ini +++ b/web-apache-mysql/ubuntu/conf/etc/php/7.2/apache2/conf.d/99-zabbix.ini @@ -5,4 +5,4 @@ upload_max_filesize=2M max_input_time=300 always_populate_raw_post_date=-1 ; date.timezone=Europe/Riga -session.save_path=/var/lib/php5 +session.save_path=/var/lib/php/sessions diff --git a/web-apache-mysql/ubuntu/docker-entrypoint.sh b/web-apache-mysql/ubuntu/docker-entrypoint.sh index b77cc0b57..bd3a9ab50 100755 --- a/web-apache-mysql/ubuntu/docker-entrypoint.sh +++ b/web-apache-mysql/ubuntu/docker-entrypoint.sh @@ -593,6 +593,7 @@ prepare_web_server_nginx() { fi ln -sf /dev/fd/2 /var/log/php5-fpm.log + ln -sf /dev/fd/2 /var/log/php7.2-fpm.log } stop_databases() { @@ -845,6 +846,10 @@ prepare_zbx_web_config() { PHP_CONFIG_FILE="/etc/php.d/99-zabbix.ini" elif [ -f "/etc/php7/conf.d/99-zabbix.ini" ]; then PHP_CONFIG_FILE="/etc/php7/conf.d/99-zabbix.ini" + elif [ -f "/etc/php/7.2/fpm/conf.d/99-zabbix.ini" ]; then + PHP_CONFIG_FILE="/etc/php/7.2/fpm/conf.d/99-zabbix.ini" + elif [ -f "/etc/php/7.2/apache2/conf.d/99-zabbix.ini" ]; then + PHP_CONFIG_FILE="/etc/php/7.2/apache2/conf.d/99-zabbix.ini" fi if [ -n "$PHP_CONFIG_FILE" ]; then diff --git a/web-apache-pgsql/alpine/README.md b/web-apache-pgsql/alpine/README.md index 63d0e357a..e9578b5e2 100644 --- a/web-apache-pgsql/alpine/README.md +++ b/web-apache-pgsql/alpine/README.md @@ -14,7 +14,7 @@ Zabbix web interface is a part of Zabbix software. It is used to manage resource # Zabbix web interface images -These are the only official Zabbix web interface Docker images. They are based on Alpine Linux v3.4, Ubuntu 14.04 (trusty) and CentOS 7 images. The available versions of Zabbix web interface are: +These are the only official Zabbix web interface Docker images. They are based on Alpine Linux v3.4, Ubuntu 18.04 (bionic) and CentOS 7 images. The available versions of Zabbix web interface are: Zabbix web interface 3.0 (tags: alpine-3.0-latest, ubuntu-3.0-latest, centos-3.0-latest) Zabbix web interface 3.0.* (tags: alpine-3.0.*, ubuntu-3.0.*, centos-3.0.*) diff --git a/web-apache-pgsql/alpine/docker-entrypoint.sh b/web-apache-pgsql/alpine/docker-entrypoint.sh index b77cc0b57..bd3a9ab50 100755 --- a/web-apache-pgsql/alpine/docker-entrypoint.sh +++ b/web-apache-pgsql/alpine/docker-entrypoint.sh @@ -593,6 +593,7 @@ prepare_web_server_nginx() { fi ln -sf /dev/fd/2 /var/log/php5-fpm.log + ln -sf /dev/fd/2 /var/log/php7.2-fpm.log } stop_databases() { @@ -845,6 +846,10 @@ prepare_zbx_web_config() { PHP_CONFIG_FILE="/etc/php.d/99-zabbix.ini" elif [ -f "/etc/php7/conf.d/99-zabbix.ini" ]; then PHP_CONFIG_FILE="/etc/php7/conf.d/99-zabbix.ini" + elif [ -f "/etc/php/7.2/fpm/conf.d/99-zabbix.ini" ]; then + PHP_CONFIG_FILE="/etc/php/7.2/fpm/conf.d/99-zabbix.ini" + elif [ -f "/etc/php/7.2/apache2/conf.d/99-zabbix.ini" ]; then + PHP_CONFIG_FILE="/etc/php/7.2/apache2/conf.d/99-zabbix.ini" fi if [ -n "$PHP_CONFIG_FILE" ]; then diff --git a/web-apache-pgsql/centos/README.md b/web-apache-pgsql/centos/README.md index 63d0e357a..e9578b5e2 100644 --- a/web-apache-pgsql/centos/README.md +++ b/web-apache-pgsql/centos/README.md @@ -14,7 +14,7 @@ Zabbix web interface is a part of Zabbix software. It is used to manage resource # Zabbix web interface images -These are the only official Zabbix web interface Docker images. They are based on Alpine Linux v3.4, Ubuntu 14.04 (trusty) and CentOS 7 images. The available versions of Zabbix web interface are: +These are the only official Zabbix web interface Docker images. They are based on Alpine Linux v3.4, Ubuntu 18.04 (bionic) and CentOS 7 images. The available versions of Zabbix web interface are: Zabbix web interface 3.0 (tags: alpine-3.0-latest, ubuntu-3.0-latest, centos-3.0-latest) Zabbix web interface 3.0.* (tags: alpine-3.0.*, ubuntu-3.0.*, centos-3.0.*) diff --git a/web-apache-pgsql/centos/docker-entrypoint.sh b/web-apache-pgsql/centos/docker-entrypoint.sh index b77cc0b57..bd3a9ab50 100755 --- a/web-apache-pgsql/centos/docker-entrypoint.sh +++ b/web-apache-pgsql/centos/docker-entrypoint.sh @@ -593,6 +593,7 @@ prepare_web_server_nginx() { fi ln -sf /dev/fd/2 /var/log/php5-fpm.log + ln -sf /dev/fd/2 /var/log/php7.2-fpm.log } stop_databases() { @@ -845,6 +846,10 @@ prepare_zbx_web_config() { PHP_CONFIG_FILE="/etc/php.d/99-zabbix.ini" elif [ -f "/etc/php7/conf.d/99-zabbix.ini" ]; then PHP_CONFIG_FILE="/etc/php7/conf.d/99-zabbix.ini" + elif [ -f "/etc/php/7.2/fpm/conf.d/99-zabbix.ini" ]; then + PHP_CONFIG_FILE="/etc/php/7.2/fpm/conf.d/99-zabbix.ini" + elif [ -f "/etc/php/7.2/apache2/conf.d/99-zabbix.ini" ]; then + PHP_CONFIG_FILE="/etc/php/7.2/apache2/conf.d/99-zabbix.ini" fi if [ -n "$PHP_CONFIG_FILE" ]; then diff --git a/web-apache-pgsql/ubuntu/Dockerfile b/web-apache-pgsql/ubuntu/Dockerfile index fd35769d3..83d60da6a 100644 --- a/web-apache-pgsql/ubuntu/Dockerfile +++ b/web-apache-pgsql/ubuntu/Dockerfile @@ -1,4 +1,4 @@ -FROM ubuntu:trusty +FROM ubuntu:bionic LABEL maintainer="Alexey Pustovalov " ARG BUILD_DATE @@ -21,7 +21,9 @@ LABEL org.label-schema.name="zabbix-web-${ZBX_OPT_TYPE}-${ZBX_DB_TYPE}-ubuntu" \ STOPSIGNAL SIGTERM -RUN locale-gen $LC_ALL && \ +RUN apt-get ${APT_FLAGS_COMMON} update && \ + apt-get ${APT_FLAGS_PERSISTENT} install locales && \ + locale-gen $LC_ALL && \ echo "#!/bin/sh\nexit 0" > /usr/sbin/policy-rc.d && \ addgroup --system --quiet zabbix && \ adduser --quiet \ @@ -37,11 +39,14 @@ RUN locale-gen $LC_ALL && \ apt-get ${APT_FLAGS_PERSISTENT} install \ apache2 \ curl \ - libapache2-mod-php5 \ - php5-gd \ - php5-json \ - php5-ldap \ - php5-pgsql \ + libapache2-mod-php \ + php7.2-bcmath \ + php7.2-gd \ + php7.2-json \ + php7.2-ldap \ + php7.2-mbstring \ + php7.2-xml \ + php7.2-pgsql \ postgresql-client \ ttf-dejavu-core && \ apt-get ${APT_FLAGS_COMMON} autoremove && \ @@ -102,7 +107,7 @@ VOLUME ["/etc/ssl/apache2"] COPY ["conf/etc/zabbix/apache.conf", "/etc/zabbix/"] COPY ["conf/etc/zabbix/apache_ssl.conf", "/etc/zabbix/"] COPY ["conf/etc/zabbix/web/zabbix.conf.php", "/etc/zabbix/web/"] -COPY ["conf/etc/php5/apache2/conf.d/99-zabbix.ini", "/etc/php5/apache2/conf.d/"] +COPY ["conf/etc/php/7.2/apache2/conf.d/99-zabbix.ini", "/etc/php/7.2/apache2/conf.d/"] COPY ["docker-entrypoint.sh", "/usr/bin/"] ENTRYPOINT ["docker-entrypoint.sh"] diff --git a/web-apache-pgsql/ubuntu/README.md b/web-apache-pgsql/ubuntu/README.md index 63d0e357a..e9578b5e2 100644 --- a/web-apache-pgsql/ubuntu/README.md +++ b/web-apache-pgsql/ubuntu/README.md @@ -14,7 +14,7 @@ Zabbix web interface is a part of Zabbix software. It is used to manage resource # Zabbix web interface images -These are the only official Zabbix web interface Docker images. They are based on Alpine Linux v3.4, Ubuntu 14.04 (trusty) and CentOS 7 images. The available versions of Zabbix web interface are: +These are the only official Zabbix web interface Docker images. They are based on Alpine Linux v3.4, Ubuntu 18.04 (bionic) and CentOS 7 images. The available versions of Zabbix web interface are: Zabbix web interface 3.0 (tags: alpine-3.0-latest, ubuntu-3.0-latest, centos-3.0-latest) Zabbix web interface 3.0.* (tags: alpine-3.0.*, ubuntu-3.0.*, centos-3.0.*) diff --git a/web-nginx-pgsql/ubuntu/conf/etc/php5/fpm/conf.d/99-zabbix.ini b/web-apache-pgsql/ubuntu/conf/etc/php/7.2/apache2/conf.d/99-zabbix.ini similarity index 80% rename from web-nginx-pgsql/ubuntu/conf/etc/php5/fpm/conf.d/99-zabbix.ini rename to web-apache-pgsql/ubuntu/conf/etc/php/7.2/apache2/conf.d/99-zabbix.ini index 2ceb8be41..a7a7c4c8b 100644 --- a/web-nginx-pgsql/ubuntu/conf/etc/php5/fpm/conf.d/99-zabbix.ini +++ b/web-apache-pgsql/ubuntu/conf/etc/php/7.2/apache2/conf.d/99-zabbix.ini @@ -5,4 +5,4 @@ upload_max_filesize=2M max_input_time=300 always_populate_raw_post_date=-1 ; date.timezone=Europe/Riga -session.save_path=/var/lib/php5 +session.save_path=/var/lib/php/sessions diff --git a/web-apache-pgsql/ubuntu/docker-entrypoint.sh b/web-apache-pgsql/ubuntu/docker-entrypoint.sh index b77cc0b57..bd3a9ab50 100755 --- a/web-apache-pgsql/ubuntu/docker-entrypoint.sh +++ b/web-apache-pgsql/ubuntu/docker-entrypoint.sh @@ -593,6 +593,7 @@ prepare_web_server_nginx() { fi ln -sf /dev/fd/2 /var/log/php5-fpm.log + ln -sf /dev/fd/2 /var/log/php7.2-fpm.log } stop_databases() { @@ -845,6 +846,10 @@ prepare_zbx_web_config() { PHP_CONFIG_FILE="/etc/php.d/99-zabbix.ini" elif [ -f "/etc/php7/conf.d/99-zabbix.ini" ]; then PHP_CONFIG_FILE="/etc/php7/conf.d/99-zabbix.ini" + elif [ -f "/etc/php/7.2/fpm/conf.d/99-zabbix.ini" ]; then + PHP_CONFIG_FILE="/etc/php/7.2/fpm/conf.d/99-zabbix.ini" + elif [ -f "/etc/php/7.2/apache2/conf.d/99-zabbix.ini" ]; then + PHP_CONFIG_FILE="/etc/php/7.2/apache2/conf.d/99-zabbix.ini" fi if [ -n "$PHP_CONFIG_FILE" ]; then diff --git a/web-nginx-mysql/alpine/README.md b/web-nginx-mysql/alpine/README.md index 76d08ae61..a035e68c6 100644 --- a/web-nginx-mysql/alpine/README.md +++ b/web-nginx-mysql/alpine/README.md @@ -14,7 +14,7 @@ Zabbix web interface is a part of Zabbix software. It is used to manage resource # Zabbix web interface images -These are the only official Zabbix web interface Docker images. They are based on Alpine Linux v3.4, Ubuntu 14.04 (trusty) and CentOS 7 images. The available versions of Zabbix web interface are: +These are the only official Zabbix web interface Docker images. They are based on Alpine Linux v3.4, Ubuntu 18.04 (bionic) and CentOS 7 images. The available versions of Zabbix web interface are: Zabbix web interface 3.0 (tags: alpine-3.0-latest, ubuntu-3.0-latest, centos-3.0-latest) Zabbix web interface 3.0.* (tags: alpine-3.0.*, ubuntu-3.0.*, centos-3.0.*) diff --git a/web-nginx-mysql/alpine/docker-entrypoint.sh b/web-nginx-mysql/alpine/docker-entrypoint.sh index b77cc0b57..bd3a9ab50 100755 --- a/web-nginx-mysql/alpine/docker-entrypoint.sh +++ b/web-nginx-mysql/alpine/docker-entrypoint.sh @@ -593,6 +593,7 @@ prepare_web_server_nginx() { fi ln -sf /dev/fd/2 /var/log/php5-fpm.log + ln -sf /dev/fd/2 /var/log/php7.2-fpm.log } stop_databases() { @@ -845,6 +846,10 @@ prepare_zbx_web_config() { PHP_CONFIG_FILE="/etc/php.d/99-zabbix.ini" elif [ -f "/etc/php7/conf.d/99-zabbix.ini" ]; then PHP_CONFIG_FILE="/etc/php7/conf.d/99-zabbix.ini" + elif [ -f "/etc/php/7.2/fpm/conf.d/99-zabbix.ini" ]; then + PHP_CONFIG_FILE="/etc/php/7.2/fpm/conf.d/99-zabbix.ini" + elif [ -f "/etc/php/7.2/apache2/conf.d/99-zabbix.ini" ]; then + PHP_CONFIG_FILE="/etc/php/7.2/apache2/conf.d/99-zabbix.ini" fi if [ -n "$PHP_CONFIG_FILE" ]; then diff --git a/web-nginx-mysql/centos/README.md b/web-nginx-mysql/centos/README.md index 76d08ae61..a035e68c6 100644 --- a/web-nginx-mysql/centos/README.md +++ b/web-nginx-mysql/centos/README.md @@ -14,7 +14,7 @@ Zabbix web interface is a part of Zabbix software. It is used to manage resource # Zabbix web interface images -These are the only official Zabbix web interface Docker images. They are based on Alpine Linux v3.4, Ubuntu 14.04 (trusty) and CentOS 7 images. The available versions of Zabbix web interface are: +These are the only official Zabbix web interface Docker images. They are based on Alpine Linux v3.4, Ubuntu 18.04 (bionic) and CentOS 7 images. The available versions of Zabbix web interface are: Zabbix web interface 3.0 (tags: alpine-3.0-latest, ubuntu-3.0-latest, centos-3.0-latest) Zabbix web interface 3.0.* (tags: alpine-3.0.*, ubuntu-3.0.*, centos-3.0.*) diff --git a/web-nginx-mysql/centos/docker-entrypoint.sh b/web-nginx-mysql/centos/docker-entrypoint.sh index b77cc0b57..bd3a9ab50 100755 --- a/web-nginx-mysql/centos/docker-entrypoint.sh +++ b/web-nginx-mysql/centos/docker-entrypoint.sh @@ -593,6 +593,7 @@ prepare_web_server_nginx() { fi ln -sf /dev/fd/2 /var/log/php5-fpm.log + ln -sf /dev/fd/2 /var/log/php7.2-fpm.log } stop_databases() { @@ -845,6 +846,10 @@ prepare_zbx_web_config() { PHP_CONFIG_FILE="/etc/php.d/99-zabbix.ini" elif [ -f "/etc/php7/conf.d/99-zabbix.ini" ]; then PHP_CONFIG_FILE="/etc/php7/conf.d/99-zabbix.ini" + elif [ -f "/etc/php/7.2/fpm/conf.d/99-zabbix.ini" ]; then + PHP_CONFIG_FILE="/etc/php/7.2/fpm/conf.d/99-zabbix.ini" + elif [ -f "/etc/php/7.2/apache2/conf.d/99-zabbix.ini" ]; then + PHP_CONFIG_FILE="/etc/php/7.2/apache2/conf.d/99-zabbix.ini" fi if [ -n "$PHP_CONFIG_FILE" ]; then diff --git a/web-nginx-mysql/ubuntu/Dockerfile b/web-nginx-mysql/ubuntu/Dockerfile index 361199cdb..2e99dd693 100644 --- a/web-nginx-mysql/ubuntu/Dockerfile +++ b/web-nginx-mysql/ubuntu/Dockerfile @@ -1,4 +1,4 @@ -FROM ubuntu:trusty +FROM ubuntu:bionic LABEL maintainer="Alexey Pustovalov " ARG BUILD_DATE @@ -21,7 +21,9 @@ LABEL org.label-schema.name="zabbix-web-${ZBX_OPT_TYPE}-${ZBX_DB_TYPE}-ubuntu" \ STOPSIGNAL SIGTERM -RUN locale-gen $LC_ALL && \ +RUN apt-get ${APT_FLAGS_COMMON} update && \ + apt-get ${APT_FLAGS_PERSISTENT} install locales gnupg2 && \ + locale-gen $LC_ALL && \ echo "#!/bin/sh\nexit 0" > /usr/sbin/policy-rc.d && \ addgroup --system --quiet zabbix && \ adduser --quiet \ @@ -44,19 +46,22 @@ RUN locale-gen $LC_ALL && \ curl \ mysql-client \ nginx \ - php5-fpm \ - php5-gd \ - php5-json \ - php5-ldap \ - php5-mysql \ + php7.2-bcmath \ + php7.2-fpm \ + php7.2-gd \ + php7.2-json \ + php7.2-ldap \ + php7.2-mbstring \ + php7.2-mysql \ + php7.2-xml \ supervisor \ ttf-dejavu-core && \ apt-get ${APT_FLAGS_COMMON} purge \ wget && \ apt-get ${APT_FLAGS_COMMON} autoremove && \ apt-get ${APT_FLAGS_COMMON} clean && \ - mkdir -p /var/lib/php5 && \ - chown --quiet -R www-data:www-data /var/lib/php5 && \ + mkdir -p /var/lib/php7 && \ + chown --quiet -R www-data:www-data /var/lib/php7 && \ rm -rf /var/cache/nginx/* && \ rm -rf /var/lib/apt/lists/* @@ -116,7 +121,7 @@ COPY ["conf/etc/zabbix/nginx.conf", "/etc/zabbix/"] COPY ["conf/etc/zabbix/nginx_ssl.conf", "/etc/zabbix/"] COPY ["conf/etc/zabbix/web/zabbix.conf.php", "/etc/zabbix/web/"] COPY ["conf/etc/nginx/nginx.conf", "/etc/nginx/"] -COPY ["conf/etc/php5/fpm/conf.d/99-zabbix.ini", "/etc/php5/fpm/conf.d/"] +COPY ["conf/etc/php/7.2/fpm/conf.d/99-zabbix.ini", "/etc/php/7.2/fpm/conf.d/"] COPY ["docker-entrypoint.sh", "/usr/bin/"] ENTRYPOINT ["docker-entrypoint.sh"] diff --git a/web-nginx-mysql/ubuntu/README.md b/web-nginx-mysql/ubuntu/README.md index 76d08ae61..a035e68c6 100644 --- a/web-nginx-mysql/ubuntu/README.md +++ b/web-nginx-mysql/ubuntu/README.md @@ -14,7 +14,7 @@ Zabbix web interface is a part of Zabbix software. It is used to manage resource # Zabbix web interface images -These are the only official Zabbix web interface Docker images. They are based on Alpine Linux v3.4, Ubuntu 14.04 (trusty) and CentOS 7 images. The available versions of Zabbix web interface are: +These are the only official Zabbix web interface Docker images. They are based on Alpine Linux v3.4, Ubuntu 18.04 (bionic) and CentOS 7 images. The available versions of Zabbix web interface are: Zabbix web interface 3.0 (tags: alpine-3.0-latest, ubuntu-3.0-latest, centos-3.0-latest) Zabbix web interface 3.0.* (tags: alpine-3.0.*, ubuntu-3.0.*, centos-3.0.*) diff --git a/web-nginx-mysql/ubuntu/conf/etc/nginx/nginx.conf b/web-nginx-mysql/ubuntu/conf/etc/nginx/nginx.conf index b263fb42a..fe6ad67e0 100644 --- a/web-nginx-mysql/ubuntu/conf/etc/nginx/nginx.conf +++ b/web-nginx-mysql/ubuntu/conf/etc/nginx/nginx.conf @@ -1,6 +1,6 @@ user www-data; worker_processes 5; -worker_rlimit_nofile 256000; +#worker_rlimit_nofile 256000; error_log /dev/fd/2 warn; diff --git a/web-apache-mysql/ubuntu/conf/etc/php5/apache2/conf.d/99-zabbix.ini b/web-nginx-mysql/ubuntu/conf/etc/php/7.2/fpm/conf.d/99-zabbix.ini similarity index 100% rename from web-apache-mysql/ubuntu/conf/etc/php5/apache2/conf.d/99-zabbix.ini rename to web-nginx-mysql/ubuntu/conf/etc/php/7.2/fpm/conf.d/99-zabbix.ini diff --git a/web-nginx-mysql/ubuntu/conf/etc/supervisor/conf.d/supervisord_zabbix.conf b/web-nginx-mysql/ubuntu/conf/etc/supervisor/conf.d/supervisord_zabbix.conf index f1d5f297a..4055ea6d7 100644 --- a/web-nginx-mysql/ubuntu/conf/etc/supervisor/conf.d/supervisord_zabbix.conf +++ b/web-nginx-mysql/ubuntu/conf/etc/supervisor/conf.d/supervisord_zabbix.conf @@ -15,8 +15,8 @@ redirect_stderr=true stdout_logfile = /dev/stdout stdout_logfile_maxbytes = 0 -[program:php5-fpm] -command = /usr/sbin/%(program_name)s -F -c /etc/php5/fpm/php-fpm.conf +[program:php-fpm7.2] +command = /usr/sbin/%(program_name)s -F -c /etc/php/7.2/fpm/php-fpm.conf auto_start = true autorestart = true diff --git a/web-nginx-mysql/ubuntu/conf/etc/zabbix/nginx.conf b/web-nginx-mysql/ubuntu/conf/etc/zabbix/nginx.conf index 3bde42701..e1331f0bf 100644 --- a/web-nginx-mysql/ubuntu/conf/etc/zabbix/nginx.conf +++ b/web-nginx-mysql/ubuntu/conf/etc/zabbix/nginx.conf @@ -51,7 +51,7 @@ server { } location ~ .php$ { - fastcgi_pass unix:/var/run/php5-fpm.sock; + fastcgi_pass unix:/var/run/php/php7.2-fpm.sock; fastcgi_index index.php; fastcgi_param SCRIPT_FILENAME $webroot$fastcgi_script_name; diff --git a/web-nginx-mysql/ubuntu/conf/etc/zabbix/nginx_ssl.conf b/web-nginx-mysql/ubuntu/conf/etc/zabbix/nginx_ssl.conf index b38103186..2d68009ab 100644 --- a/web-nginx-mysql/ubuntu/conf/etc/zabbix/nginx_ssl.conf +++ b/web-nginx-mysql/ubuntu/conf/etc/zabbix/nginx_ssl.conf @@ -75,7 +75,7 @@ server { } location ~ .php$ { - fastcgi_pass unix:/var/run/php5-fpm.sock; + fastcgi_pass unix:/var/run/php/php7.2-fpm.sock; fastcgi_index index.php; fastcgi_param SCRIPT_FILENAME $webroot$fastcgi_script_name; diff --git a/web-nginx-mysql/ubuntu/docker-entrypoint.sh b/web-nginx-mysql/ubuntu/docker-entrypoint.sh index b77cc0b57..bd3a9ab50 100755 --- a/web-nginx-mysql/ubuntu/docker-entrypoint.sh +++ b/web-nginx-mysql/ubuntu/docker-entrypoint.sh @@ -593,6 +593,7 @@ prepare_web_server_nginx() { fi ln -sf /dev/fd/2 /var/log/php5-fpm.log + ln -sf /dev/fd/2 /var/log/php7.2-fpm.log } stop_databases() { @@ -845,6 +846,10 @@ prepare_zbx_web_config() { PHP_CONFIG_FILE="/etc/php.d/99-zabbix.ini" elif [ -f "/etc/php7/conf.d/99-zabbix.ini" ]; then PHP_CONFIG_FILE="/etc/php7/conf.d/99-zabbix.ini" + elif [ -f "/etc/php/7.2/fpm/conf.d/99-zabbix.ini" ]; then + PHP_CONFIG_FILE="/etc/php/7.2/fpm/conf.d/99-zabbix.ini" + elif [ -f "/etc/php/7.2/apache2/conf.d/99-zabbix.ini" ]; then + PHP_CONFIG_FILE="/etc/php/7.2/apache2/conf.d/99-zabbix.ini" fi if [ -n "$PHP_CONFIG_FILE" ]; then diff --git a/web-nginx-pgsql/alpine/README.md b/web-nginx-pgsql/alpine/README.md index 0bb924b66..82974d997 100644 --- a/web-nginx-pgsql/alpine/README.md +++ b/web-nginx-pgsql/alpine/README.md @@ -14,7 +14,7 @@ Zabbix web interface is a part of Zabbix software. It is used to manage resource # Zabbix web interface images -These are the only official Zabbix web interface Docker images. They are based on Alpine Linux v3.4, Ubuntu 14.04 (trusty) and CentOS 7 images. The available versions of Zabbix web interface are: +These are the only official Zabbix web interface Docker images. They are based on Alpine Linux v3.4, Ubuntu 18.04 (bionic) and CentOS 7 images. The available versions of Zabbix web interface are: Zabbix web interface 3.0 (tags: alpine-3.0-latest, ubuntu-3.0-latest, centos-3.0-latest) Zabbix web interface 3.0.* (tags: alpine-3.0.*, ubuntu-3.0.*, centos-3.0.*) diff --git a/web-nginx-pgsql/alpine/docker-entrypoint.sh b/web-nginx-pgsql/alpine/docker-entrypoint.sh index b77cc0b57..bd3a9ab50 100755 --- a/web-nginx-pgsql/alpine/docker-entrypoint.sh +++ b/web-nginx-pgsql/alpine/docker-entrypoint.sh @@ -593,6 +593,7 @@ prepare_web_server_nginx() { fi ln -sf /dev/fd/2 /var/log/php5-fpm.log + ln -sf /dev/fd/2 /var/log/php7.2-fpm.log } stop_databases() { @@ -845,6 +846,10 @@ prepare_zbx_web_config() { PHP_CONFIG_FILE="/etc/php.d/99-zabbix.ini" elif [ -f "/etc/php7/conf.d/99-zabbix.ini" ]; then PHP_CONFIG_FILE="/etc/php7/conf.d/99-zabbix.ini" + elif [ -f "/etc/php/7.2/fpm/conf.d/99-zabbix.ini" ]; then + PHP_CONFIG_FILE="/etc/php/7.2/fpm/conf.d/99-zabbix.ini" + elif [ -f "/etc/php/7.2/apache2/conf.d/99-zabbix.ini" ]; then + PHP_CONFIG_FILE="/etc/php/7.2/apache2/conf.d/99-zabbix.ini" fi if [ -n "$PHP_CONFIG_FILE" ]; then diff --git a/web-nginx-pgsql/centos/README.md b/web-nginx-pgsql/centos/README.md index 0bb924b66..82974d997 100644 --- a/web-nginx-pgsql/centos/README.md +++ b/web-nginx-pgsql/centos/README.md @@ -14,7 +14,7 @@ Zabbix web interface is a part of Zabbix software. It is used to manage resource # Zabbix web interface images -These are the only official Zabbix web interface Docker images. They are based on Alpine Linux v3.4, Ubuntu 14.04 (trusty) and CentOS 7 images. The available versions of Zabbix web interface are: +These are the only official Zabbix web interface Docker images. They are based on Alpine Linux v3.4, Ubuntu 18.04 (bionic) and CentOS 7 images. The available versions of Zabbix web interface are: Zabbix web interface 3.0 (tags: alpine-3.0-latest, ubuntu-3.0-latest, centos-3.0-latest) Zabbix web interface 3.0.* (tags: alpine-3.0.*, ubuntu-3.0.*, centos-3.0.*) diff --git a/web-nginx-pgsql/centos/docker-entrypoint.sh b/web-nginx-pgsql/centos/docker-entrypoint.sh index b77cc0b57..bd3a9ab50 100755 --- a/web-nginx-pgsql/centos/docker-entrypoint.sh +++ b/web-nginx-pgsql/centos/docker-entrypoint.sh @@ -593,6 +593,7 @@ prepare_web_server_nginx() { fi ln -sf /dev/fd/2 /var/log/php5-fpm.log + ln -sf /dev/fd/2 /var/log/php7.2-fpm.log } stop_databases() { @@ -845,6 +846,10 @@ prepare_zbx_web_config() { PHP_CONFIG_FILE="/etc/php.d/99-zabbix.ini" elif [ -f "/etc/php7/conf.d/99-zabbix.ini" ]; then PHP_CONFIG_FILE="/etc/php7/conf.d/99-zabbix.ini" + elif [ -f "/etc/php/7.2/fpm/conf.d/99-zabbix.ini" ]; then + PHP_CONFIG_FILE="/etc/php/7.2/fpm/conf.d/99-zabbix.ini" + elif [ -f "/etc/php/7.2/apache2/conf.d/99-zabbix.ini" ]; then + PHP_CONFIG_FILE="/etc/php/7.2/apache2/conf.d/99-zabbix.ini" fi if [ -n "$PHP_CONFIG_FILE" ]; then diff --git a/web-nginx-pgsql/ubuntu/Dockerfile b/web-nginx-pgsql/ubuntu/Dockerfile index 024d33a8f..952de52af 100644 --- a/web-nginx-pgsql/ubuntu/Dockerfile +++ b/web-nginx-pgsql/ubuntu/Dockerfile @@ -1,4 +1,4 @@ -FROM ubuntu:trusty +FROM ubuntu:bionic LABEL maintainer="Alexey Pustovalov " ARG BUILD_DATE @@ -21,7 +21,9 @@ LABEL org.label-schema.name="zabbix-web-${ZBX_OPT_TYPE}-${ZBX_DB_TYPE}-ubuntu" \ STOPSIGNAL SIGTERM -RUN locale-gen $LC_ALL && \ +RUN apt-get ${APT_FLAGS_COMMON} update && \ + apt-get ${APT_FLAGS_PERSISTENT} install locales gnupg2 && \ + locale-gen $LC_ALL && \ echo "#!/bin/sh\nexit 0" > /usr/sbin/policy-rc.d && \ addgroup --system --quiet zabbix && \ adduser --quiet \ @@ -43,11 +45,14 @@ RUN locale-gen $LC_ALL && \ apt-get ${APT_FLAGS_PERSISTENT} install \ curl \ nginx \ - php5-fpm \ - php5-gd \ - php5-json \ - php5-ldap \ - php5-pgsql \ + php7.2-bcmath \ + php7.2-fpm \ + php7.2-gd \ + php7.2-json \ + php7.2-ldap \ + php7.2-mbstring \ + php7.2-xml \ + php7.2-pgsql \ postgresql-client \ supervisor \ ttf-dejavu-core && \ @@ -116,7 +121,7 @@ COPY ["conf/etc/zabbix/nginx.conf", "/etc/zabbix/"] COPY ["conf/etc/zabbix/nginx_ssl.conf", "/etc/zabbix/"] COPY ["conf/etc/zabbix/web/zabbix.conf.php", "/etc/zabbix/web/"] COPY ["conf/etc/nginx/nginx.conf", "/etc/nginx/"] -COPY ["conf/etc/php5/fpm/conf.d/99-zabbix.ini", "/etc/php5/fpm/conf.d/"] +COPY ["conf/etc/php/7.2/fpm/conf.d/99-zabbix.ini", "/etc/php/7.2/fpm/conf.d/"] COPY ["docker-entrypoint.sh", "/usr/bin/"] ENTRYPOINT ["docker-entrypoint.sh"] diff --git a/web-nginx-pgsql/ubuntu/README.md b/web-nginx-pgsql/ubuntu/README.md index 0bb924b66..82974d997 100644 --- a/web-nginx-pgsql/ubuntu/README.md +++ b/web-nginx-pgsql/ubuntu/README.md @@ -14,7 +14,7 @@ Zabbix web interface is a part of Zabbix software. It is used to manage resource # Zabbix web interface images -These are the only official Zabbix web interface Docker images. They are based on Alpine Linux v3.4, Ubuntu 14.04 (trusty) and CentOS 7 images. The available versions of Zabbix web interface are: +These are the only official Zabbix web interface Docker images. They are based on Alpine Linux v3.4, Ubuntu 18.04 (bionic) and CentOS 7 images. The available versions of Zabbix web interface are: Zabbix web interface 3.0 (tags: alpine-3.0-latest, ubuntu-3.0-latest, centos-3.0-latest) Zabbix web interface 3.0.* (tags: alpine-3.0.*, ubuntu-3.0.*, centos-3.0.*) diff --git a/web-nginx-pgsql/ubuntu/conf/etc/nginx/nginx.conf b/web-nginx-pgsql/ubuntu/conf/etc/nginx/nginx.conf index b263fb42a..fe6ad67e0 100644 --- a/web-nginx-pgsql/ubuntu/conf/etc/nginx/nginx.conf +++ b/web-nginx-pgsql/ubuntu/conf/etc/nginx/nginx.conf @@ -1,6 +1,6 @@ user www-data; worker_processes 5; -worker_rlimit_nofile 256000; +#worker_rlimit_nofile 256000; error_log /dev/fd/2 warn; diff --git a/web-apache-pgsql/ubuntu/conf/etc/php5/apache2/conf.d/99-zabbix.ini b/web-nginx-pgsql/ubuntu/conf/etc/php/7.2/fpm/conf.d/99-zabbix.ini similarity index 100% rename from web-apache-pgsql/ubuntu/conf/etc/php5/apache2/conf.d/99-zabbix.ini rename to web-nginx-pgsql/ubuntu/conf/etc/php/7.2/fpm/conf.d/99-zabbix.ini diff --git a/web-nginx-pgsql/ubuntu/conf/etc/supervisor/conf.d/supervisord_zabbix.conf b/web-nginx-pgsql/ubuntu/conf/etc/supervisor/conf.d/supervisord_zabbix.conf index f1d5f297a..4055ea6d7 100644 --- a/web-nginx-pgsql/ubuntu/conf/etc/supervisor/conf.d/supervisord_zabbix.conf +++ b/web-nginx-pgsql/ubuntu/conf/etc/supervisor/conf.d/supervisord_zabbix.conf @@ -15,8 +15,8 @@ redirect_stderr=true stdout_logfile = /dev/stdout stdout_logfile_maxbytes = 0 -[program:php5-fpm] -command = /usr/sbin/%(program_name)s -F -c /etc/php5/fpm/php-fpm.conf +[program:php-fpm7.2] +command = /usr/sbin/%(program_name)s -F -c /etc/php/7.2/fpm/php-fpm.conf auto_start = true autorestart = true diff --git a/web-nginx-pgsql/ubuntu/conf/etc/zabbix/nginx.conf b/web-nginx-pgsql/ubuntu/conf/etc/zabbix/nginx.conf index 3bde42701..e1331f0bf 100644 --- a/web-nginx-pgsql/ubuntu/conf/etc/zabbix/nginx.conf +++ b/web-nginx-pgsql/ubuntu/conf/etc/zabbix/nginx.conf @@ -51,7 +51,7 @@ server { } location ~ .php$ { - fastcgi_pass unix:/var/run/php5-fpm.sock; + fastcgi_pass unix:/var/run/php/php7.2-fpm.sock; fastcgi_index index.php; fastcgi_param SCRIPT_FILENAME $webroot$fastcgi_script_name; diff --git a/web-nginx-pgsql/ubuntu/conf/etc/zabbix/nginx_ssl.conf b/web-nginx-pgsql/ubuntu/conf/etc/zabbix/nginx_ssl.conf index b38103186..2d68009ab 100644 --- a/web-nginx-pgsql/ubuntu/conf/etc/zabbix/nginx_ssl.conf +++ b/web-nginx-pgsql/ubuntu/conf/etc/zabbix/nginx_ssl.conf @@ -75,7 +75,7 @@ server { } location ~ .php$ { - fastcgi_pass unix:/var/run/php5-fpm.sock; + fastcgi_pass unix:/var/run/php/php7.2-fpm.sock; fastcgi_index index.php; fastcgi_param SCRIPT_FILENAME $webroot$fastcgi_script_name; diff --git a/web-nginx-pgsql/ubuntu/docker-entrypoint.sh b/web-nginx-pgsql/ubuntu/docker-entrypoint.sh index b77cc0b57..bd3a9ab50 100755 --- a/web-nginx-pgsql/ubuntu/docker-entrypoint.sh +++ b/web-nginx-pgsql/ubuntu/docker-entrypoint.sh @@ -593,6 +593,7 @@ prepare_web_server_nginx() { fi ln -sf /dev/fd/2 /var/log/php5-fpm.log + ln -sf /dev/fd/2 /var/log/php7.2-fpm.log } stop_databases() { @@ -845,6 +846,10 @@ prepare_zbx_web_config() { PHP_CONFIG_FILE="/etc/php.d/99-zabbix.ini" elif [ -f "/etc/php7/conf.d/99-zabbix.ini" ]; then PHP_CONFIG_FILE="/etc/php7/conf.d/99-zabbix.ini" + elif [ -f "/etc/php/7.2/fpm/conf.d/99-zabbix.ini" ]; then + PHP_CONFIG_FILE="/etc/php/7.2/fpm/conf.d/99-zabbix.ini" + elif [ -f "/etc/php/7.2/apache2/conf.d/99-zabbix.ini" ]; then + PHP_CONFIG_FILE="/etc/php/7.2/apache2/conf.d/99-zabbix.ini" fi if [ -n "$PHP_CONFIG_FILE" ]; then diff --git a/zabbix-appliance/alpine/README.md b/zabbix-appliance/alpine/README.md index 47e46daee..d58373441 100644 --- a/zabbix-appliance/alpine/README.md +++ b/zabbix-appliance/alpine/README.md @@ -14,7 +14,7 @@ Zabbix appliance contains MySQL database server, Zabbix server, Zabbix Java Gate # Zabbix appliance images -These are the only official Zabbix appliance Docker images. They are based on Alpine Linux v3.4, Ubuntu 14.04 (trusty) and CentOS 7 images. The available versions of Zabbix appliance are: +These are the only official Zabbix appliance Docker images. They are based on Alpine Linux v3.4, Ubuntu 18.04 (bionic) and CentOS 7 images. The available versions of Zabbix appliance are: Zabbix appliance 3.0 (tags: alpine-3.0-latest, ubuntu-3.0-latest, centos-3.0-latest) Zabbix appliance 3.0.* (tags: alpine-3.0.*, ubuntu-3.0.*, centos-3.0.*) diff --git a/zabbix-appliance/alpine/docker-entrypoint.sh b/zabbix-appliance/alpine/docker-entrypoint.sh index b77cc0b57..bd3a9ab50 100755 --- a/zabbix-appliance/alpine/docker-entrypoint.sh +++ b/zabbix-appliance/alpine/docker-entrypoint.sh @@ -593,6 +593,7 @@ prepare_web_server_nginx() { fi ln -sf /dev/fd/2 /var/log/php5-fpm.log + ln -sf /dev/fd/2 /var/log/php7.2-fpm.log } stop_databases() { @@ -845,6 +846,10 @@ prepare_zbx_web_config() { PHP_CONFIG_FILE="/etc/php.d/99-zabbix.ini" elif [ -f "/etc/php7/conf.d/99-zabbix.ini" ]; then PHP_CONFIG_FILE="/etc/php7/conf.d/99-zabbix.ini" + elif [ -f "/etc/php/7.2/fpm/conf.d/99-zabbix.ini" ]; then + PHP_CONFIG_FILE="/etc/php/7.2/fpm/conf.d/99-zabbix.ini" + elif [ -f "/etc/php/7.2/apache2/conf.d/99-zabbix.ini" ]; then + PHP_CONFIG_FILE="/etc/php/7.2/apache2/conf.d/99-zabbix.ini" fi if [ -n "$PHP_CONFIG_FILE" ]; then diff --git a/zabbix-appliance/centos/README.md b/zabbix-appliance/centos/README.md index 47e46daee..d58373441 100644 --- a/zabbix-appliance/centos/README.md +++ b/zabbix-appliance/centos/README.md @@ -14,7 +14,7 @@ Zabbix appliance contains MySQL database server, Zabbix server, Zabbix Java Gate # Zabbix appliance images -These are the only official Zabbix appliance Docker images. They are based on Alpine Linux v3.4, Ubuntu 14.04 (trusty) and CentOS 7 images. The available versions of Zabbix appliance are: +These are the only official Zabbix appliance Docker images. They are based on Alpine Linux v3.4, Ubuntu 18.04 (bionic) and CentOS 7 images. The available versions of Zabbix appliance are: Zabbix appliance 3.0 (tags: alpine-3.0-latest, ubuntu-3.0-latest, centos-3.0-latest) Zabbix appliance 3.0.* (tags: alpine-3.0.*, ubuntu-3.0.*, centos-3.0.*) diff --git a/zabbix-appliance/centos/docker-entrypoint.sh b/zabbix-appliance/centos/docker-entrypoint.sh index b77cc0b57..bd3a9ab50 100755 --- a/zabbix-appliance/centos/docker-entrypoint.sh +++ b/zabbix-appliance/centos/docker-entrypoint.sh @@ -593,6 +593,7 @@ prepare_web_server_nginx() { fi ln -sf /dev/fd/2 /var/log/php5-fpm.log + ln -sf /dev/fd/2 /var/log/php7.2-fpm.log } stop_databases() { @@ -845,6 +846,10 @@ prepare_zbx_web_config() { PHP_CONFIG_FILE="/etc/php.d/99-zabbix.ini" elif [ -f "/etc/php7/conf.d/99-zabbix.ini" ]; then PHP_CONFIG_FILE="/etc/php7/conf.d/99-zabbix.ini" + elif [ -f "/etc/php/7.2/fpm/conf.d/99-zabbix.ini" ]; then + PHP_CONFIG_FILE="/etc/php/7.2/fpm/conf.d/99-zabbix.ini" + elif [ -f "/etc/php/7.2/apache2/conf.d/99-zabbix.ini" ]; then + PHP_CONFIG_FILE="/etc/php/7.2/apache2/conf.d/99-zabbix.ini" fi if [ -n "$PHP_CONFIG_FILE" ]; then diff --git a/zabbix-appliance/rhel/README.md b/zabbix-appliance/rhel/README.md index 8399de4fd..5cf48dc6e 100644 --- a/zabbix-appliance/rhel/README.md +++ b/zabbix-appliance/rhel/README.md @@ -14,7 +14,7 @@ Zabbix appliance contains MySQL database server, Zabbix server, Zabbix Java Gate # Zabbix appliance images -These are the only official Zabbix appliance Docker images. They are based on Alpine Linux v3.4, Ubuntu 14.04 (trusty), CentOS 7 and Red Hat Enterprise Linux 7 images. The available versions of Zabbix appliance are: +These are the only official Zabbix appliance Docker images. They are based on Alpine Linux v3.4, Ubuntu 18.04 (bionic), CentOS 7 and Red Hat Enterprise Linux 7 images. The available versions of Zabbix appliance are: Zabbix appliance 3.0 (tags: alpine-3.0-latest, ubuntu-3.0-latest, centos-3.0-latest) Zabbix appliance 3.0.* (tags: alpine-3.0.*, ubuntu-3.0.*, centos-3.0.*) diff --git a/zabbix-appliance/rhel/docker-entrypoint.sh b/zabbix-appliance/rhel/docker-entrypoint.sh index b77cc0b57..a28fc38d4 100755 --- a/zabbix-appliance/rhel/docker-entrypoint.sh +++ b/zabbix-appliance/rhel/docker-entrypoint.sh @@ -593,6 +593,7 @@ prepare_web_server_nginx() { fi ln -sf /dev/fd/2 /var/log/php5-fpm.log + ln -sf /dev/fd/2 /var/log/php7.2-fpm.log } stop_databases() { @@ -661,11 +662,6 @@ update_zbx_config() { update_config_var $ZBX_CONFIG "DebugLevel" "${ZBX_DEBUGLEVEL}" - if [ $type == "proxy" ]; then - update_config_var $ZBX_CONFIG "EnableRemoteCommands" "${ZBX_ENABLEREMOTECOMMANDS}" - update_config_var $ZBX_CONFIG "LogRemoteCommands" "${ZBX_LOGREMOTECOMMANDS}" - fi - if [ "$db_type" == "sqlite3" ]; then update_config_var $ZBX_CONFIG "DBHost" update_config_var $ZBX_CONFIG "DBName" "/var/lib/zabbix/zabbix_proxy_db" @@ -681,11 +677,6 @@ update_zbx_config() { update_config_var $ZBX_CONFIG "DBPassword" "${DB_SERVER_ZBX_PASS}" fi - if [ $type == "server" ]; then - update_config_var $ZBX_CONFIG "HistoryStorageURL" "${ZBX_HISTORYSTORAGEURL}" - update_config_var $ZBX_CONFIG "HistoryStorageTypes" "${ZBX_HISTORYSTORAGETYPES}" - fi - update_config_var $ZBX_CONFIG "DBSocket" "${DB_SERVER_SOCKET}" if [ "$type" == "proxy" ]; then @@ -705,10 +696,8 @@ update_zbx_config() { update_config_var $ZBX_CONFIG "StartHTTPPollers" "${ZBX_STARTHTTPPOLLERS}" if [ "$type" == "server" ]; then - update_config_var $ZBX_CONFIG "StartPreprocessors" "${ZBX_STARTPREPROCESSORS}" update_config_var $ZBX_CONFIG "StartTimers" "${ZBX_STARTTIMERS}" update_config_var $ZBX_CONFIG "StartEscalators" "${ZBX_STARTESCALATORS}" - update_config_var $ZBX_CONFIG "StartAlerters" "${ZBX_STARTALERTERS}" fi ZBX_JAVAGATEWAY_ENABLE=${ZBX_JAVAGATEWAY_ENABLE:-"false"} @@ -845,6 +834,10 @@ prepare_zbx_web_config() { PHP_CONFIG_FILE="/etc/php.d/99-zabbix.ini" elif [ -f "/etc/php7/conf.d/99-zabbix.ini" ]; then PHP_CONFIG_FILE="/etc/php7/conf.d/99-zabbix.ini" + elif [ -f "/etc/php/7.2/fpm/conf.d/99-zabbix.ini" ]; then + PHP_CONFIG_FILE="/etc/php/7.2/fpm/conf.d/99-zabbix.ini" + elif [ -f "/etc/php/7.2/apache2/conf.d/99-zabbix.ini" ]; then + PHP_CONFIG_FILE="/etc/php/7.2/apache2/conf.d/99-zabbix.ini" fi if [ -n "$PHP_CONFIG_FILE" ]; then diff --git a/zabbix-appliance/ubuntu/Dockerfile b/zabbix-appliance/ubuntu/Dockerfile index 3ee6fa817..0ef2a32b5 100644 --- a/zabbix-appliance/ubuntu/Dockerfile +++ b/zabbix-appliance/ubuntu/Dockerfile @@ -1,4 +1,4 @@ -FROM ubuntu:trusty as builder +FROM ubuntu:bionic as builder ARG APT_FLAGS_COMMON="-y" ARG APT_FLAGS_DEV="${APT_FLAGS_COMMON} --no-install-recommends" @@ -81,7 +81,7 @@ RUN locale-gen $LC_ALL && \ rm /tmp/zabbix-${ZBX_VERSION}/frontends/php/fonts/DejaVuSans.ttf && \ ./locale/make_mo.sh -FROM ubuntu:trusty +FROM ubuntu:bionic LABEL maintainer="Alexey Pustovalov " ARG BUILD_DATE diff --git a/zabbix-appliance/ubuntu/README.md b/zabbix-appliance/ubuntu/README.md index 47e46daee..d58373441 100644 --- a/zabbix-appliance/ubuntu/README.md +++ b/zabbix-appliance/ubuntu/README.md @@ -14,7 +14,7 @@ Zabbix appliance contains MySQL database server, Zabbix server, Zabbix Java Gate # Zabbix appliance images -These are the only official Zabbix appliance Docker images. They are based on Alpine Linux v3.4, Ubuntu 14.04 (trusty) and CentOS 7 images. The available versions of Zabbix appliance are: +These are the only official Zabbix appliance Docker images. They are based on Alpine Linux v3.4, Ubuntu 18.04 (bionic) and CentOS 7 images. The available versions of Zabbix appliance are: Zabbix appliance 3.0 (tags: alpine-3.0-latest, ubuntu-3.0-latest, centos-3.0-latest) Zabbix appliance 3.0.* (tags: alpine-3.0.*, ubuntu-3.0.*, centos-3.0.*) diff --git a/zabbix-appliance/ubuntu/docker-entrypoint.sh b/zabbix-appliance/ubuntu/docker-entrypoint.sh index b77cc0b57..bd3a9ab50 100755 --- a/zabbix-appliance/ubuntu/docker-entrypoint.sh +++ b/zabbix-appliance/ubuntu/docker-entrypoint.sh @@ -593,6 +593,7 @@ prepare_web_server_nginx() { fi ln -sf /dev/fd/2 /var/log/php5-fpm.log + ln -sf /dev/fd/2 /var/log/php7.2-fpm.log } stop_databases() { @@ -845,6 +846,10 @@ prepare_zbx_web_config() { PHP_CONFIG_FILE="/etc/php.d/99-zabbix.ini" elif [ -f "/etc/php7/conf.d/99-zabbix.ini" ]; then PHP_CONFIG_FILE="/etc/php7/conf.d/99-zabbix.ini" + elif [ -f "/etc/php/7.2/fpm/conf.d/99-zabbix.ini" ]; then + PHP_CONFIG_FILE="/etc/php/7.2/fpm/conf.d/99-zabbix.ini" + elif [ -f "/etc/php/7.2/apache2/conf.d/99-zabbix.ini" ]; then + PHP_CONFIG_FILE="/etc/php/7.2/apache2/conf.d/99-zabbix.ini" fi if [ -n "$PHP_CONFIG_FILE" ]; then diff --git a/zbx_env/var/lib/mysql/auto.cnf b/zbx_env/var/lib/mysql/auto.cnf new file mode 100644 index 000000000..cb24256b5 --- /dev/null +++ b/zbx_env/var/lib/mysql/auto.cnf @@ -0,0 +1,2 @@ +[auto] +server-uuid=68e81bf2-8bbf-11e8-8b24-0242ac10ef02 diff --git a/zbx_env/var/lib/mysql/ca-key.pem b/zbx_env/var/lib/mysql/ca-key.pem new file mode 100644 index 000000000..f955607a7 --- /dev/null +++ b/zbx_env/var/lib/mysql/ca-key.pem @@ -0,0 +1,27 @@ +-----BEGIN RSA PRIVATE KEY----- +MIIEowIBAAKCAQEApivgVkO59Z57XteXiftvlHJQu6q1DXwxdSPU1JvqLfXJ4ukx +BJvhxHmndCEhvUKJQK9W9iP17tCmRxsxrWRIDL61M9r5JOb0aAnI8XXwSPs01bRy +3nHkVnYLRdnUtTGyea//qbpCgoDB9czmHQBjiGyslp19vG14uRp2jn7xxDS1WG0b +BZf1Nr9vqfIUfkAI7dv+sUAgMOyi0lyRVTg0ukxoJstYILabYwkccTWr+4AW0WMc +gobZ4HrbWCRmrLz+PFfOLFXVp4TOAK+wapP9A4bVyveqyPOdRDfxJhW3ERTCi/lY +kK0TdppiyQgD2cg8GVisq16E5HuJoL6jQRIuhwIDAQABAoIBAQCHFz5/AvpIGzpS +xVR2IYn5leHaX5JnTyLqB2I8IjEEgkBJj6iBBbVKRFiFSXYjZdctVh6NZnjGWKwF +PK9rNg55BgVMDeXkQTpK5kGNQ4M/4bF3VwbXnqGyRK8vb0LEt41P7mwbcMgnTkPg +713YD/va6fZ5T7nrmNe/LCtb9wnXpm624Msrmn6Bu65jOJ3UjGwcoylnUKpXxWtj +ZLS9MJbuZme7z7iLgAjxGAQXKc3tOiuQqyNsNej2cpoL5YgKOjgKUeL352l1j0DE +3ujKtEvOCvi0SgZsYRPuusZZr0nmUj/i+fA/LAu8xD5zMmeTpZ+fVdl9lOyNCGz8 +z9JNBjxhAoGBAM+QGcJX0yUABpxcAE/oIXgYO01XHVWICdmFiDnkU7Fp/B9x9b3u +wE2+I5Zt07ugWs+g2dMS05o1EM6mIEcHxquBinbIcNILDO0MCL8y2aC72zd2Gx7e +TT60XLrz5/NaKa1UB4Qc/4DTTYe9HjUjMAwm7M4AnV0t7n2/9y+/p6ZxAoGBAMzz +B28CkTQT3cn0YZKhDdsgorcndBtE8zQyDSO8a1BOFSAgxPTaVRyCNw1T6v0M6DQ9 +Z7vc/GXI/FUOAMea/t/lGZa/ofNQKcJZD8IC7m29RDarX/xfi7cS5s9yKF2lYTSW +rwCZRSYBQpE8hm8Ie7x4mvuNTaZNlVWxyv8laNB3AoGAEKi0KJD79WBHJ42KyN8M +sKLhP5faVt8QS1EYWe0lenvTLILtAk2DSboVCSHPeKOqJjf2w6YjLaFMtAlJVeod +2+4NuvLjezg/1Va97Pqb1Pa+5XipPJUDBiFbv/WLjFCUP8EayVO6fhB3jIl1PzaP +yKnnH7GU78Gb/qPFpyNuxUECgYBV9hlIFmuQzERaUIYcWjDVl/qnl4S7a1AWtGeO +dZkNNbLmptf1Wx4XtwYgMPJ+8Mr0Hk1EHow+pO4xPo5VKk182zrAX+AtjZH2UiSp +21Dl9lyGEZtQ30JapzLoD5merZ73z7vXJHI8XortH9XC/GvpwSxAFiRbfG8GYmwi +WC5+QQKBgE96arYXfMRYgimcAv5F1IKo10sjusz73Xf/kebS9sYPBUt3snomlhaf +6A3BL9pGI7GmV0K8zUR8qBaj+8IwqgjDu7eJKKEanbbeeqcYNV66es7Pg606XVwZ +82p7i8mC4epZzArgDuCcQr0FOs+Ii9OxdOFyg2ew9nYgsETbYFpU +-----END RSA PRIVATE KEY----- diff --git a/zbx_env/var/lib/mysql/ca.pem b/zbx_env/var/lib/mysql/ca.pem new file mode 100644 index 000000000..448a981f3 --- /dev/null +++ b/zbx_env/var/lib/mysql/ca.pem @@ -0,0 +1,19 @@ +-----BEGIN CERTIFICATE----- +MIIDAzCCAeugAwIBAgIBATANBgkqhkiG9w0BAQsFADA8MTowOAYDVQQDDDFNeVNR +TF9TZXJ2ZXJfNS43LjIyX0F1dG9fR2VuZXJhdGVkX0NBX0NlcnRpZmljYXRlMB4X +DTE4MDcyMDAxNTEyN1oXDTI4MDcxNzAxNTEyN1owPDE6MDgGA1UEAwwxTXlTUUxf +U2VydmVyXzUuNy4yMl9BdXRvX0dlbmVyYXRlZF9DQV9DZXJ0aWZpY2F0ZTCCASIw +DQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAKYr4FZDufWee17Xl4n7b5RyULuq +tQ18MXUj1NSb6i31yeLpMQSb4cR5p3QhIb1CiUCvVvYj9e7QpkcbMa1kSAy+tTPa ++STm9GgJyPF18Ej7NNW0ct5x5FZ2C0XZ1LUxsnmv/6m6QoKAwfXM5h0AY4hsrJad +fbxteLkado5+8cQ0tVhtGwWX9Ta/b6nyFH5ACO3b/rFAIDDsotJckVU4NLpMaCbL +WCC2m2MJHHE1q/uAFtFjHIKG2eB621gkZqy8/jxXzixV1aeEzgCvsGqT/QOG1cr3 +qsjznUQ38SYVtxEUwov5WJCtE3aaYskIA9nIPBlYrKtehOR7iaC+o0ESLocCAwEA +AaMQMA4wDAYDVR0TBAUwAwEB/zANBgkqhkiG9w0BAQsFAAOCAQEACoSai4nVlgN3 +GLibj6KBDrl57IPSZnKf/+3krM36ZZeciPiRcMoDGYWwb4UE373M1o1+C21Z7hqX +mrzJBVrYiyEmcGwgCvDE07CmjLJ9bw8Hp6m5lYe8qkxo0v9bZPh95W7kDohdt7Vk +CstwHni5+XeVhXHtoB4zOfEK5oEUVxTDDp7CkLQZrEaxb0/j07TCYq1IV+j6Hhmb +sY0eapvvHrFyygRpax39mPGAjfCCU4DV5BKssSNzEjVu69Mu9Yiz6/IUJTW6Hyf5 +4qtVJICz/VfeI0IWo/tkHUsq5pROdYChoSm6VDPSR4TbfZ8O66bUNF4SQCiZvuLQ +2W/c8sxxHQ== +-----END CERTIFICATE----- diff --git a/zbx_env/var/lib/mysql/client-cert.pem b/zbx_env/var/lib/mysql/client-cert.pem new file mode 100644 index 000000000..8fe10a615 --- /dev/null +++ b/zbx_env/var/lib/mysql/client-cert.pem @@ -0,0 +1,19 @@ +-----BEGIN CERTIFICATE----- +MIIDBDCCAeygAwIBAgIBAzANBgkqhkiG9w0BAQsFADA8MTowOAYDVQQDDDFNeVNR +TF9TZXJ2ZXJfNS43LjIyX0F1dG9fR2VuZXJhdGVkX0NBX0NlcnRpZmljYXRlMB4X +DTE4MDcyMDAxNTEyN1oXDTI4MDcxNzAxNTEyN1owQDE+MDwGA1UEAww1TXlTUUxf +U2VydmVyXzUuNy4yMl9BdXRvX0dlbmVyYXRlZF9DbGllbnRfQ2VydGlmaWNhdGUw +ggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDHNRq5AipB6mruZq2AX8Au +s5KAN/YrXhtNV93z8YMQ2l3wsYEBGx2DmzuUN0lOF4voMIrvCeCTqdNwetyO4rbn +tV4T2jNmhUq8fFX38qjOjO1POnjJq6imOLR1SO2dJ5y97yNjelD8RrfdYtMOBwtH +KKqLWC56kKcto5vD1lOpOBR8tPtx5qHktsUvhkcZ8vPv7fsq3/xdCNdVbgaqv4+O +Z8G0lRxMerRRtPwoylG+l8WAI71LZWtL6j3XAnagv5CRo8NHc+6w7T+O36XuKDO2 +EFH+SaCLjqBKLhawl1rNBrRZMQ580bprEfBkmRsZR/k6MvblIV884bBxaRQLg89/ +AgMBAAGjDTALMAkGA1UdEwQCMAAwDQYJKoZIhvcNAQELBQADggEBADBjzJQwyBQg +B0a9nVBi1/EN4EUIg10L/D92PwOqC3xTnsXSCDpaJlGTnHa2uMV7nDoWGMj2pHuP +KQ6iuC9TKYxlEzSgqTGMmkouSg7Y8VI4goRTCIl5qDbjyqwy3XzFObhho1EUsSYs +xhpvFFapL5Jkd8fRkhJkTtLt8i2fJ8Vg1BFoIx3iUQLsdN6T61318IHDfNmMe9Ov +fHKyvuH/zy7Js/PCP0FzwtWHLI5sTWqTGOzrn37rVetMVE6FM4aPlauFKXEHHjsL +0HAvWiu52Io8dN9FkQ/OdJE5RL0SyPDNkNMOYVvJbHuzCh5iGTDpExJhkPy+/dBR +XS6PcfgmFMA= +-----END CERTIFICATE----- diff --git a/zbx_env/var/lib/mysql/client-key.pem b/zbx_env/var/lib/mysql/client-key.pem new file mode 100644 index 000000000..bc7a6c1bb --- /dev/null +++ b/zbx_env/var/lib/mysql/client-key.pem @@ -0,0 +1,27 @@ +-----BEGIN RSA PRIVATE KEY----- +MIIEpAIBAAKCAQEAxzUauQIqQepq7matgF/ALrOSgDf2K14bTVfd8/GDENpd8LGB +ARsdg5s7lDdJTheL6DCK7wngk6nTcHrcjuK257VeE9ozZoVKvHxV9/KozoztTzp4 +yauopji0dUjtnSecve8jY3pQ/Ea33WLTDgcLRyiqi1guepCnLaObw9ZTqTgUfLT7 +ceah5LbFL4ZHGfLz7+37Kt/8XQjXVW4Gqr+PjmfBtJUcTHq0UbT8KMpRvpfFgCO9 +S2VrS+o91wJ2oL+QkaPDR3PusO0/jt+l7igzthBR/kmgi46gSi4WsJdazQa0WTEO +fNG6axHwZJkbGUf5OjL25SFfPOGwcWkUC4PPfwIDAQABAoIBAQC4WYueVMOYdoB4 +mSrNF085qNLVt3QnlBI+FCeBvinlqb+vpATXail5Bmovcq5zB1VhDbM1HXXoEQxs +FjcQP/y2F2C1jINux8FvBr1kFPtlEoP2gw0OzL3o/ab6tv+2JNdn6etc/u/9VtCG +nxLj817bfmW9SGDS6hTcJoFazXhkqq+yXbnKCT45Af8eydqhmqaCP8AMYyJ8m45q +8S0Zmt6DJYlSmuY9ZBB5VZUogKupM7tE8UL2WozmpC1IYidPG4c/u0Fhxzm0JCB6 +P2+lpigeWWYSbNsl7ZMoRy2uSk/QrELk5qLIpE9o1Im196P6BaxGhz9DjlRIIzQv +9Fg6DuVBAoGBAO4u8rTRy21qkwPRKdgb7FdlndwxtqGcbmS9FPg5N4O0IIraq3QZ +CdArnzKd+fwDtGq23hYYgdX6/UvpAM+YyuWqYjAtPz4d2pYHGvLklKS8OHlUY5aU +mry++ljvv5uMtqxIAJkgkKCpUO6p3aWQu6E/oIenFcFXDcRe1QNcrQBhAoGBANYb +ywNBQGl/A5YkY8wl5XNk8XsA3TZVprSRP/Zb/M6vmW7uUxgi/HfH9v0cJepH0lzy +4WvjBFMWcXJy2jmuNZXQZ9vTdHVusVcLx+HoOh7Z5GOwBPSU+c1XhMa99+GUrGOX +MhbN6tCEfHfLC4PYEtHOAjQaRieI0wNlrv+oblvfAoGBAIokHIwW6X9KQn4CP9yh +RU/jFc1x39SXn8c5iwH0XWg7fmxKKwqowvJDeo+m5CfwFiGWcfQqvpLWgTYXq2q7 +2WGeklgSxg1Gz1IYSN77B+MLb02fTis1gRFbSmNumZij4gbFs+Mb6gXkbZYeWvj9 +mnUJLBfBJnL+BHQR9EWA6K3BAoGAQVH1W6bamdTQKUwszil5mPzg1x/qXRtAYrI1 +i1mBBSV5b+hxnVl/IKP27D1cK9+BhC3tK9b0iMy+C6aSgSpu2qfcJ6qZSwJcRCwp +7PfGU4cyMF+RA3U3yLe8oE1whHexKCkGdQKZcsgYmQtvFegjxbJN5ctmP8V0awLo +osKl+I0CgYAQwbw5dnCdWhC+IAWYGG4dZEN7iNgNdBMUc/ZaPB/PEPeHXIktYjV6 +mAMR1GXhYfZildke95XWoSm3XChWou/MYgYNOKXAZG1Zn2i+RBCSbi2Sh8ukqOp5 +U0lF1HJHQZ8iGzVi4r3usFqAaqLKCBMECDK/ijeGrXcbd0wbn1xrkQ== +-----END RSA PRIVATE KEY----- diff --git a/zbx_env/var/lib/mysql/ib_buffer_pool b/zbx_env/var/lib/mysql/ib_buffer_pool new file mode 100644 index 000000000..183e31593 --- /dev/null +++ b/zbx_env/var/lib/mysql/ib_buffer_pool @@ -0,0 +1,207 @@ +3,3 +0,51 +10,313 +0,546 +0,243 +10,312 +10,311 +0,545 +10,310 +0,544 +10,309 +10,308 +0,543 +10,307 +0,542 +10,306 +10,305 +0,541 +11,29 +10,304 +0,540 +10,303 +0,539 +10,302 +8,18 +10,301 +0,538 +10,300 +0,537 +10,299 +0,536 +10,298 +10,297 +0,535 +10,296 +0,534 +10,295 +10,294 +0,533 +10,293 +11,28 +0,532 +10,292 +10,291 +0,531 +10,290 +0,530 +10,289 +10,288 +0,529 +10,287 +0,528 +10,286 +10,285 +0,527 +10,284 +0,526 +10,283 +10,282 +0,525 +10,281 +0,524 +10,280 +10,279 +11,27 +0,523 +9,7 +10,278 +0,522 +10,277 +0,521 +10,276 +10,275 +0,520 +10,274 +0,519 +10,273 +10,272 +0,518 +10,271 +0,517 +10,270 +10,269 +0,516 +10,268 +0,515 +10,267 +8,17 +10,266 +0,514 +10,265 +0,513 +10,264 +11,26 +10,263 +0,512 +10,262 +0,511 +10,261 +0,510 +10,260 +10,259 +0,509 +11,25 +10,258 +0,508 +10,257 +0,507 +10,256 +10,255 +0,506 +10,254 +0,505 +10,253 +0,504 +10,252 +10,251 +0,503 +10,250 +0,502 +10,249 +11,24 +10,248 +0,501 +10,247 +0,500 +10,246 +10,245 +0,499 +10,244 +0,498 +8,16 +10,243 +10,242 +0,497 +10,241 +0,496 +10,240 +10,239 +0,495 +10,238 +0,494 +10,237 +10,236 +0,493 +8,15 +10,235 +11,23 +0,492 +10,234 +10,233 +0,491 +10,232 +0,490 +10,231 +10,230 +0,489 +10,229 +0,488 +10,228 +0,487 +10,227 +10,226 +0,486 +10,225 +0,485 +10,224 +11,22 +10,223 +0,484 +10,222 +0,483 +10,221 +0,482 +10,220 +10,219 +0,481 +10,218 +0,480 +10,217 +10,216 +0,479 +10,215 +0,478 +10,214 +0,477 +10,213 +11,21 +10,212 +0,476 +10,211 +8,14 +8,13 +0,475 +10,210 +0,474 +10,209 +10,208 +0,473 +10,207 +0,472 +10,206 +10,205 +0,471 +10,204 +11,20 +0,470 diff --git a/zbx_env/var/lib/mysql/ib_logfile0 b/zbx_env/var/lib/mysql/ib_logfile0 new file mode 100644 index 000000000..cc4ca8242 Binary files /dev/null and b/zbx_env/var/lib/mysql/ib_logfile0 differ diff --git a/zbx_env/var/lib/mysql/ib_logfile1 b/zbx_env/var/lib/mysql/ib_logfile1 new file mode 100644 index 000000000..274bba07c Binary files /dev/null and b/zbx_env/var/lib/mysql/ib_logfile1 differ diff --git a/zbx_env/var/lib/mysql/ibdata1 b/zbx_env/var/lib/mysql/ibdata1 new file mode 100644 index 000000000..66105e7d3 Binary files /dev/null and b/zbx_env/var/lib/mysql/ibdata1 differ diff --git a/zbx_env/var/lib/mysql/ibtmp1 b/zbx_env/var/lib/mysql/ibtmp1 new file mode 100644 index 000000000..69075c212 Binary files /dev/null and b/zbx_env/var/lib/mysql/ibtmp1 differ diff --git a/zbx_env/var/lib/mysql/mysql/columns_priv.MYD b/zbx_env/var/lib/mysql/mysql/columns_priv.MYD new file mode 100644 index 000000000..e69de29bb diff --git a/zbx_env/var/lib/mysql/mysql/columns_priv.MYI b/zbx_env/var/lib/mysql/mysql/columns_priv.MYI new file mode 100644 index 000000000..e94f34bdd Binary files /dev/null and b/zbx_env/var/lib/mysql/mysql/columns_priv.MYI differ diff --git a/zbx_env/var/lib/mysql/mysql/columns_priv.frm b/zbx_env/var/lib/mysql/mysql/columns_priv.frm new file mode 100644 index 000000000..4d876d0cc Binary files /dev/null and b/zbx_env/var/lib/mysql/mysql/columns_priv.frm differ diff --git a/zbx_env/var/lib/mysql/mysql/db.MYD b/zbx_env/var/lib/mysql/mysql/db.MYD new file mode 100644 index 000000000..0b15fac07 --- /dev/null +++ b/zbx_env/var/lib/mysql/mysql/db.MYD @@ -0,0 +1 @@ +ÿlocalhost performance_schema mysql.session ÿlocalhost sys mysql.sys ÿ% zabbix zabbix ÿ% zabbix_proxy zabbix  \ No newline at end of file diff --git a/zbx_env/var/lib/mysql/mysql/db.MYI b/zbx_env/var/lib/mysql/mysql/db.MYI new file mode 100644 index 000000000..2873ee76a Binary files /dev/null and b/zbx_env/var/lib/mysql/mysql/db.MYI differ diff --git a/zbx_env/var/lib/mysql/mysql/db.frm b/zbx_env/var/lib/mysql/mysql/db.frm new file mode 100644 index 000000000..b28787435 Binary files /dev/null and b/zbx_env/var/lib/mysql/mysql/db.frm differ diff --git a/zbx_env/var/lib/mysql/mysql/db.opt b/zbx_env/var/lib/mysql/mysql/db.opt new file mode 100644 index 000000000..16221b854 --- /dev/null +++ b/zbx_env/var/lib/mysql/mysql/db.opt @@ -0,0 +1,2 @@ +default-character-set=utf8 +default-collation=utf8_bin diff --git a/zbx_env/var/lib/mysql/mysql/engine_cost.frm b/zbx_env/var/lib/mysql/mysql/engine_cost.frm new file mode 100644 index 000000000..958ade30b Binary files /dev/null and b/zbx_env/var/lib/mysql/mysql/engine_cost.frm differ diff --git a/zbx_env/var/lib/mysql/mysql/engine_cost.ibd b/zbx_env/var/lib/mysql/mysql/engine_cost.ibd new file mode 100644 index 000000000..fed7c6562 Binary files /dev/null and b/zbx_env/var/lib/mysql/mysql/engine_cost.ibd differ diff --git a/zbx_env/var/lib/mysql/mysql/event.MYD b/zbx_env/var/lib/mysql/mysql/event.MYD new file mode 100644 index 000000000..e69de29bb diff --git a/zbx_env/var/lib/mysql/mysql/event.MYI b/zbx_env/var/lib/mysql/mysql/event.MYI new file mode 100644 index 000000000..4945fcb49 Binary files /dev/null and b/zbx_env/var/lib/mysql/mysql/event.MYI differ diff --git a/zbx_env/var/lib/mysql/mysql/event.frm b/zbx_env/var/lib/mysql/mysql/event.frm new file mode 100644 index 000000000..721c43ce7 Binary files /dev/null and b/zbx_env/var/lib/mysql/mysql/event.frm differ diff --git a/zbx_env/var/lib/mysql/mysql/func.MYD b/zbx_env/var/lib/mysql/mysql/func.MYD new file mode 100644 index 000000000..e69de29bb diff --git a/zbx_env/var/lib/mysql/mysql/func.MYI b/zbx_env/var/lib/mysql/mysql/func.MYI new file mode 100644 index 000000000..a64a72ac9 Binary files /dev/null and b/zbx_env/var/lib/mysql/mysql/func.MYI differ diff --git a/zbx_env/var/lib/mysql/mysql/func.frm b/zbx_env/var/lib/mysql/mysql/func.frm new file mode 100644 index 000000000..2947eb076 Binary files /dev/null and b/zbx_env/var/lib/mysql/mysql/func.frm differ diff --git a/zbx_env/var/lib/mysql/mysql/general_log.CSM b/zbx_env/var/lib/mysql/mysql/general_log.CSM new file mode 100644 index 000000000..8d08b8db9 Binary files /dev/null and b/zbx_env/var/lib/mysql/mysql/general_log.CSM differ diff --git a/zbx_env/var/lib/mysql/mysql/general_log.CSV b/zbx_env/var/lib/mysql/mysql/general_log.CSV new file mode 100644 index 000000000..e69de29bb diff --git a/zbx_env/var/lib/mysql/mysql/general_log.frm b/zbx_env/var/lib/mysql/mysql/general_log.frm new file mode 100644 index 000000000..522353b76 Binary files /dev/null and b/zbx_env/var/lib/mysql/mysql/general_log.frm differ diff --git a/zbx_env/var/lib/mysql/mysql/gtid_executed.frm b/zbx_env/var/lib/mysql/mysql/gtid_executed.frm new file mode 100644 index 000000000..f476407ca Binary files /dev/null and b/zbx_env/var/lib/mysql/mysql/gtid_executed.frm differ diff --git a/zbx_env/var/lib/mysql/mysql/gtid_executed.ibd b/zbx_env/var/lib/mysql/mysql/gtid_executed.ibd new file mode 100644 index 000000000..4bbcddb9f Binary files /dev/null and b/zbx_env/var/lib/mysql/mysql/gtid_executed.ibd differ diff --git a/zbx_env/var/lib/mysql/mysql/help_category.frm b/zbx_env/var/lib/mysql/mysql/help_category.frm new file mode 100644 index 000000000..09e5dda43 Binary files /dev/null and b/zbx_env/var/lib/mysql/mysql/help_category.frm differ diff --git a/zbx_env/var/lib/mysql/mysql/help_category.ibd b/zbx_env/var/lib/mysql/mysql/help_category.ibd new file mode 100644 index 000000000..4f1556327 Binary files /dev/null and b/zbx_env/var/lib/mysql/mysql/help_category.ibd differ diff --git a/zbx_env/var/lib/mysql/mysql/help_keyword.frm b/zbx_env/var/lib/mysql/mysql/help_keyword.frm new file mode 100644 index 000000000..7b2ca867b Binary files /dev/null and b/zbx_env/var/lib/mysql/mysql/help_keyword.frm differ diff --git a/zbx_env/var/lib/mysql/mysql/help_keyword.ibd b/zbx_env/var/lib/mysql/mysql/help_keyword.ibd new file mode 100644 index 000000000..2bca58755 Binary files /dev/null and b/zbx_env/var/lib/mysql/mysql/help_keyword.ibd differ diff --git a/zbx_env/var/lib/mysql/mysql/help_relation.frm b/zbx_env/var/lib/mysql/mysql/help_relation.frm new file mode 100644 index 000000000..578f403ef Binary files /dev/null and b/zbx_env/var/lib/mysql/mysql/help_relation.frm differ diff --git a/zbx_env/var/lib/mysql/mysql/help_relation.ibd b/zbx_env/var/lib/mysql/mysql/help_relation.ibd new file mode 100644 index 000000000..76a86347b Binary files /dev/null and b/zbx_env/var/lib/mysql/mysql/help_relation.ibd differ diff --git a/zbx_env/var/lib/mysql/mysql/help_topic.frm b/zbx_env/var/lib/mysql/mysql/help_topic.frm new file mode 100644 index 000000000..3a08671d4 Binary files /dev/null and b/zbx_env/var/lib/mysql/mysql/help_topic.frm differ diff --git a/zbx_env/var/lib/mysql/mysql/help_topic.ibd b/zbx_env/var/lib/mysql/mysql/help_topic.ibd new file mode 100644 index 000000000..306a39899 Binary files /dev/null and b/zbx_env/var/lib/mysql/mysql/help_topic.ibd differ diff --git a/zbx_env/var/lib/mysql/mysql/innodb_index_stats.frm b/zbx_env/var/lib/mysql/mysql/innodb_index_stats.frm new file mode 100644 index 000000000..8eff8c664 Binary files /dev/null and b/zbx_env/var/lib/mysql/mysql/innodb_index_stats.frm differ diff --git a/zbx_env/var/lib/mysql/mysql/innodb_index_stats.ibd b/zbx_env/var/lib/mysql/mysql/innodb_index_stats.ibd new file mode 100644 index 000000000..6663ee2da Binary files /dev/null and b/zbx_env/var/lib/mysql/mysql/innodb_index_stats.ibd differ diff --git a/zbx_env/var/lib/mysql/mysql/innodb_table_stats.frm b/zbx_env/var/lib/mysql/mysql/innodb_table_stats.frm new file mode 100644 index 000000000..63512d91e Binary files /dev/null and b/zbx_env/var/lib/mysql/mysql/innodb_table_stats.frm differ diff --git a/zbx_env/var/lib/mysql/mysql/innodb_table_stats.ibd b/zbx_env/var/lib/mysql/mysql/innodb_table_stats.ibd new file mode 100644 index 000000000..8cb2e1525 Binary files /dev/null and b/zbx_env/var/lib/mysql/mysql/innodb_table_stats.ibd differ diff --git a/zbx_env/var/lib/mysql/mysql/ndb_binlog_index.MYD b/zbx_env/var/lib/mysql/mysql/ndb_binlog_index.MYD new file mode 100644 index 000000000..e69de29bb diff --git a/zbx_env/var/lib/mysql/mysql/ndb_binlog_index.MYI b/zbx_env/var/lib/mysql/mysql/ndb_binlog_index.MYI new file mode 100644 index 000000000..c11384ce7 Binary files /dev/null and b/zbx_env/var/lib/mysql/mysql/ndb_binlog_index.MYI differ diff --git a/zbx_env/var/lib/mysql/mysql/ndb_binlog_index.frm b/zbx_env/var/lib/mysql/mysql/ndb_binlog_index.frm new file mode 100644 index 000000000..6640d9c43 Binary files /dev/null and b/zbx_env/var/lib/mysql/mysql/ndb_binlog_index.frm differ diff --git a/zbx_env/var/lib/mysql/mysql/plugin.frm b/zbx_env/var/lib/mysql/mysql/plugin.frm new file mode 100644 index 000000000..d2d214725 Binary files /dev/null and b/zbx_env/var/lib/mysql/mysql/plugin.frm differ diff --git a/zbx_env/var/lib/mysql/mysql/plugin.ibd b/zbx_env/var/lib/mysql/mysql/plugin.ibd new file mode 100644 index 000000000..b0fc04b21 Binary files /dev/null and b/zbx_env/var/lib/mysql/mysql/plugin.ibd differ diff --git a/zbx_env/var/lib/mysql/mysql/proc.MYD b/zbx_env/var/lib/mysql/mysql/proc.MYD new file mode 100644 index 000000000..fc75d786d Binary files /dev/null and b/zbx_env/var/lib/mysql/mysql/proc.MYD differ diff --git a/zbx_env/var/lib/mysql/mysql/proc.MYI b/zbx_env/var/lib/mysql/mysql/proc.MYI new file mode 100644 index 000000000..8f47aef2a Binary files /dev/null and b/zbx_env/var/lib/mysql/mysql/proc.MYI differ diff --git a/zbx_env/var/lib/mysql/mysql/proc.frm b/zbx_env/var/lib/mysql/mysql/proc.frm new file mode 100644 index 000000000..29230237d Binary files /dev/null and b/zbx_env/var/lib/mysql/mysql/proc.frm differ diff --git a/zbx_env/var/lib/mysql/mysql/procs_priv.MYD b/zbx_env/var/lib/mysql/mysql/procs_priv.MYD new file mode 100644 index 000000000..e69de29bb diff --git a/zbx_env/var/lib/mysql/mysql/procs_priv.MYI b/zbx_env/var/lib/mysql/mysql/procs_priv.MYI new file mode 100644 index 000000000..07aeb3492 Binary files /dev/null and b/zbx_env/var/lib/mysql/mysql/procs_priv.MYI differ diff --git a/zbx_env/var/lib/mysql/mysql/procs_priv.frm b/zbx_env/var/lib/mysql/mysql/procs_priv.frm new file mode 100644 index 000000000..6cbbca195 Binary files /dev/null and b/zbx_env/var/lib/mysql/mysql/procs_priv.frm differ diff --git a/zbx_env/var/lib/mysql/mysql/proxies_priv.MYD b/zbx_env/var/lib/mysql/mysql/proxies_priv.MYD new file mode 100644 index 000000000..0b64b53de Binary files /dev/null and b/zbx_env/var/lib/mysql/mysql/proxies_priv.MYD differ diff --git a/zbx_env/var/lib/mysql/mysql/proxies_priv.MYI b/zbx_env/var/lib/mysql/mysql/proxies_priv.MYI new file mode 100644 index 000000000..7b5cfb6d6 Binary files /dev/null and b/zbx_env/var/lib/mysql/mysql/proxies_priv.MYI differ diff --git a/zbx_env/var/lib/mysql/mysql/proxies_priv.frm b/zbx_env/var/lib/mysql/mysql/proxies_priv.frm new file mode 100644 index 000000000..e13b60937 Binary files /dev/null and b/zbx_env/var/lib/mysql/mysql/proxies_priv.frm differ diff --git a/zbx_env/var/lib/mysql/mysql/server_cost.frm b/zbx_env/var/lib/mysql/mysql/server_cost.frm new file mode 100644 index 000000000..719de6113 Binary files /dev/null and b/zbx_env/var/lib/mysql/mysql/server_cost.frm differ diff --git a/zbx_env/var/lib/mysql/mysql/server_cost.ibd b/zbx_env/var/lib/mysql/mysql/server_cost.ibd new file mode 100644 index 000000000..b4b33bceb Binary files /dev/null and b/zbx_env/var/lib/mysql/mysql/server_cost.ibd differ diff --git a/zbx_env/var/lib/mysql/mysql/servers.frm b/zbx_env/var/lib/mysql/mysql/servers.frm new file mode 100644 index 000000000..cc9b33f55 Binary files /dev/null and b/zbx_env/var/lib/mysql/mysql/servers.frm differ diff --git a/zbx_env/var/lib/mysql/mysql/servers.ibd b/zbx_env/var/lib/mysql/mysql/servers.ibd new file mode 100644 index 000000000..9665c6fd7 Binary files /dev/null and b/zbx_env/var/lib/mysql/mysql/servers.ibd differ diff --git a/zbx_env/var/lib/mysql/mysql/slave_master_info.frm b/zbx_env/var/lib/mysql/mysql/slave_master_info.frm new file mode 100644 index 000000000..1a17d724c Binary files /dev/null and b/zbx_env/var/lib/mysql/mysql/slave_master_info.frm differ diff --git a/zbx_env/var/lib/mysql/mysql/slave_master_info.ibd b/zbx_env/var/lib/mysql/mysql/slave_master_info.ibd new file mode 100644 index 000000000..11a48086c Binary files /dev/null and b/zbx_env/var/lib/mysql/mysql/slave_master_info.ibd differ diff --git a/zbx_env/var/lib/mysql/mysql/slave_relay_log_info.frm b/zbx_env/var/lib/mysql/mysql/slave_relay_log_info.frm new file mode 100644 index 000000000..37646f0c3 Binary files /dev/null and b/zbx_env/var/lib/mysql/mysql/slave_relay_log_info.frm differ diff --git a/zbx_env/var/lib/mysql/mysql/slave_relay_log_info.ibd b/zbx_env/var/lib/mysql/mysql/slave_relay_log_info.ibd new file mode 100644 index 000000000..bd308dd5f Binary files /dev/null and b/zbx_env/var/lib/mysql/mysql/slave_relay_log_info.ibd differ diff --git a/zbx_env/var/lib/mysql/mysql/slave_worker_info.frm b/zbx_env/var/lib/mysql/mysql/slave_worker_info.frm new file mode 100644 index 000000000..c7908e1fe Binary files /dev/null and b/zbx_env/var/lib/mysql/mysql/slave_worker_info.frm differ diff --git a/zbx_env/var/lib/mysql/mysql/slave_worker_info.ibd b/zbx_env/var/lib/mysql/mysql/slave_worker_info.ibd new file mode 100644 index 000000000..987cf448a Binary files /dev/null and b/zbx_env/var/lib/mysql/mysql/slave_worker_info.ibd differ diff --git a/zbx_env/var/lib/mysql/mysql/slow_log.CSM b/zbx_env/var/lib/mysql/mysql/slow_log.CSM new file mode 100644 index 000000000..8d08b8db9 Binary files /dev/null and b/zbx_env/var/lib/mysql/mysql/slow_log.CSM differ diff --git a/zbx_env/var/lib/mysql/mysql/slow_log.CSV b/zbx_env/var/lib/mysql/mysql/slow_log.CSV new file mode 100644 index 000000000..e69de29bb diff --git a/zbx_env/var/lib/mysql/mysql/slow_log.frm b/zbx_env/var/lib/mysql/mysql/slow_log.frm new file mode 100644 index 000000000..56e0c9b6e Binary files /dev/null and b/zbx_env/var/lib/mysql/mysql/slow_log.frm differ diff --git a/zbx_env/var/lib/mysql/mysql/tables_priv.MYD b/zbx_env/var/lib/mysql/mysql/tables_priv.MYD new file mode 100644 index 000000000..e083bd37d Binary files /dev/null and b/zbx_env/var/lib/mysql/mysql/tables_priv.MYD differ diff --git a/zbx_env/var/lib/mysql/mysql/tables_priv.MYI b/zbx_env/var/lib/mysql/mysql/tables_priv.MYI new file mode 100644 index 000000000..9003fc687 Binary files /dev/null and b/zbx_env/var/lib/mysql/mysql/tables_priv.MYI differ diff --git a/zbx_env/var/lib/mysql/mysql/tables_priv.frm b/zbx_env/var/lib/mysql/mysql/tables_priv.frm new file mode 100644 index 000000000..443d01d04 Binary files /dev/null and b/zbx_env/var/lib/mysql/mysql/tables_priv.frm differ diff --git a/zbx_env/var/lib/mysql/mysql/time_zone.frm b/zbx_env/var/lib/mysql/mysql/time_zone.frm new file mode 100644 index 000000000..3fefe5d9b Binary files /dev/null and b/zbx_env/var/lib/mysql/mysql/time_zone.frm differ diff --git a/zbx_env/var/lib/mysql/mysql/time_zone.ibd b/zbx_env/var/lib/mysql/mysql/time_zone.ibd new file mode 100644 index 000000000..6c88e7be1 Binary files /dev/null and b/zbx_env/var/lib/mysql/mysql/time_zone.ibd differ diff --git a/zbx_env/var/lib/mysql/mysql/time_zone_leap_second.frm b/zbx_env/var/lib/mysql/mysql/time_zone_leap_second.frm new file mode 100644 index 000000000..9f29432b5 Binary files /dev/null and b/zbx_env/var/lib/mysql/mysql/time_zone_leap_second.frm differ diff --git a/zbx_env/var/lib/mysql/mysql/time_zone_leap_second.ibd b/zbx_env/var/lib/mysql/mysql/time_zone_leap_second.ibd new file mode 100644 index 000000000..ddc559c23 Binary files /dev/null and b/zbx_env/var/lib/mysql/mysql/time_zone_leap_second.ibd differ diff --git a/zbx_env/var/lib/mysql/mysql/time_zone_name.frm b/zbx_env/var/lib/mysql/mysql/time_zone_name.frm new file mode 100644 index 000000000..9bab38580 Binary files /dev/null and b/zbx_env/var/lib/mysql/mysql/time_zone_name.frm differ diff --git a/zbx_env/var/lib/mysql/mysql/time_zone_name.ibd b/zbx_env/var/lib/mysql/mysql/time_zone_name.ibd new file mode 100644 index 000000000..cbaa6d4e4 Binary files /dev/null and b/zbx_env/var/lib/mysql/mysql/time_zone_name.ibd differ diff --git a/zbx_env/var/lib/mysql/mysql/time_zone_transition.frm b/zbx_env/var/lib/mysql/mysql/time_zone_transition.frm new file mode 100644 index 000000000..dba99054d Binary files /dev/null and b/zbx_env/var/lib/mysql/mysql/time_zone_transition.frm differ diff --git a/zbx_env/var/lib/mysql/mysql/time_zone_transition.ibd b/zbx_env/var/lib/mysql/mysql/time_zone_transition.ibd new file mode 100644 index 000000000..80de583a6 Binary files /dev/null and b/zbx_env/var/lib/mysql/mysql/time_zone_transition.ibd differ diff --git a/zbx_env/var/lib/mysql/mysql/time_zone_transition_type.frm b/zbx_env/var/lib/mysql/mysql/time_zone_transition_type.frm new file mode 100644 index 000000000..b0c1d5b29 Binary files /dev/null and b/zbx_env/var/lib/mysql/mysql/time_zone_transition_type.frm differ diff --git a/zbx_env/var/lib/mysql/mysql/time_zone_transition_type.ibd b/zbx_env/var/lib/mysql/mysql/time_zone_transition_type.ibd new file mode 100644 index 000000000..fd2006971 Binary files /dev/null and b/zbx_env/var/lib/mysql/mysql/time_zone_transition_type.ibd differ diff --git a/zbx_env/var/lib/mysql/mysql/user.MYD b/zbx_env/var/lib/mysql/mysql/user.MYD new file mode 100644 index 000000000..77b749366 Binary files /dev/null and b/zbx_env/var/lib/mysql/mysql/user.MYD differ diff --git a/zbx_env/var/lib/mysql/mysql/user.MYI b/zbx_env/var/lib/mysql/mysql/user.MYI new file mode 100644 index 000000000..720815504 Binary files /dev/null and b/zbx_env/var/lib/mysql/mysql/user.MYI differ diff --git a/zbx_env/var/lib/mysql/mysql/user.frm b/zbx_env/var/lib/mysql/mysql/user.frm new file mode 100644 index 000000000..9b0f821f1 Binary files /dev/null and b/zbx_env/var/lib/mysql/mysql/user.frm differ diff --git a/zbx_env/var/lib/mysql/performance_schema/accounts.frm b/zbx_env/var/lib/mysql/performance_schema/accounts.frm new file mode 100644 index 000000000..b764693bc Binary files /dev/null and b/zbx_env/var/lib/mysql/performance_schema/accounts.frm differ diff --git a/zbx_env/var/lib/mysql/performance_schema/cond_instances.frm b/zbx_env/var/lib/mysql/performance_schema/cond_instances.frm new file mode 100644 index 000000000..70810c452 Binary files /dev/null and b/zbx_env/var/lib/mysql/performance_schema/cond_instances.frm differ diff --git a/zbx_env/var/lib/mysql/performance_schema/db.opt b/zbx_env/var/lib/mysql/performance_schema/db.opt new file mode 100644 index 000000000..4ed6015f9 --- /dev/null +++ b/zbx_env/var/lib/mysql/performance_schema/db.opt @@ -0,0 +1,2 @@ +default-character-set=utf8 +default-collation=utf8_general_ci diff --git a/zbx_env/var/lib/mysql/performance_schema/events_stages_current.frm b/zbx_env/var/lib/mysql/performance_schema/events_stages_current.frm new file mode 100644 index 000000000..04d8903e2 Binary files /dev/null and b/zbx_env/var/lib/mysql/performance_schema/events_stages_current.frm differ diff --git a/zbx_env/var/lib/mysql/performance_schema/events_stages_history.frm b/zbx_env/var/lib/mysql/performance_schema/events_stages_history.frm new file mode 100644 index 000000000..04d8903e2 Binary files /dev/null and b/zbx_env/var/lib/mysql/performance_schema/events_stages_history.frm differ diff --git a/zbx_env/var/lib/mysql/performance_schema/events_stages_history_long.frm b/zbx_env/var/lib/mysql/performance_schema/events_stages_history_long.frm new file mode 100644 index 000000000..04d8903e2 Binary files /dev/null and b/zbx_env/var/lib/mysql/performance_schema/events_stages_history_long.frm differ diff --git a/zbx_env/var/lib/mysql/performance_schema/events_stages_summary_by_account_by_event_name.frm b/zbx_env/var/lib/mysql/performance_schema/events_stages_summary_by_account_by_event_name.frm new file mode 100644 index 000000000..8eb89874b Binary files /dev/null and b/zbx_env/var/lib/mysql/performance_schema/events_stages_summary_by_account_by_event_name.frm differ diff --git a/zbx_env/var/lib/mysql/performance_schema/events_stages_summary_by_host_by_event_name.frm b/zbx_env/var/lib/mysql/performance_schema/events_stages_summary_by_host_by_event_name.frm new file mode 100644 index 000000000..e2aceca07 Binary files /dev/null and b/zbx_env/var/lib/mysql/performance_schema/events_stages_summary_by_host_by_event_name.frm differ diff --git a/zbx_env/var/lib/mysql/performance_schema/events_stages_summary_by_thread_by_event_name.frm b/zbx_env/var/lib/mysql/performance_schema/events_stages_summary_by_thread_by_event_name.frm new file mode 100644 index 000000000..fc6e9b848 Binary files /dev/null and b/zbx_env/var/lib/mysql/performance_schema/events_stages_summary_by_thread_by_event_name.frm differ diff --git a/zbx_env/var/lib/mysql/performance_schema/events_stages_summary_by_user_by_event_name.frm b/zbx_env/var/lib/mysql/performance_schema/events_stages_summary_by_user_by_event_name.frm new file mode 100644 index 000000000..4557abf99 Binary files /dev/null and b/zbx_env/var/lib/mysql/performance_schema/events_stages_summary_by_user_by_event_name.frm differ diff --git a/zbx_env/var/lib/mysql/performance_schema/events_stages_summary_global_by_event_name.frm b/zbx_env/var/lib/mysql/performance_schema/events_stages_summary_global_by_event_name.frm new file mode 100644 index 000000000..4590b336d Binary files /dev/null and b/zbx_env/var/lib/mysql/performance_schema/events_stages_summary_global_by_event_name.frm differ diff --git a/zbx_env/var/lib/mysql/performance_schema/events_statements_current.frm b/zbx_env/var/lib/mysql/performance_schema/events_statements_current.frm new file mode 100644 index 000000000..1d71ddbfa Binary files /dev/null and b/zbx_env/var/lib/mysql/performance_schema/events_statements_current.frm differ diff --git a/zbx_env/var/lib/mysql/performance_schema/events_statements_history.frm b/zbx_env/var/lib/mysql/performance_schema/events_statements_history.frm new file mode 100644 index 000000000..1d71ddbfa Binary files /dev/null and b/zbx_env/var/lib/mysql/performance_schema/events_statements_history.frm differ diff --git a/zbx_env/var/lib/mysql/performance_schema/events_statements_history_long.frm b/zbx_env/var/lib/mysql/performance_schema/events_statements_history_long.frm new file mode 100644 index 000000000..1d71ddbfa Binary files /dev/null and b/zbx_env/var/lib/mysql/performance_schema/events_statements_history_long.frm differ diff --git a/zbx_env/var/lib/mysql/performance_schema/events_statements_summary_by_account_by_event_name.frm b/zbx_env/var/lib/mysql/performance_schema/events_statements_summary_by_account_by_event_name.frm new file mode 100644 index 000000000..8d634b78c Binary files /dev/null and b/zbx_env/var/lib/mysql/performance_schema/events_statements_summary_by_account_by_event_name.frm differ diff --git a/zbx_env/var/lib/mysql/performance_schema/events_statements_summary_by_digest.frm b/zbx_env/var/lib/mysql/performance_schema/events_statements_summary_by_digest.frm new file mode 100644 index 000000000..743e7bd3e Binary files /dev/null and b/zbx_env/var/lib/mysql/performance_schema/events_statements_summary_by_digest.frm differ diff --git a/zbx_env/var/lib/mysql/performance_schema/events_statements_summary_by_host_by_event_name.frm b/zbx_env/var/lib/mysql/performance_schema/events_statements_summary_by_host_by_event_name.frm new file mode 100644 index 000000000..0caa8eacf Binary files /dev/null and b/zbx_env/var/lib/mysql/performance_schema/events_statements_summary_by_host_by_event_name.frm differ diff --git a/zbx_env/var/lib/mysql/performance_schema/events_statements_summary_by_program.frm b/zbx_env/var/lib/mysql/performance_schema/events_statements_summary_by_program.frm new file mode 100644 index 000000000..53a1aa192 Binary files /dev/null and b/zbx_env/var/lib/mysql/performance_schema/events_statements_summary_by_program.frm differ diff --git a/zbx_env/var/lib/mysql/performance_schema/events_statements_summary_by_thread_by_event_name.frm b/zbx_env/var/lib/mysql/performance_schema/events_statements_summary_by_thread_by_event_name.frm new file mode 100644 index 000000000..e3dc7000e Binary files /dev/null and b/zbx_env/var/lib/mysql/performance_schema/events_statements_summary_by_thread_by_event_name.frm differ diff --git a/zbx_env/var/lib/mysql/performance_schema/events_statements_summary_by_user_by_event_name.frm b/zbx_env/var/lib/mysql/performance_schema/events_statements_summary_by_user_by_event_name.frm new file mode 100644 index 000000000..2f15b9b31 Binary files /dev/null and b/zbx_env/var/lib/mysql/performance_schema/events_statements_summary_by_user_by_event_name.frm differ diff --git a/zbx_env/var/lib/mysql/performance_schema/events_statements_summary_global_by_event_name.frm b/zbx_env/var/lib/mysql/performance_schema/events_statements_summary_global_by_event_name.frm new file mode 100644 index 000000000..5e0e3ef66 Binary files /dev/null and b/zbx_env/var/lib/mysql/performance_schema/events_statements_summary_global_by_event_name.frm differ diff --git a/zbx_env/var/lib/mysql/performance_schema/events_transactions_current.frm b/zbx_env/var/lib/mysql/performance_schema/events_transactions_current.frm new file mode 100644 index 000000000..84c0e5da6 Binary files /dev/null and b/zbx_env/var/lib/mysql/performance_schema/events_transactions_current.frm differ diff --git a/zbx_env/var/lib/mysql/performance_schema/events_transactions_history.frm b/zbx_env/var/lib/mysql/performance_schema/events_transactions_history.frm new file mode 100644 index 000000000..84c0e5da6 Binary files /dev/null and b/zbx_env/var/lib/mysql/performance_schema/events_transactions_history.frm differ diff --git a/zbx_env/var/lib/mysql/performance_schema/events_transactions_history_long.frm b/zbx_env/var/lib/mysql/performance_schema/events_transactions_history_long.frm new file mode 100644 index 000000000..84c0e5da6 Binary files /dev/null and b/zbx_env/var/lib/mysql/performance_schema/events_transactions_history_long.frm differ diff --git a/zbx_env/var/lib/mysql/performance_schema/events_transactions_summary_by_account_by_event_name.frm b/zbx_env/var/lib/mysql/performance_schema/events_transactions_summary_by_account_by_event_name.frm new file mode 100644 index 000000000..c9eaf76c7 Binary files /dev/null and b/zbx_env/var/lib/mysql/performance_schema/events_transactions_summary_by_account_by_event_name.frm differ diff --git a/zbx_env/var/lib/mysql/performance_schema/events_transactions_summary_by_host_by_event_name.frm b/zbx_env/var/lib/mysql/performance_schema/events_transactions_summary_by_host_by_event_name.frm new file mode 100644 index 000000000..d15d7e0dd Binary files /dev/null and b/zbx_env/var/lib/mysql/performance_schema/events_transactions_summary_by_host_by_event_name.frm differ diff --git a/zbx_env/var/lib/mysql/performance_schema/events_transactions_summary_by_thread_by_event_name.frm b/zbx_env/var/lib/mysql/performance_schema/events_transactions_summary_by_thread_by_event_name.frm new file mode 100644 index 000000000..77836308c Binary files /dev/null and b/zbx_env/var/lib/mysql/performance_schema/events_transactions_summary_by_thread_by_event_name.frm differ diff --git a/zbx_env/var/lib/mysql/performance_schema/events_transactions_summary_by_user_by_event_name.frm b/zbx_env/var/lib/mysql/performance_schema/events_transactions_summary_by_user_by_event_name.frm new file mode 100644 index 000000000..383637ec9 Binary files /dev/null and b/zbx_env/var/lib/mysql/performance_schema/events_transactions_summary_by_user_by_event_name.frm differ diff --git a/zbx_env/var/lib/mysql/performance_schema/events_transactions_summary_global_by_event_name.frm b/zbx_env/var/lib/mysql/performance_schema/events_transactions_summary_global_by_event_name.frm new file mode 100644 index 000000000..573bd23a2 Binary files /dev/null and b/zbx_env/var/lib/mysql/performance_schema/events_transactions_summary_global_by_event_name.frm differ diff --git a/zbx_env/var/lib/mysql/performance_schema/events_waits_current.frm b/zbx_env/var/lib/mysql/performance_schema/events_waits_current.frm new file mode 100644 index 000000000..cd6f43dbe Binary files /dev/null and b/zbx_env/var/lib/mysql/performance_schema/events_waits_current.frm differ diff --git a/zbx_env/var/lib/mysql/performance_schema/events_waits_history.frm b/zbx_env/var/lib/mysql/performance_schema/events_waits_history.frm new file mode 100644 index 000000000..cd6f43dbe Binary files /dev/null and b/zbx_env/var/lib/mysql/performance_schema/events_waits_history.frm differ diff --git a/zbx_env/var/lib/mysql/performance_schema/events_waits_history_long.frm b/zbx_env/var/lib/mysql/performance_schema/events_waits_history_long.frm new file mode 100644 index 000000000..cd6f43dbe Binary files /dev/null and b/zbx_env/var/lib/mysql/performance_schema/events_waits_history_long.frm differ diff --git a/zbx_env/var/lib/mysql/performance_schema/events_waits_summary_by_account_by_event_name.frm b/zbx_env/var/lib/mysql/performance_schema/events_waits_summary_by_account_by_event_name.frm new file mode 100644 index 000000000..8eb89874b Binary files /dev/null and b/zbx_env/var/lib/mysql/performance_schema/events_waits_summary_by_account_by_event_name.frm differ diff --git a/zbx_env/var/lib/mysql/performance_schema/events_waits_summary_by_host_by_event_name.frm b/zbx_env/var/lib/mysql/performance_schema/events_waits_summary_by_host_by_event_name.frm new file mode 100644 index 000000000..e2aceca07 Binary files /dev/null and b/zbx_env/var/lib/mysql/performance_schema/events_waits_summary_by_host_by_event_name.frm differ diff --git a/zbx_env/var/lib/mysql/performance_schema/events_waits_summary_by_instance.frm b/zbx_env/var/lib/mysql/performance_schema/events_waits_summary_by_instance.frm new file mode 100644 index 000000000..f75021cbc Binary files /dev/null and b/zbx_env/var/lib/mysql/performance_schema/events_waits_summary_by_instance.frm differ diff --git a/zbx_env/var/lib/mysql/performance_schema/events_waits_summary_by_thread_by_event_name.frm b/zbx_env/var/lib/mysql/performance_schema/events_waits_summary_by_thread_by_event_name.frm new file mode 100644 index 000000000..fc6e9b848 Binary files /dev/null and b/zbx_env/var/lib/mysql/performance_schema/events_waits_summary_by_thread_by_event_name.frm differ diff --git a/zbx_env/var/lib/mysql/performance_schema/events_waits_summary_by_user_by_event_name.frm b/zbx_env/var/lib/mysql/performance_schema/events_waits_summary_by_user_by_event_name.frm new file mode 100644 index 000000000..4557abf99 Binary files /dev/null and b/zbx_env/var/lib/mysql/performance_schema/events_waits_summary_by_user_by_event_name.frm differ diff --git a/zbx_env/var/lib/mysql/performance_schema/events_waits_summary_global_by_event_name.frm b/zbx_env/var/lib/mysql/performance_schema/events_waits_summary_global_by_event_name.frm new file mode 100644 index 000000000..4590b336d Binary files /dev/null and b/zbx_env/var/lib/mysql/performance_schema/events_waits_summary_global_by_event_name.frm differ diff --git a/zbx_env/var/lib/mysql/performance_schema/file_instances.frm b/zbx_env/var/lib/mysql/performance_schema/file_instances.frm new file mode 100644 index 000000000..4a9c5b849 Binary files /dev/null and b/zbx_env/var/lib/mysql/performance_schema/file_instances.frm differ diff --git a/zbx_env/var/lib/mysql/performance_schema/file_summary_by_event_name.frm b/zbx_env/var/lib/mysql/performance_schema/file_summary_by_event_name.frm new file mode 100644 index 000000000..ca62527bc Binary files /dev/null and b/zbx_env/var/lib/mysql/performance_schema/file_summary_by_event_name.frm differ diff --git a/zbx_env/var/lib/mysql/performance_schema/file_summary_by_instance.frm b/zbx_env/var/lib/mysql/performance_schema/file_summary_by_instance.frm new file mode 100644 index 000000000..8dd32bd1e Binary files /dev/null and b/zbx_env/var/lib/mysql/performance_schema/file_summary_by_instance.frm differ diff --git a/zbx_env/var/lib/mysql/performance_schema/global_status.frm b/zbx_env/var/lib/mysql/performance_schema/global_status.frm new file mode 100644 index 000000000..d79108310 Binary files /dev/null and b/zbx_env/var/lib/mysql/performance_schema/global_status.frm differ diff --git a/zbx_env/var/lib/mysql/performance_schema/global_variables.frm b/zbx_env/var/lib/mysql/performance_schema/global_variables.frm new file mode 100644 index 000000000..d79108310 Binary files /dev/null and b/zbx_env/var/lib/mysql/performance_schema/global_variables.frm differ diff --git a/zbx_env/var/lib/mysql/performance_schema/host_cache.frm b/zbx_env/var/lib/mysql/performance_schema/host_cache.frm new file mode 100644 index 000000000..5b23adba1 Binary files /dev/null and b/zbx_env/var/lib/mysql/performance_schema/host_cache.frm differ diff --git a/zbx_env/var/lib/mysql/performance_schema/hosts.frm b/zbx_env/var/lib/mysql/performance_schema/hosts.frm new file mode 100644 index 000000000..5b626d79c Binary files /dev/null and b/zbx_env/var/lib/mysql/performance_schema/hosts.frm differ diff --git a/zbx_env/var/lib/mysql/performance_schema/memory_summary_by_account_by_event_name.frm b/zbx_env/var/lib/mysql/performance_schema/memory_summary_by_account_by_event_name.frm new file mode 100644 index 000000000..5add1935b Binary files /dev/null and b/zbx_env/var/lib/mysql/performance_schema/memory_summary_by_account_by_event_name.frm differ diff --git a/zbx_env/var/lib/mysql/performance_schema/memory_summary_by_host_by_event_name.frm b/zbx_env/var/lib/mysql/performance_schema/memory_summary_by_host_by_event_name.frm new file mode 100644 index 000000000..7b4ed4987 Binary files /dev/null and b/zbx_env/var/lib/mysql/performance_schema/memory_summary_by_host_by_event_name.frm differ diff --git a/zbx_env/var/lib/mysql/performance_schema/memory_summary_by_thread_by_event_name.frm b/zbx_env/var/lib/mysql/performance_schema/memory_summary_by_thread_by_event_name.frm new file mode 100644 index 000000000..1b6a5acbf Binary files /dev/null and b/zbx_env/var/lib/mysql/performance_schema/memory_summary_by_thread_by_event_name.frm differ diff --git a/zbx_env/var/lib/mysql/performance_schema/memory_summary_by_user_by_event_name.frm b/zbx_env/var/lib/mysql/performance_schema/memory_summary_by_user_by_event_name.frm new file mode 100644 index 000000000..be066479a Binary files /dev/null and b/zbx_env/var/lib/mysql/performance_schema/memory_summary_by_user_by_event_name.frm differ diff --git a/zbx_env/var/lib/mysql/performance_schema/memory_summary_global_by_event_name.frm b/zbx_env/var/lib/mysql/performance_schema/memory_summary_global_by_event_name.frm new file mode 100644 index 000000000..fb6b5a290 Binary files /dev/null and b/zbx_env/var/lib/mysql/performance_schema/memory_summary_global_by_event_name.frm differ diff --git a/zbx_env/var/lib/mysql/performance_schema/metadata_locks.frm b/zbx_env/var/lib/mysql/performance_schema/metadata_locks.frm new file mode 100644 index 000000000..21931ab4e Binary files /dev/null and b/zbx_env/var/lib/mysql/performance_schema/metadata_locks.frm differ diff --git a/zbx_env/var/lib/mysql/performance_schema/mutex_instances.frm b/zbx_env/var/lib/mysql/performance_schema/mutex_instances.frm new file mode 100644 index 000000000..0e0d6a6c1 Binary files /dev/null and b/zbx_env/var/lib/mysql/performance_schema/mutex_instances.frm differ diff --git a/zbx_env/var/lib/mysql/performance_schema/objects_summary_global_by_type.frm b/zbx_env/var/lib/mysql/performance_schema/objects_summary_global_by_type.frm new file mode 100644 index 000000000..5534e4921 Binary files /dev/null and b/zbx_env/var/lib/mysql/performance_schema/objects_summary_global_by_type.frm differ diff --git a/zbx_env/var/lib/mysql/performance_schema/performance_timers.frm b/zbx_env/var/lib/mysql/performance_schema/performance_timers.frm new file mode 100644 index 000000000..4808b2940 Binary files /dev/null and b/zbx_env/var/lib/mysql/performance_schema/performance_timers.frm differ diff --git a/zbx_env/var/lib/mysql/performance_schema/prepared_statements_instances.frm b/zbx_env/var/lib/mysql/performance_schema/prepared_statements_instances.frm new file mode 100644 index 000000000..1ae11ca9a Binary files /dev/null and b/zbx_env/var/lib/mysql/performance_schema/prepared_statements_instances.frm differ diff --git a/zbx_env/var/lib/mysql/performance_schema/replication_applier_configuration.frm b/zbx_env/var/lib/mysql/performance_schema/replication_applier_configuration.frm new file mode 100644 index 000000000..95e85eb9c Binary files /dev/null and b/zbx_env/var/lib/mysql/performance_schema/replication_applier_configuration.frm differ diff --git a/zbx_env/var/lib/mysql/performance_schema/replication_applier_status.frm b/zbx_env/var/lib/mysql/performance_schema/replication_applier_status.frm new file mode 100644 index 000000000..0596b33ec Binary files /dev/null and b/zbx_env/var/lib/mysql/performance_schema/replication_applier_status.frm differ diff --git a/zbx_env/var/lib/mysql/performance_schema/replication_applier_status_by_coordinator.frm b/zbx_env/var/lib/mysql/performance_schema/replication_applier_status_by_coordinator.frm new file mode 100644 index 000000000..a7b5e4b32 Binary files /dev/null and b/zbx_env/var/lib/mysql/performance_schema/replication_applier_status_by_coordinator.frm differ diff --git a/zbx_env/var/lib/mysql/performance_schema/replication_applier_status_by_worker.frm b/zbx_env/var/lib/mysql/performance_schema/replication_applier_status_by_worker.frm new file mode 100644 index 000000000..874102d44 Binary files /dev/null and b/zbx_env/var/lib/mysql/performance_schema/replication_applier_status_by_worker.frm differ diff --git a/zbx_env/var/lib/mysql/performance_schema/replication_connection_configuration.frm b/zbx_env/var/lib/mysql/performance_schema/replication_connection_configuration.frm new file mode 100644 index 000000000..b1a729f23 Binary files /dev/null and b/zbx_env/var/lib/mysql/performance_schema/replication_connection_configuration.frm differ diff --git a/zbx_env/var/lib/mysql/performance_schema/replication_connection_status.frm b/zbx_env/var/lib/mysql/performance_schema/replication_connection_status.frm new file mode 100644 index 000000000..e63cbdd40 Binary files /dev/null and b/zbx_env/var/lib/mysql/performance_schema/replication_connection_status.frm differ diff --git a/zbx_env/var/lib/mysql/performance_schema/replication_group_member_stats.frm b/zbx_env/var/lib/mysql/performance_schema/replication_group_member_stats.frm new file mode 100644 index 000000000..3870ba4a5 Binary files /dev/null and b/zbx_env/var/lib/mysql/performance_schema/replication_group_member_stats.frm differ diff --git a/zbx_env/var/lib/mysql/performance_schema/replication_group_members.frm b/zbx_env/var/lib/mysql/performance_schema/replication_group_members.frm new file mode 100644 index 000000000..9f3cdb4ae Binary files /dev/null and b/zbx_env/var/lib/mysql/performance_schema/replication_group_members.frm differ diff --git a/zbx_env/var/lib/mysql/performance_schema/rwlock_instances.frm b/zbx_env/var/lib/mysql/performance_schema/rwlock_instances.frm new file mode 100644 index 000000000..5d1abda99 Binary files /dev/null and b/zbx_env/var/lib/mysql/performance_schema/rwlock_instances.frm differ diff --git a/zbx_env/var/lib/mysql/performance_schema/session_account_connect_attrs.frm b/zbx_env/var/lib/mysql/performance_schema/session_account_connect_attrs.frm new file mode 100644 index 000000000..63a00e56a Binary files /dev/null and b/zbx_env/var/lib/mysql/performance_schema/session_account_connect_attrs.frm differ diff --git a/zbx_env/var/lib/mysql/performance_schema/session_connect_attrs.frm b/zbx_env/var/lib/mysql/performance_schema/session_connect_attrs.frm new file mode 100644 index 000000000..0d72020c0 Binary files /dev/null and b/zbx_env/var/lib/mysql/performance_schema/session_connect_attrs.frm differ diff --git a/zbx_env/var/lib/mysql/performance_schema/session_status.frm b/zbx_env/var/lib/mysql/performance_schema/session_status.frm new file mode 100644 index 000000000..d79108310 Binary files /dev/null and b/zbx_env/var/lib/mysql/performance_schema/session_status.frm differ diff --git a/zbx_env/var/lib/mysql/performance_schema/session_variables.frm b/zbx_env/var/lib/mysql/performance_schema/session_variables.frm new file mode 100644 index 000000000..d79108310 Binary files /dev/null and b/zbx_env/var/lib/mysql/performance_schema/session_variables.frm differ diff --git a/zbx_env/var/lib/mysql/performance_schema/setup_actors.frm b/zbx_env/var/lib/mysql/performance_schema/setup_actors.frm new file mode 100644 index 000000000..dbb9d5053 Binary files /dev/null and b/zbx_env/var/lib/mysql/performance_schema/setup_actors.frm differ diff --git a/zbx_env/var/lib/mysql/performance_schema/setup_consumers.frm b/zbx_env/var/lib/mysql/performance_schema/setup_consumers.frm new file mode 100644 index 000000000..3b2ce2b74 Binary files /dev/null and b/zbx_env/var/lib/mysql/performance_schema/setup_consumers.frm differ diff --git a/zbx_env/var/lib/mysql/performance_schema/setup_instruments.frm b/zbx_env/var/lib/mysql/performance_schema/setup_instruments.frm new file mode 100644 index 000000000..7c846d8ca Binary files /dev/null and b/zbx_env/var/lib/mysql/performance_schema/setup_instruments.frm differ diff --git a/zbx_env/var/lib/mysql/performance_schema/setup_objects.frm b/zbx_env/var/lib/mysql/performance_schema/setup_objects.frm new file mode 100644 index 000000000..0de1b28d1 Binary files /dev/null and b/zbx_env/var/lib/mysql/performance_schema/setup_objects.frm differ diff --git a/zbx_env/var/lib/mysql/performance_schema/setup_timers.frm b/zbx_env/var/lib/mysql/performance_schema/setup_timers.frm new file mode 100644 index 000000000..6212b5c4f Binary files /dev/null and b/zbx_env/var/lib/mysql/performance_schema/setup_timers.frm differ diff --git a/zbx_env/var/lib/mysql/performance_schema/socket_instances.frm b/zbx_env/var/lib/mysql/performance_schema/socket_instances.frm new file mode 100644 index 000000000..eecdad3cf Binary files /dev/null and b/zbx_env/var/lib/mysql/performance_schema/socket_instances.frm differ diff --git a/zbx_env/var/lib/mysql/performance_schema/socket_summary_by_event_name.frm b/zbx_env/var/lib/mysql/performance_schema/socket_summary_by_event_name.frm new file mode 100644 index 000000000..d0ad49ad1 Binary files /dev/null and b/zbx_env/var/lib/mysql/performance_schema/socket_summary_by_event_name.frm differ diff --git a/zbx_env/var/lib/mysql/performance_schema/socket_summary_by_instance.frm b/zbx_env/var/lib/mysql/performance_schema/socket_summary_by_instance.frm new file mode 100644 index 000000000..260d39c84 Binary files /dev/null and b/zbx_env/var/lib/mysql/performance_schema/socket_summary_by_instance.frm differ diff --git a/zbx_env/var/lib/mysql/performance_schema/status_by_account.frm b/zbx_env/var/lib/mysql/performance_schema/status_by_account.frm new file mode 100644 index 000000000..145bcce7f Binary files /dev/null and b/zbx_env/var/lib/mysql/performance_schema/status_by_account.frm differ diff --git a/zbx_env/var/lib/mysql/performance_schema/status_by_host.frm b/zbx_env/var/lib/mysql/performance_schema/status_by_host.frm new file mode 100644 index 000000000..5104b752c Binary files /dev/null and b/zbx_env/var/lib/mysql/performance_schema/status_by_host.frm differ diff --git a/zbx_env/var/lib/mysql/performance_schema/status_by_thread.frm b/zbx_env/var/lib/mysql/performance_schema/status_by_thread.frm new file mode 100644 index 000000000..797caa229 Binary files /dev/null and b/zbx_env/var/lib/mysql/performance_schema/status_by_thread.frm differ diff --git a/zbx_env/var/lib/mysql/performance_schema/status_by_user.frm b/zbx_env/var/lib/mysql/performance_schema/status_by_user.frm new file mode 100644 index 000000000..c043c0883 Binary files /dev/null and b/zbx_env/var/lib/mysql/performance_schema/status_by_user.frm differ diff --git a/zbx_env/var/lib/mysql/performance_schema/table_handles.frm b/zbx_env/var/lib/mysql/performance_schema/table_handles.frm new file mode 100644 index 000000000..e9471b2f8 Binary files /dev/null and b/zbx_env/var/lib/mysql/performance_schema/table_handles.frm differ diff --git a/zbx_env/var/lib/mysql/performance_schema/table_io_waits_summary_by_index_usage.frm b/zbx_env/var/lib/mysql/performance_schema/table_io_waits_summary_by_index_usage.frm new file mode 100644 index 000000000..eb3ba8e7b Binary files /dev/null and b/zbx_env/var/lib/mysql/performance_schema/table_io_waits_summary_by_index_usage.frm differ diff --git a/zbx_env/var/lib/mysql/performance_schema/table_io_waits_summary_by_table.frm b/zbx_env/var/lib/mysql/performance_schema/table_io_waits_summary_by_table.frm new file mode 100644 index 000000000..17d32cd60 Binary files /dev/null and b/zbx_env/var/lib/mysql/performance_schema/table_io_waits_summary_by_table.frm differ diff --git a/zbx_env/var/lib/mysql/performance_schema/table_lock_waits_summary_by_table.frm b/zbx_env/var/lib/mysql/performance_schema/table_lock_waits_summary_by_table.frm new file mode 100644 index 000000000..54e329bc8 Binary files /dev/null and b/zbx_env/var/lib/mysql/performance_schema/table_lock_waits_summary_by_table.frm differ diff --git a/zbx_env/var/lib/mysql/performance_schema/threads.frm b/zbx_env/var/lib/mysql/performance_schema/threads.frm new file mode 100644 index 000000000..7ecda9d25 Binary files /dev/null and b/zbx_env/var/lib/mysql/performance_schema/threads.frm differ diff --git a/zbx_env/var/lib/mysql/performance_schema/user_variables_by_thread.frm b/zbx_env/var/lib/mysql/performance_schema/user_variables_by_thread.frm new file mode 100644 index 000000000..ee3b96130 Binary files /dev/null and b/zbx_env/var/lib/mysql/performance_schema/user_variables_by_thread.frm differ diff --git a/zbx_env/var/lib/mysql/performance_schema/users.frm b/zbx_env/var/lib/mysql/performance_schema/users.frm new file mode 100644 index 000000000..d35041bf4 Binary files /dev/null and b/zbx_env/var/lib/mysql/performance_schema/users.frm differ diff --git a/zbx_env/var/lib/mysql/performance_schema/variables_by_thread.frm b/zbx_env/var/lib/mysql/performance_schema/variables_by_thread.frm new file mode 100644 index 000000000..797caa229 Binary files /dev/null and b/zbx_env/var/lib/mysql/performance_schema/variables_by_thread.frm differ diff --git a/zbx_env/var/lib/mysql/private_key.pem b/zbx_env/var/lib/mysql/private_key.pem new file mode 100644 index 000000000..34e5a28c9 --- /dev/null +++ b/zbx_env/var/lib/mysql/private_key.pem @@ -0,0 +1,27 @@ +-----BEGIN RSA PRIVATE KEY----- +MIIEpAIBAAKCAQEAxzLLUm5e4uDN6hlOSPNB1jgHtiiJfeHvpz8lm+/h6YllPUg5 +zp5ndA+CJ4709RQ46sx80yrw1tgufOn+Z9p0kfTQt7ZXjcMj7OyBQxUPxwepWmPC +6AM1N74mcmGBzMKKFxTtErHGf/vQwIOicWseHdkhYj9kpZl8PpgK5ofKZ61CuBHO +xrm2XMs6cbDIeArE26Sqok/9yNvnSrzP8XK4M2AY6aT1XJOjQ8XSWKAxCIzAtroV +fJgy2nmfuhOWSSuZql/CVc6vMmmMxGMrbg3uk11BUdoS3ju4zMhS7172XxhPFr7B +fVp0dIFJfL/xvwlQg0CdUKT7R+IIZph1r9+mnwIDAQABAoIBAQCRulZG2tnt7vqV +vaeo9NWAa4Mwv10+y7Cw0SCpgQfr+wkmmRU5VGdo4AOe/xWzyfSNycW0EuEYvBTe +a60juwy2zrx2+h35Zv58UNWMBveA6tj5eKxZYidnvWORIEZ+TwAJPNTnbUlDzix8 ++pA3m17wBS5IGwp9n9jmTgMDfeoUh77G3mLdKlP1Ku1o+4hrN09wgXHvQtW5KBym +0n2Nu4IK08uK5+v7rU38lxybi7KJ313yE6Q/7fhCeQYN/Oz7ykWIAICOsSigyJ43 +D4mr0qed1Tjf0PvRcxafDQIr+PEj3s626THtC60alpEjeCsrt7RpNgwjAJ9f/rbt +5NFiv5LxAoGBAP7f7Hw5+pMthszg6+5vbQZQrT8Otjngz+Ps9whg5lef2utC6fUD +ulUfBgczy4K+nHKigUvmWHid6sDybbVfPyMC/Y8E1l9dH3KrioLNtuTuIOyAWUEc +PKJPrcycbfI1CP+qKSJ2WG8BdVGn9EcsqjABxQBGfyDzAUpqa0j+eALpAoGBAMgT +8QIIg5t0AK7rviogc/RKbdzoch1U5Hx4gwS0nFUuGSSqpau8I8bAa52zneRqyZms +LfJVpU8+BQNyIaRRXm1Rq1Df3Eyj9ljpffbWMSQol6XvY4zp99NojdWVOY1XVVLH +Yd9CexexYZqKRsvEiq9/Kx6NmIP75prxv/cdKRhHAoGAX4yhAn1V5AEoTPxxVoTt +UXXDTSV9yTrvlNoMTlbNY8Io9xOx08ne+/RSdTbEr7I3wn4LjOHA/w7sqAL6gAlC +CSUg25ILr9qgZIPMvHbUfwSK0T7YtyEX1h2a4V8vlKKvSfGH1ESbqJnaWo9lc51Z ++/9d1FmZZUfUjwpQSCAl66kCgYAkzX48iIJk2t6xTk3Jg/SwT+yLgPpUqOPqfWRk +PjCvfm5Dj1wwDchq68Qf2wVFGduBd+lvtQ9WVysm6hyEFC+RXj9r/fGQ62wKCNER +0W5yn0Dd1f3y0qqyaX4FdpCCjjj0pBY9sgXgYtF4Us0Y+EsmYvb0hMk0JebSQ3uz +IdsISwKBgQDttx9t9PK73mOUNJe8xZRxhm6gbfApFWZuujUD7l2IGH6vJixNO5kx +d4cZXhndImrBnWjDCHYsZXQ80PPmeIrS18WEjBVgUdj8Mvo/9nHJmS4GBuT+jFkk +3fM8EG8TK5nFpj2jJ6nRvhASDmq0+vT6ip+B8SPSRLjNXDiyHYhf/A== +-----END RSA PRIVATE KEY----- diff --git a/zbx_env/var/lib/mysql/public_key.pem b/zbx_env/var/lib/mysql/public_key.pem new file mode 100644 index 000000000..22bb8a741 --- /dev/null +++ b/zbx_env/var/lib/mysql/public_key.pem @@ -0,0 +1,9 @@ +-----BEGIN PUBLIC KEY----- +MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAxzLLUm5e4uDN6hlOSPNB +1jgHtiiJfeHvpz8lm+/h6YllPUg5zp5ndA+CJ4709RQ46sx80yrw1tgufOn+Z9p0 +kfTQt7ZXjcMj7OyBQxUPxwepWmPC6AM1N74mcmGBzMKKFxTtErHGf/vQwIOicWse +HdkhYj9kpZl8PpgK5ofKZ61CuBHOxrm2XMs6cbDIeArE26Sqok/9yNvnSrzP8XK4 +M2AY6aT1XJOjQ8XSWKAxCIzAtroVfJgy2nmfuhOWSSuZql/CVc6vMmmMxGMrbg3u +k11BUdoS3ju4zMhS7172XxhPFr7BfVp0dIFJfL/xvwlQg0CdUKT7R+IIZph1r9+m +nwIDAQAB +-----END PUBLIC KEY----- diff --git a/zbx_env/var/lib/mysql/server-cert.pem b/zbx_env/var/lib/mysql/server-cert.pem new file mode 100644 index 000000000..a10776e8a --- /dev/null +++ b/zbx_env/var/lib/mysql/server-cert.pem @@ -0,0 +1,19 @@ +-----BEGIN CERTIFICATE----- +MIIDBDCCAeygAwIBAgIBAjANBgkqhkiG9w0BAQsFADA8MTowOAYDVQQDDDFNeVNR +TF9TZXJ2ZXJfNS43LjIyX0F1dG9fR2VuZXJhdGVkX0NBX0NlcnRpZmljYXRlMB4X +DTE4MDcyMDAxNTEyN1oXDTI4MDcxNzAxNTEyN1owQDE+MDwGA1UEAww1TXlTUUxf +U2VydmVyXzUuNy4yMl9BdXRvX0dlbmVyYXRlZF9TZXJ2ZXJfQ2VydGlmaWNhdGUw +ggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDMFdAz6igjSyARBzPVjMvK +ajYCtB7j5yDQ0PgAav6dYFw9as9rBLWG1emOfwwuc5oHqkO8YCvP0xidtLnmZKNM +hEhRFAdKBE41S/VWruNFt/27IMOLuGxHPWtaZ2o7LTxM1jKP3dQG7yrv0fZDAoe2 +AF3Ez/LelLXOeXM+4co4iJJ6gaNmxNnquLdEBFBiyob71ZUxvjWJlIACS3cDUOxp +LbGMjD11Oha2G1eUH5pAjJ4bfHwbU170sBDDQWGxE8TgfRhVE5Vp9xoZ4lMI4Cin +D/oK/u/raf88p1AImHtrirkmtaKEurBDydadjlSimjBXHSUuXl+QkrelfOcpDCZ7 +AgMBAAGjDTALMAkGA1UdEwQCMAAwDQYJKoZIhvcNAQELBQADggEBADBvX+RtgyUm +sk/hA5mj+SzV6IbSsylN/IlnWn4y1xHp9Qo4lbNhaa1yf5ZWeySSFsevtXcrAjJA +x8+IuAI8AmGl81MNfZTTtSV7mXtChSrnNMmWzqIo0pQcrcIs8kJUNGVqs+SVQU/q +mbWroQrYvZyDTkToIDP48eCakjTWaGPRVafyuiyQ0k4MacUbMZe7zZYPbdRgkuxZ +x41VFJ93TWEviWROddRYB5iotfUdAvSTR5FgaTHHQiHSPp/oW2jE3dM4XkTW05X8 +ZkThGwNI5RNBMVPFKDKj2FGGTYb7Zc72DYr20WUqvDSqSsMWreo4yPyEl+Zxnxht +I33tq0qZDb8= +-----END CERTIFICATE----- diff --git a/zbx_env/var/lib/mysql/server-key.pem b/zbx_env/var/lib/mysql/server-key.pem new file mode 100644 index 000000000..f5bf8d740 --- /dev/null +++ b/zbx_env/var/lib/mysql/server-key.pem @@ -0,0 +1,27 @@ +-----BEGIN RSA PRIVATE KEY----- +MIIEpQIBAAKCAQEAzBXQM+ooI0sgEQcz1YzLymo2ArQe4+cg0ND4AGr+nWBcPWrP +awS1htXpjn8MLnOaB6pDvGArz9MYnbS55mSjTIRIURQHSgRONUv1Vq7jRbf9uyDD +i7hsRz1rWmdqOy08TNYyj93UBu8q79H2QwKHtgBdxM/y3pS1znlzPuHKOIiSeoGj +ZsTZ6ri3RARQYsqG+9WVMb41iZSAAkt3A1DsaS2xjIw9dToWthtXlB+aQIyeG3x8 +G1Ne9LAQw0FhsRPE4H0YVROVafcaGeJTCOAopw/6Cv7v62n/PKdQCJh7a4q5JrWi +hLqwQ8nWnY5UopowVx0lLl5fkJK3pXznKQwmewIDAQABAoIBAQCMrVCaKINIaMWO +108kmevz+CiIzo4ofK6DIjiBWT9vTffnIhQd6d4TNqrK3cqQzoDTXctZM1Wf6Rwj +wWsPZDmoSdrrgInRvIwIcvaHrP/elAhjkB8a1aJVrQGuDHEOn4zcTh4GS1uW+A+5 +xhohcMIJc9EvFESOpyV3UQJeyxcwxcA+bBWVWBHKMVrcS0D/d0eanLgn3nZDTRfC +agao0EImecIEg45vZwky+KE6kPq8uqFRVkS8ehu6DmmyeiHPsjSf52v0Awgl86+Y +ALC5Cpik933aWKMCoObnW6fB/bLJfLU4PDLZNca6skfmAm1UO+1Be3yyAdgkQfJD +z59U0ghhAoGBAOjWzFHS8IyGKTmWs6ADZo3qUKEqTUpUWw4eKxoOfCLgF0pA3dkx +2QD3DYrgQSEAeAcGY06vRLCde1Ts4ZWo5zacuC4K3lWoPbCRET+VGAVpT2rl3Bv+ +JcziekPjuxsWokREqIDBbJ2fJN3MXiODKNJJmEPfUESHXwlDxFHxCPcRAoGBAOBi +zdEBaUKp+oavAklSkJrKJjGHL3dFaZ5ScEVdvfkDjeoi0elpaZfYiHUdWcKKlgsf +ahO1FkGmRleQJsxVT6YSDy+Np6rjfnT3W71eYFQRvKrEJpmVyDP1zTEmiiA3Qw3f +DoxR76KVis4CEwdCD2hNRFVrdzPChMyX1CmjBHzLAoGBAJdwBUn+uUechrmXA9NC +AvSwfqqj+csrXGGtS3lSDHkeaOd5kxENs8dF5//4ZUPSqz5ecD6gDjwU4T9WJk6R +oXhKrBv+I6dwmlb5s084aHw0h1vOjr+CKBG/B6iaOHqg2P8v7Kx5oWxPMsozftL4 +HpfPGAKk/u7jYPOEqO5mp98RAoGADKFjJnWm4CrDQFuPjGMKYrwoRDdw04zjsha/ +3Re2vtKVZW2KVVIqsHJu0/DQAaRdZ8jf5rYVx6I9aWZi2LOgpR91HV8i5fqiPqFB +17n9QB4zeYVLCvAkcdBPOYoK0l9p9djtb7aY/5TdWFVDjvAH//4Bb7F55z72zLFr +LuDPOtsCgYEAh+UTEWC9Y08KJYaRhMpVQyA1qWs8Nx0F9QvVVWOVACz40ryISKKx +EOV8b2L+TD9bHjVAlxooI46TEX2WIWmZduHhdn0aY8iLBt45lWYSQci/XuUyW6ES +XUVihxAMryN0Qi5gaAMXN9ZcX4IgsGqCwVhy/DBJTbfdXVh99nNRxpU= +-----END RSA PRIVATE KEY----- diff --git a/zbx_env/var/lib/mysql/sys/db.opt b/zbx_env/var/lib/mysql/sys/db.opt new file mode 100644 index 000000000..4ed6015f9 --- /dev/null +++ b/zbx_env/var/lib/mysql/sys/db.opt @@ -0,0 +1,2 @@ +default-character-set=utf8 +default-collation=utf8_general_ci diff --git a/zbx_env/var/lib/mysql/sys/host_summary.frm b/zbx_env/var/lib/mysql/sys/host_summary.frm new file mode 100644 index 000000000..62c818aa5 --- /dev/null +++ b/zbx_env/var/lib/mysql/sys/host_summary.frm @@ -0,0 +1,15 @@ +TYPE=VIEW +query=select if(isnull(`performance_schema`.`accounts`.`HOST`),\'background\',`performance_schema`.`accounts`.`HOST`) AS `host`,sum(`stmt`.`total`) AS `statements`,`sys`.`format_time`(sum(`stmt`.`total_latency`)) AS `statement_latency`,`sys`.`format_time`(ifnull((sum(`stmt`.`total_latency`) / nullif(sum(`stmt`.`total`),0)),0)) AS `statement_avg_latency`,sum(`stmt`.`full_scans`) AS `table_scans`,sum(`io`.`ios`) AS `file_ios`,`sys`.`format_time`(sum(`io`.`io_latency`)) AS `file_io_latency`,sum(`performance_schema`.`accounts`.`CURRENT_CONNECTIONS`) AS `current_connections`,sum(`performance_schema`.`accounts`.`TOTAL_CONNECTIONS`) AS `total_connections`,count(distinct `performance_schema`.`accounts`.`USER`) AS `unique_users`,`sys`.`format_bytes`(sum(`mem`.`current_allocated`)) AS `current_memory`,`sys`.`format_bytes`(sum(`mem`.`total_allocated`)) AS `total_memory_allocated` from (((`performance_schema`.`accounts` join `sys`.`x$host_summary_by_statement_latency` `stmt` on((`performance_schema`.`accounts`.`HOST` = `stmt`.`host`))) join `sys`.`x$host_summary_by_file_io` `io` on((`performance_schema`.`accounts`.`HOST` = `io`.`host`))) join `sys`.`x$memory_by_host_by_current_bytes` `mem` on((`performance_schema`.`accounts`.`HOST` = `mem`.`host`))) group by if(isnull(`performance_schema`.`accounts`.`HOST`),\'background\',`performance_schema`.`accounts`.`HOST`) +md5=e079676ec756edbb811a11a2d649f6e4 +updatable=0 +algorithm=1 +definer_user=mysql.sys +definer_host=localhost +suid=0 +with_check_option=0 +timestamp=2018-07-20 01:51:25 +create-version=1 +source=SELECT IF(accounts.host IS NULL, \'background\', accounts.host) AS host, SUM(stmt.total) AS statements, sys.format_time(SUM(stmt.total_latency)) AS statement_latency, sys.format_time(IFNULL(SUM(stmt.total_latency) / NULLIF(SUM(stmt.total), 0), 0)) AS statement_avg_latency, SUM(stmt.full_scans) AS table_scans, SUM(io.ios) AS file_ios, sys.format_time(SUM(io.io_latency)) AS file_io_latency, SUM(accounts.current_connections) AS current_connections, SUM(accounts.total_connections) AS total_connections, COUNT(DISTINCT user) AS unique_users, sys.format_bytes(SUM(mem.current_allocated)) AS current_memory, sys.format_bytes(SUM(mem.total_allocated)) AS total_memory_allocated FROM performance_schema.accounts JOIN sys.x$host_summary_by_statement_latency AS stmt ON accounts.host = stmt.host JOIN sys.x$host_summary_by_file_io AS io ON accounts.host = io.host JOIN sys.x$memory_by_host_by_current_bytes mem ON accounts.host = mem.host GROUP BY IF(accounts.host IS NULL, \'background\', accounts.host) +client_cs_name=utf8 +connection_cl_name=utf8_general_ci +view_body_utf8=select if(isnull(`performance_schema`.`accounts`.`HOST`),\'background\',`performance_schema`.`accounts`.`HOST`) AS `host`,sum(`stmt`.`total`) AS `statements`,`sys`.`format_time`(sum(`stmt`.`total_latency`)) AS `statement_latency`,`sys`.`format_time`(ifnull((sum(`stmt`.`total_latency`) / nullif(sum(`stmt`.`total`),0)),0)) AS `statement_avg_latency`,sum(`stmt`.`full_scans`) AS `table_scans`,sum(`io`.`ios`) AS `file_ios`,`sys`.`format_time`(sum(`io`.`io_latency`)) AS `file_io_latency`,sum(`performance_schema`.`accounts`.`CURRENT_CONNECTIONS`) AS `current_connections`,sum(`performance_schema`.`accounts`.`TOTAL_CONNECTIONS`) AS `total_connections`,count(distinct `performance_schema`.`accounts`.`USER`) AS `unique_users`,`sys`.`format_bytes`(sum(`mem`.`current_allocated`)) AS `current_memory`,`sys`.`format_bytes`(sum(`mem`.`total_allocated`)) AS `total_memory_allocated` from (((`performance_schema`.`accounts` join `sys`.`x$host_summary_by_statement_latency` `stmt` on((`performance_schema`.`accounts`.`HOST` = `stmt`.`host`))) join `sys`.`x$host_summary_by_file_io` `io` on((`performance_schema`.`accounts`.`HOST` = `io`.`host`))) join `sys`.`x$memory_by_host_by_current_bytes` `mem` on((`performance_schema`.`accounts`.`HOST` = `mem`.`host`))) group by if(isnull(`performance_schema`.`accounts`.`HOST`),\'background\',`performance_schema`.`accounts`.`HOST`) diff --git a/zbx_env/var/lib/mysql/sys/host_summary_by_file_io.frm b/zbx_env/var/lib/mysql/sys/host_summary_by_file_io.frm new file mode 100644 index 000000000..b287c10f6 --- /dev/null +++ b/zbx_env/var/lib/mysql/sys/host_summary_by_file_io.frm @@ -0,0 +1,15 @@ +TYPE=VIEW +query=select if(isnull(`performance_schema`.`events_waits_summary_by_host_by_event_name`.`HOST`),\'background\',`performance_schema`.`events_waits_summary_by_host_by_event_name`.`HOST`) AS `host`,sum(`performance_schema`.`events_waits_summary_by_host_by_event_name`.`COUNT_STAR`) AS `ios`,`sys`.`format_time`(sum(`performance_schema`.`events_waits_summary_by_host_by_event_name`.`SUM_TIMER_WAIT`)) AS `io_latency` from `performance_schema`.`events_waits_summary_by_host_by_event_name` where (`performance_schema`.`events_waits_summary_by_host_by_event_name`.`EVENT_NAME` like \'wait/io/file/%\') group by if(isnull(`performance_schema`.`events_waits_summary_by_host_by_event_name`.`HOST`),\'background\',`performance_schema`.`events_waits_summary_by_host_by_event_name`.`HOST`) order by sum(`performance_schema`.`events_waits_summary_by_host_by_event_name`.`SUM_TIMER_WAIT`) desc +md5=53b0d9b1a70d1f81690a79d9d4d8f59c +updatable=0 +algorithm=1 +definer_user=mysql.sys +definer_host=localhost +suid=0 +with_check_option=0 +timestamp=2018-07-20 01:51:25 +create-version=1 +source=SELECT IF(host IS NULL, \'background\', host) AS host, SUM(count_star) AS ios, sys.format_time(SUM(sum_timer_wait)) AS io_latency FROM performance_schema.events_waits_summary_by_host_by_event_name WHERE event_name LIKE \'wait/io/file/%\' GROUP BY IF(host IS NULL, \'background\', host) ORDER BY SUM(sum_timer_wait) DESC +client_cs_name=utf8 +connection_cl_name=utf8_general_ci +view_body_utf8=select if(isnull(`performance_schema`.`events_waits_summary_by_host_by_event_name`.`HOST`),\'background\',`performance_schema`.`events_waits_summary_by_host_by_event_name`.`HOST`) AS `host`,sum(`performance_schema`.`events_waits_summary_by_host_by_event_name`.`COUNT_STAR`) AS `ios`,`sys`.`format_time`(sum(`performance_schema`.`events_waits_summary_by_host_by_event_name`.`SUM_TIMER_WAIT`)) AS `io_latency` from `performance_schema`.`events_waits_summary_by_host_by_event_name` where (`performance_schema`.`events_waits_summary_by_host_by_event_name`.`EVENT_NAME` like \'wait/io/file/%\') group by if(isnull(`performance_schema`.`events_waits_summary_by_host_by_event_name`.`HOST`),\'background\',`performance_schema`.`events_waits_summary_by_host_by_event_name`.`HOST`) order by sum(`performance_schema`.`events_waits_summary_by_host_by_event_name`.`SUM_TIMER_WAIT`) desc diff --git a/zbx_env/var/lib/mysql/sys/host_summary_by_file_io_type.frm b/zbx_env/var/lib/mysql/sys/host_summary_by_file_io_type.frm new file mode 100644 index 000000000..87f8597f7 --- /dev/null +++ b/zbx_env/var/lib/mysql/sys/host_summary_by_file_io_type.frm @@ -0,0 +1,15 @@ +TYPE=VIEW +query=select if(isnull(`performance_schema`.`events_waits_summary_by_host_by_event_name`.`HOST`),\'background\',`performance_schema`.`events_waits_summary_by_host_by_event_name`.`HOST`) AS `host`,`performance_schema`.`events_waits_summary_by_host_by_event_name`.`EVENT_NAME` AS `event_name`,`performance_schema`.`events_waits_summary_by_host_by_event_name`.`COUNT_STAR` AS `total`,`sys`.`format_time`(`performance_schema`.`events_waits_summary_by_host_by_event_name`.`SUM_TIMER_WAIT`) AS `total_latency`,`sys`.`format_time`(`performance_schema`.`events_waits_summary_by_host_by_event_name`.`MAX_TIMER_WAIT`) AS `max_latency` from `performance_schema`.`events_waits_summary_by_host_by_event_name` where ((`performance_schema`.`events_waits_summary_by_host_by_event_name`.`EVENT_NAME` like \'wait/io/file%\') and (`performance_schema`.`events_waits_summary_by_host_by_event_name`.`COUNT_STAR` > 0)) order by if(isnull(`performance_schema`.`events_waits_summary_by_host_by_event_name`.`HOST`),\'background\',`performance_schema`.`events_waits_summary_by_host_by_event_name`.`HOST`),`performance_schema`.`events_waits_summary_by_host_by_event_name`.`SUM_TIMER_WAIT` desc +md5=58bace9fd830c2b849772ce5d565917e +updatable=1 +algorithm=2 +definer_user=mysql.sys +definer_host=localhost +suid=0 +with_check_option=0 +timestamp=2018-07-20 01:51:25 +create-version=1 +source=SELECT IF(host IS NULL, \'background\', host) AS host, event_name, count_star AS total, sys.format_time(sum_timer_wait) AS total_latency, sys.format_time(max_timer_wait) AS max_latency FROM performance_schema.events_waits_summary_by_host_by_event_name WHERE event_name LIKE \'wait/io/file%\' AND count_star > 0 ORDER BY IF(host IS NULL, \'background\', host), sum_timer_wait DESC +client_cs_name=utf8 +connection_cl_name=utf8_general_ci +view_body_utf8=select if(isnull(`performance_schema`.`events_waits_summary_by_host_by_event_name`.`HOST`),\'background\',`performance_schema`.`events_waits_summary_by_host_by_event_name`.`HOST`) AS `host`,`performance_schema`.`events_waits_summary_by_host_by_event_name`.`EVENT_NAME` AS `event_name`,`performance_schema`.`events_waits_summary_by_host_by_event_name`.`COUNT_STAR` AS `total`,`sys`.`format_time`(`performance_schema`.`events_waits_summary_by_host_by_event_name`.`SUM_TIMER_WAIT`) AS `total_latency`,`sys`.`format_time`(`performance_schema`.`events_waits_summary_by_host_by_event_name`.`MAX_TIMER_WAIT`) AS `max_latency` from `performance_schema`.`events_waits_summary_by_host_by_event_name` where ((`performance_schema`.`events_waits_summary_by_host_by_event_name`.`EVENT_NAME` like \'wait/io/file%\') and (`performance_schema`.`events_waits_summary_by_host_by_event_name`.`COUNT_STAR` > 0)) order by if(isnull(`performance_schema`.`events_waits_summary_by_host_by_event_name`.`HOST`),\'background\',`performance_schema`.`events_waits_summary_by_host_by_event_name`.`HOST`),`performance_schema`.`events_waits_summary_by_host_by_event_name`.`SUM_TIMER_WAIT` desc diff --git a/zbx_env/var/lib/mysql/sys/host_summary_by_stages.frm b/zbx_env/var/lib/mysql/sys/host_summary_by_stages.frm new file mode 100644 index 000000000..b056e34b4 --- /dev/null +++ b/zbx_env/var/lib/mysql/sys/host_summary_by_stages.frm @@ -0,0 +1,15 @@ +TYPE=VIEW +query=select if(isnull(`performance_schema`.`events_stages_summary_by_host_by_event_name`.`HOST`),\'background\',`performance_schema`.`events_stages_summary_by_host_by_event_name`.`HOST`) AS `host`,`performance_schema`.`events_stages_summary_by_host_by_event_name`.`EVENT_NAME` AS `event_name`,`performance_schema`.`events_stages_summary_by_host_by_event_name`.`COUNT_STAR` AS `total`,`sys`.`format_time`(`performance_schema`.`events_stages_summary_by_host_by_event_name`.`SUM_TIMER_WAIT`) AS `total_latency`,`sys`.`format_time`(`performance_schema`.`events_stages_summary_by_host_by_event_name`.`AVG_TIMER_WAIT`) AS `avg_latency` from `performance_schema`.`events_stages_summary_by_host_by_event_name` where (`performance_schema`.`events_stages_summary_by_host_by_event_name`.`SUM_TIMER_WAIT` <> 0) order by if(isnull(`performance_schema`.`events_stages_summary_by_host_by_event_name`.`HOST`),\'background\',`performance_schema`.`events_stages_summary_by_host_by_event_name`.`HOST`),`performance_schema`.`events_stages_summary_by_host_by_event_name`.`SUM_TIMER_WAIT` desc +md5=b6ea9b98daa223ec9e82b8abb20f25f0 +updatable=1 +algorithm=2 +definer_user=mysql.sys +definer_host=localhost +suid=0 +with_check_option=0 +timestamp=2018-07-20 01:51:25 +create-version=1 +source=SELECT IF(host IS NULL, \'background\', host) AS host, event_name, count_star AS total, sys.format_time(sum_timer_wait) AS total_latency, sys.format_time(avg_timer_wait) AS avg_latency FROM performance_schema.events_stages_summary_by_host_by_event_name WHERE sum_timer_wait != 0 ORDER BY IF(host IS NULL, \'background\', host), sum_timer_wait DESC +client_cs_name=utf8 +connection_cl_name=utf8_general_ci +view_body_utf8=select if(isnull(`performance_schema`.`events_stages_summary_by_host_by_event_name`.`HOST`),\'background\',`performance_schema`.`events_stages_summary_by_host_by_event_name`.`HOST`) AS `host`,`performance_schema`.`events_stages_summary_by_host_by_event_name`.`EVENT_NAME` AS `event_name`,`performance_schema`.`events_stages_summary_by_host_by_event_name`.`COUNT_STAR` AS `total`,`sys`.`format_time`(`performance_schema`.`events_stages_summary_by_host_by_event_name`.`SUM_TIMER_WAIT`) AS `total_latency`,`sys`.`format_time`(`performance_schema`.`events_stages_summary_by_host_by_event_name`.`AVG_TIMER_WAIT`) AS `avg_latency` from `performance_schema`.`events_stages_summary_by_host_by_event_name` where (`performance_schema`.`events_stages_summary_by_host_by_event_name`.`SUM_TIMER_WAIT` <> 0) order by if(isnull(`performance_schema`.`events_stages_summary_by_host_by_event_name`.`HOST`),\'background\',`performance_schema`.`events_stages_summary_by_host_by_event_name`.`HOST`),`performance_schema`.`events_stages_summary_by_host_by_event_name`.`SUM_TIMER_WAIT` desc diff --git a/zbx_env/var/lib/mysql/sys/host_summary_by_statement_latency.frm b/zbx_env/var/lib/mysql/sys/host_summary_by_statement_latency.frm new file mode 100644 index 000000000..80f0c5468 --- /dev/null +++ b/zbx_env/var/lib/mysql/sys/host_summary_by_statement_latency.frm @@ -0,0 +1,15 @@ +TYPE=VIEW +query=select if(isnull(`performance_schema`.`events_statements_summary_by_host_by_event_name`.`HOST`),\'background\',`performance_schema`.`events_statements_summary_by_host_by_event_name`.`HOST`) AS `host`,sum(`performance_schema`.`events_statements_summary_by_host_by_event_name`.`COUNT_STAR`) AS `total`,`sys`.`format_time`(sum(`performance_schema`.`events_statements_summary_by_host_by_event_name`.`SUM_TIMER_WAIT`)) AS `total_latency`,`sys`.`format_time`(max(`performance_schema`.`events_statements_summary_by_host_by_event_name`.`MAX_TIMER_WAIT`)) AS `max_latency`,`sys`.`format_time`(sum(`performance_schema`.`events_statements_summary_by_host_by_event_name`.`SUM_LOCK_TIME`)) AS `lock_latency`,sum(`performance_schema`.`events_statements_summary_by_host_by_event_name`.`SUM_ROWS_SENT`) AS `rows_sent`,sum(`performance_schema`.`events_statements_summary_by_host_by_event_name`.`SUM_ROWS_EXAMINED`) AS `rows_examined`,sum(`performance_schema`.`events_statements_summary_by_host_by_event_name`.`SUM_ROWS_AFFECTED`) AS `rows_affected`,(sum(`performance_schema`.`events_statements_summary_by_host_by_event_name`.`SUM_NO_INDEX_USED`) + sum(`performance_schema`.`events_statements_summary_by_host_by_event_name`.`SUM_NO_GOOD_INDEX_USED`)) AS `full_scans` from `performance_schema`.`events_statements_summary_by_host_by_event_name` group by if(isnull(`performance_schema`.`events_statements_summary_by_host_by_event_name`.`HOST`),\'background\',`performance_schema`.`events_statements_summary_by_host_by_event_name`.`HOST`) order by sum(`performance_schema`.`events_statements_summary_by_host_by_event_name`.`SUM_TIMER_WAIT`) desc +md5=61a6f2a6ed0dc94b05f4ed232d72e2b1 +updatable=0 +algorithm=1 +definer_user=mysql.sys +definer_host=localhost +suid=0 +with_check_option=0 +timestamp=2018-07-20 01:51:25 +create-version=1 +source=SELECT IF(host IS NULL, \'background\', host) AS host, SUM(count_star) AS total, sys.format_time(SUM(sum_timer_wait)) AS total_latency, sys.format_time(MAX(max_timer_wait)) AS max_latency, sys.format_time(SUM(sum_lock_time)) AS lock_latency, SUM(sum_rows_sent) AS rows_sent, SUM(sum_rows_examined) AS rows_examined, SUM(sum_rows_affected) AS rows_affected, SUM(sum_no_index_used) + SUM(sum_no_good_index_used) AS full_scans FROM performance_schema.events_statements_summary_by_host_by_event_name GROUP BY IF(host IS NULL, \'background\', host) ORDER BY SUM(sum_timer_wait) DESC +client_cs_name=utf8 +connection_cl_name=utf8_general_ci +view_body_utf8=select if(isnull(`performance_schema`.`events_statements_summary_by_host_by_event_name`.`HOST`),\'background\',`performance_schema`.`events_statements_summary_by_host_by_event_name`.`HOST`) AS `host`,sum(`performance_schema`.`events_statements_summary_by_host_by_event_name`.`COUNT_STAR`) AS `total`,`sys`.`format_time`(sum(`performance_schema`.`events_statements_summary_by_host_by_event_name`.`SUM_TIMER_WAIT`)) AS `total_latency`,`sys`.`format_time`(max(`performance_schema`.`events_statements_summary_by_host_by_event_name`.`MAX_TIMER_WAIT`)) AS `max_latency`,`sys`.`format_time`(sum(`performance_schema`.`events_statements_summary_by_host_by_event_name`.`SUM_LOCK_TIME`)) AS `lock_latency`,sum(`performance_schema`.`events_statements_summary_by_host_by_event_name`.`SUM_ROWS_SENT`) AS `rows_sent`,sum(`performance_schema`.`events_statements_summary_by_host_by_event_name`.`SUM_ROWS_EXAMINED`) AS `rows_examined`,sum(`performance_schema`.`events_statements_summary_by_host_by_event_name`.`SUM_ROWS_AFFECTED`) AS `rows_affected`,(sum(`performance_schema`.`events_statements_summary_by_host_by_event_name`.`SUM_NO_INDEX_USED`) + sum(`performance_schema`.`events_statements_summary_by_host_by_event_name`.`SUM_NO_GOOD_INDEX_USED`)) AS `full_scans` from `performance_schema`.`events_statements_summary_by_host_by_event_name` group by if(isnull(`performance_schema`.`events_statements_summary_by_host_by_event_name`.`HOST`),\'background\',`performance_schema`.`events_statements_summary_by_host_by_event_name`.`HOST`) order by sum(`performance_schema`.`events_statements_summary_by_host_by_event_name`.`SUM_TIMER_WAIT`) desc diff --git a/zbx_env/var/lib/mysql/sys/host_summary_by_statement_type.frm b/zbx_env/var/lib/mysql/sys/host_summary_by_statement_type.frm new file mode 100644 index 000000000..952c43fb9 --- /dev/null +++ b/zbx_env/var/lib/mysql/sys/host_summary_by_statement_type.frm @@ -0,0 +1,15 @@ +TYPE=VIEW +query=select if(isnull(`performance_schema`.`events_statements_summary_by_host_by_event_name`.`HOST`),\'background\',`performance_schema`.`events_statements_summary_by_host_by_event_name`.`HOST`) AS `host`,substring_index(`performance_schema`.`events_statements_summary_by_host_by_event_name`.`EVENT_NAME`,\'/\',-(1)) AS `statement`,`performance_schema`.`events_statements_summary_by_host_by_event_name`.`COUNT_STAR` AS `total`,`sys`.`format_time`(`performance_schema`.`events_statements_summary_by_host_by_event_name`.`SUM_TIMER_WAIT`) AS `total_latency`,`sys`.`format_time`(`performance_schema`.`events_statements_summary_by_host_by_event_name`.`MAX_TIMER_WAIT`) AS `max_latency`,`sys`.`format_time`(`performance_schema`.`events_statements_summary_by_host_by_event_name`.`SUM_LOCK_TIME`) AS `lock_latency`,`performance_schema`.`events_statements_summary_by_host_by_event_name`.`SUM_ROWS_SENT` AS `rows_sent`,`performance_schema`.`events_statements_summary_by_host_by_event_name`.`SUM_ROWS_EXAMINED` AS `rows_examined`,`performance_schema`.`events_statements_summary_by_host_by_event_name`.`SUM_ROWS_AFFECTED` AS `rows_affected`,(`performance_schema`.`events_statements_summary_by_host_by_event_name`.`SUM_NO_INDEX_USED` + `performance_schema`.`events_statements_summary_by_host_by_event_name`.`SUM_NO_GOOD_INDEX_USED`) AS `full_scans` from `performance_schema`.`events_statements_summary_by_host_by_event_name` where (`performance_schema`.`events_statements_summary_by_host_by_event_name`.`SUM_TIMER_WAIT` <> 0) order by if(isnull(`performance_schema`.`events_statements_summary_by_host_by_event_name`.`HOST`),\'background\',`performance_schema`.`events_statements_summary_by_host_by_event_name`.`HOST`),`performance_schema`.`events_statements_summary_by_host_by_event_name`.`SUM_TIMER_WAIT` desc +md5=03d6f6f9200806eaa8c31c116d71d808 +updatable=1 +algorithm=2 +definer_user=mysql.sys +definer_host=localhost +suid=0 +with_check_option=0 +timestamp=2018-07-20 01:51:25 +create-version=1 +source=SELECT IF(host IS NULL, \'background\', host) AS host, SUBSTRING_INDEX(event_name, \'/\', -1) AS statement, count_star AS total, sys.format_time(sum_timer_wait) AS total_latency, sys.format_time(max_timer_wait) AS max_latency, sys.format_time(sum_lock_time) AS lock_latency, sum_rows_sent AS rows_sent, sum_rows_examined AS rows_examined, sum_rows_affected AS rows_affected, sum_no_index_used + sum_no_good_index_used AS full_scans FROM performance_schema.events_statements_summary_by_host_by_event_name WHERE sum_timer_wait != 0 ORDER BY IF(host IS NULL, \'background\', host), sum_timer_wait DESC +client_cs_name=utf8 +connection_cl_name=utf8_general_ci +view_body_utf8=select if(isnull(`performance_schema`.`events_statements_summary_by_host_by_event_name`.`HOST`),\'background\',`performance_schema`.`events_statements_summary_by_host_by_event_name`.`HOST`) AS `host`,substring_index(`performance_schema`.`events_statements_summary_by_host_by_event_name`.`EVENT_NAME`,\'/\',-(1)) AS `statement`,`performance_schema`.`events_statements_summary_by_host_by_event_name`.`COUNT_STAR` AS `total`,`sys`.`format_time`(`performance_schema`.`events_statements_summary_by_host_by_event_name`.`SUM_TIMER_WAIT`) AS `total_latency`,`sys`.`format_time`(`performance_schema`.`events_statements_summary_by_host_by_event_name`.`MAX_TIMER_WAIT`) AS `max_latency`,`sys`.`format_time`(`performance_schema`.`events_statements_summary_by_host_by_event_name`.`SUM_LOCK_TIME`) AS `lock_latency`,`performance_schema`.`events_statements_summary_by_host_by_event_name`.`SUM_ROWS_SENT` AS `rows_sent`,`performance_schema`.`events_statements_summary_by_host_by_event_name`.`SUM_ROWS_EXAMINED` AS `rows_examined`,`performance_schema`.`events_statements_summary_by_host_by_event_name`.`SUM_ROWS_AFFECTED` AS `rows_affected`,(`performance_schema`.`events_statements_summary_by_host_by_event_name`.`SUM_NO_INDEX_USED` + `performance_schema`.`events_statements_summary_by_host_by_event_name`.`SUM_NO_GOOD_INDEX_USED`) AS `full_scans` from `performance_schema`.`events_statements_summary_by_host_by_event_name` where (`performance_schema`.`events_statements_summary_by_host_by_event_name`.`SUM_TIMER_WAIT` <> 0) order by if(isnull(`performance_schema`.`events_statements_summary_by_host_by_event_name`.`HOST`),\'background\',`performance_schema`.`events_statements_summary_by_host_by_event_name`.`HOST`),`performance_schema`.`events_statements_summary_by_host_by_event_name`.`SUM_TIMER_WAIT` desc diff --git a/zbx_env/var/lib/mysql/sys/innodb_buffer_stats_by_schema.frm b/zbx_env/var/lib/mysql/sys/innodb_buffer_stats_by_schema.frm new file mode 100644 index 000000000..b58c109a0 --- /dev/null +++ b/zbx_env/var/lib/mysql/sys/innodb_buffer_stats_by_schema.frm @@ -0,0 +1,15 @@ +TYPE=VIEW +query=select if((locate(\'.\',`ibp`.`TABLE_NAME`) = 0),\'InnoDB System\',replace(substring_index(`ibp`.`TABLE_NAME`,\'.\',1),\'`\',\'\')) AS `object_schema`,`sys`.`format_bytes`(sum(if((`ibp`.`COMPRESSED_SIZE` = 0),16384,`ibp`.`COMPRESSED_SIZE`))) AS `allocated`,`sys`.`format_bytes`(sum(`ibp`.`DATA_SIZE`)) AS `data`,count(`ibp`.`PAGE_NUMBER`) AS `pages`,count(if((`ibp`.`IS_HASHED` = \'YES\'),1,NULL)) AS `pages_hashed`,count(if((`ibp`.`IS_OLD` = \'YES\'),1,NULL)) AS `pages_old`,round((sum(`ibp`.`NUMBER_RECORDS`) / count(distinct `ibp`.`INDEX_NAME`)),0) AS `rows_cached` from `information_schema`.`innodb_buffer_page` `ibp` where (`ibp`.`TABLE_NAME` is not null) group by `object_schema` order by sum(if((`ibp`.`COMPRESSED_SIZE` = 0),16384,`ibp`.`COMPRESSED_SIZE`)) desc +md5=b23f280915a074b57291cc7da91510fb +updatable=0 +algorithm=1 +definer_user=mysql.sys +definer_host=localhost +suid=0 +with_check_option=0 +timestamp=2018-07-20 01:51:25 +create-version=1 +source=SELECT IF(LOCATE(\'.\', ibp.table_name) = 0, \'InnoDB System\', REPLACE(SUBSTRING_INDEX(ibp.table_name, \'.\', 1), \'`\', \'\')) AS object_schema, sys.format_bytes(SUM(IF(ibp.compressed_size = 0, 16384, compressed_size))) AS allocated, sys.format_bytes(SUM(ibp.data_size)) AS data, COUNT(ibp.page_number) AS pages, COUNT(IF(ibp.is_hashed = \'YES\', 1, NULL)) AS pages_hashed, COUNT(IF(ibp.is_old = \'YES\', 1, NULL)) AS pages_old, ROUND(SUM(ibp.number_records)/COUNT(DISTINCT ibp.index_name)) AS rows_cached FROM information_schema.innodb_buffer_page ibp WHERE table_name IS NOT NULL GROUP BY object_schema ORDER BY SUM(IF(ibp.compressed_size = 0, 16384, compressed_size)) DESC +client_cs_name=utf8 +connection_cl_name=utf8_general_ci +view_body_utf8=select if((locate(\'.\',`ibp`.`TABLE_NAME`) = 0),\'InnoDB System\',replace(substring_index(`ibp`.`TABLE_NAME`,\'.\',1),\'`\',\'\')) AS `object_schema`,`sys`.`format_bytes`(sum(if((`ibp`.`COMPRESSED_SIZE` = 0),16384,`ibp`.`COMPRESSED_SIZE`))) AS `allocated`,`sys`.`format_bytes`(sum(`ibp`.`DATA_SIZE`)) AS `data`,count(`ibp`.`PAGE_NUMBER`) AS `pages`,count(if((`ibp`.`IS_HASHED` = \'YES\'),1,NULL)) AS `pages_hashed`,count(if((`ibp`.`IS_OLD` = \'YES\'),1,NULL)) AS `pages_old`,round((sum(`ibp`.`NUMBER_RECORDS`) / count(distinct `ibp`.`INDEX_NAME`)),0) AS `rows_cached` from `information_schema`.`innodb_buffer_page` `ibp` where (`ibp`.`TABLE_NAME` is not null) group by `object_schema` order by sum(if((`ibp`.`COMPRESSED_SIZE` = 0),16384,`ibp`.`COMPRESSED_SIZE`)) desc diff --git a/zbx_env/var/lib/mysql/sys/innodb_buffer_stats_by_table.frm b/zbx_env/var/lib/mysql/sys/innodb_buffer_stats_by_table.frm new file mode 100644 index 000000000..536e1fa74 --- /dev/null +++ b/zbx_env/var/lib/mysql/sys/innodb_buffer_stats_by_table.frm @@ -0,0 +1,15 @@ +TYPE=VIEW +query=select if((locate(\'.\',`ibp`.`TABLE_NAME`) = 0),\'InnoDB System\',replace(substring_index(`ibp`.`TABLE_NAME`,\'.\',1),\'`\',\'\')) AS `object_schema`,replace(substring_index(`ibp`.`TABLE_NAME`,\'.\',-(1)),\'`\',\'\') AS `object_name`,`sys`.`format_bytes`(sum(if((`ibp`.`COMPRESSED_SIZE` = 0),16384,`ibp`.`COMPRESSED_SIZE`))) AS `allocated`,`sys`.`format_bytes`(sum(`ibp`.`DATA_SIZE`)) AS `data`,count(`ibp`.`PAGE_NUMBER`) AS `pages`,count(if((`ibp`.`IS_HASHED` = \'YES\'),1,NULL)) AS `pages_hashed`,count(if((`ibp`.`IS_OLD` = \'YES\'),1,NULL)) AS `pages_old`,round((sum(`ibp`.`NUMBER_RECORDS`) / count(distinct `ibp`.`INDEX_NAME`)),0) AS `rows_cached` from `information_schema`.`innodb_buffer_page` `ibp` where (`ibp`.`TABLE_NAME` is not null) group by `object_schema`,`object_name` order by sum(if((`ibp`.`COMPRESSED_SIZE` = 0),16384,`ibp`.`COMPRESSED_SIZE`)) desc +md5=30a495a8e73aabfe8a6000d02dae3470 +updatable=0 +algorithm=1 +definer_user=mysql.sys +definer_host=localhost +suid=0 +with_check_option=0 +timestamp=2018-07-20 01:51:25 +create-version=1 +source=SELECT IF(LOCATE(\'.\', ibp.table_name) = 0, \'InnoDB System\', REPLACE(SUBSTRING_INDEX(ibp.table_name, \'.\', 1), \'`\', \'\')) AS object_schema, REPLACE(SUBSTRING_INDEX(ibp.table_name, \'.\', -1), \'`\', \'\') AS object_name, sys.format_bytes(SUM(IF(ibp.compressed_size = 0, 16384, compressed_size))) AS allocated, sys.format_bytes(SUM(ibp.data_size)) AS data, COUNT(ibp.page_number) AS pages, COUNT(IF(ibp.is_hashed = \'YES\', 1, NULL)) AS pages_hashed, COUNT(IF(ibp.is_old = \'YES\', 1, NULL)) AS pages_old, ROUND(SUM(ibp.number_records)/COUNT(DISTINCT ibp.index_name)) AS rows_cached FROM information_schema.innodb_buffer_page ibp WHERE table_name IS NOT NULL GROUP BY object_schema, object_name ORDER BY SUM(IF(ibp.compressed_size = 0, 16384, compressed_size)) DESC +client_cs_name=utf8 +connection_cl_name=utf8_general_ci +view_body_utf8=select if((locate(\'.\',`ibp`.`TABLE_NAME`) = 0),\'InnoDB System\',replace(substring_index(`ibp`.`TABLE_NAME`,\'.\',1),\'`\',\'\')) AS `object_schema`,replace(substring_index(`ibp`.`TABLE_NAME`,\'.\',-(1)),\'`\',\'\') AS `object_name`,`sys`.`format_bytes`(sum(if((`ibp`.`COMPRESSED_SIZE` = 0),16384,`ibp`.`COMPRESSED_SIZE`))) AS `allocated`,`sys`.`format_bytes`(sum(`ibp`.`DATA_SIZE`)) AS `data`,count(`ibp`.`PAGE_NUMBER`) AS `pages`,count(if((`ibp`.`IS_HASHED` = \'YES\'),1,NULL)) AS `pages_hashed`,count(if((`ibp`.`IS_OLD` = \'YES\'),1,NULL)) AS `pages_old`,round((sum(`ibp`.`NUMBER_RECORDS`) / count(distinct `ibp`.`INDEX_NAME`)),0) AS `rows_cached` from `information_schema`.`innodb_buffer_page` `ibp` where (`ibp`.`TABLE_NAME` is not null) group by `object_schema`,`object_name` order by sum(if((`ibp`.`COMPRESSED_SIZE` = 0),16384,`ibp`.`COMPRESSED_SIZE`)) desc diff --git a/zbx_env/var/lib/mysql/sys/innodb_lock_waits.frm b/zbx_env/var/lib/mysql/sys/innodb_lock_waits.frm new file mode 100644 index 000000000..f4c736d73 --- /dev/null +++ b/zbx_env/var/lib/mysql/sys/innodb_lock_waits.frm @@ -0,0 +1,15 @@ +TYPE=VIEW +query=select `r`.`trx_wait_started` AS `wait_started`,timediff(now(),`r`.`trx_wait_started`) AS `wait_age`,timestampdiff(SECOND,`r`.`trx_wait_started`,now()) AS `wait_age_secs`,`rl`.`lock_table` AS `locked_table`,`rl`.`lock_index` AS `locked_index`,`rl`.`lock_type` AS `locked_type`,`r`.`trx_id` AS `waiting_trx_id`,`r`.`trx_started` AS `waiting_trx_started`,timediff(now(),`r`.`trx_started`) AS `waiting_trx_age`,`r`.`trx_rows_locked` AS `waiting_trx_rows_locked`,`r`.`trx_rows_modified` AS `waiting_trx_rows_modified`,`r`.`trx_mysql_thread_id` AS `waiting_pid`,`sys`.`format_statement`(`r`.`trx_query`) AS `waiting_query`,`rl`.`lock_id` AS `waiting_lock_id`,`rl`.`lock_mode` AS `waiting_lock_mode`,`b`.`trx_id` AS `blocking_trx_id`,`b`.`trx_mysql_thread_id` AS `blocking_pid`,`sys`.`format_statement`(`b`.`trx_query`) AS `blocking_query`,`bl`.`lock_id` AS `blocking_lock_id`,`bl`.`lock_mode` AS `blocking_lock_mode`,`b`.`trx_started` AS `blocking_trx_started`,timediff(now(),`b`.`trx_started`) AS `blocking_trx_age`,`b`.`trx_rows_locked` AS `blocking_trx_rows_locked`,`b`.`trx_rows_modified` AS `blocking_trx_rows_modified`,concat(\'KILL QUERY \',`b`.`trx_mysql_thread_id`) AS `sql_kill_blocking_query`,concat(\'KILL \',`b`.`trx_mysql_thread_id`) AS `sql_kill_blocking_connection` from ((((`information_schema`.`innodb_lock_waits` `w` join `information_schema`.`innodb_trx` `b` on((`b`.`trx_id` = `w`.`blocking_trx_id`))) join `information_schema`.`innodb_trx` `r` on((`r`.`trx_id` = `w`.`requesting_trx_id`))) join `information_schema`.`innodb_locks` `bl` on((`bl`.`lock_id` = `w`.`blocking_lock_id`))) join `information_schema`.`innodb_locks` `rl` on((`rl`.`lock_id` = `w`.`requested_lock_id`))) order by `r`.`trx_wait_started` +md5=6337263700834988be1dab771904c81c +updatable=0 +algorithm=1 +definer_user=mysql.sys +definer_host=localhost +suid=0 +with_check_option=0 +timestamp=2018-07-20 01:51:25 +create-version=1 +source=SELECT r.trx_wait_started AS wait_started, TIMEDIFF(NOW(), r.trx_wait_started) AS wait_age, TIMESTAMPDIFF(SECOND, r.trx_wait_started, NOW()) AS wait_age_secs, rl.lock_table AS locked_table, rl.lock_index AS locked_index, rl.lock_type AS locked_type, r.trx_id AS waiting_trx_id, r.trx_started as waiting_trx_started, TIMEDIFF(NOW(), r.trx_started) AS waiting_trx_age, r.trx_rows_locked AS waiting_trx_rows_locked, r.trx_rows_modified AS waiting_trx_rows_modified, r.trx_mysql_thread_id AS waiting_pid, sys.format_statement(r.trx_query) AS waiting_query, rl.lock_id AS waiting_lock_id, rl.lock_mode AS waiting_lock_mode, b.trx_id AS blocking_trx_id, b.trx_mysql_thread_id AS blocking_pid, sys.format_statement(b.trx_query) AS blocking_query, bl.lock_id AS blocking_lock_id, bl.lock_mode AS blocking_lock_mode, b.trx_started AS blocking_trx_started, TIMEDIFF(NOW(), b.trx_started) AS blocking_trx_age, b.trx_rows_locked AS blocking_trx_rows_locked, b.trx_rows_modified AS blocking_trx_rows_modified, CONCAT(\'KILL QUERY \', b.trx_mysql_thread_id) AS sql_kill_blocking_query, CONCAT(\'KILL \', b.trx_mysql_thread_id) AS sql_kill_blocking_connection FROM information_schema.innodb_lock_waits w INNER JOIN information_schema.innodb_trx b ON b.trx_id = w.blocking_trx_id INNER JOIN information_schema.innodb_trx r ON r.trx_id = w.requesting_trx_id INNER JOIN information_schema.innodb_locks bl ON bl.lock_id = w.blocking_lock_id INNER JOIN information_schema.innodb_locks rl ON rl.lock_id = w.requested_lock_id ORDER BY r.trx_wait_started +client_cs_name=utf8 +connection_cl_name=utf8_general_ci +view_body_utf8=select `r`.`trx_wait_started` AS `wait_started`,timediff(now(),`r`.`trx_wait_started`) AS `wait_age`,timestampdiff(SECOND,`r`.`trx_wait_started`,now()) AS `wait_age_secs`,`rl`.`lock_table` AS `locked_table`,`rl`.`lock_index` AS `locked_index`,`rl`.`lock_type` AS `locked_type`,`r`.`trx_id` AS `waiting_trx_id`,`r`.`trx_started` AS `waiting_trx_started`,timediff(now(),`r`.`trx_started`) AS `waiting_trx_age`,`r`.`trx_rows_locked` AS `waiting_trx_rows_locked`,`r`.`trx_rows_modified` AS `waiting_trx_rows_modified`,`r`.`trx_mysql_thread_id` AS `waiting_pid`,`sys`.`format_statement`(`r`.`trx_query`) AS `waiting_query`,`rl`.`lock_id` AS `waiting_lock_id`,`rl`.`lock_mode` AS `waiting_lock_mode`,`b`.`trx_id` AS `blocking_trx_id`,`b`.`trx_mysql_thread_id` AS `blocking_pid`,`sys`.`format_statement`(`b`.`trx_query`) AS `blocking_query`,`bl`.`lock_id` AS `blocking_lock_id`,`bl`.`lock_mode` AS `blocking_lock_mode`,`b`.`trx_started` AS `blocking_trx_started`,timediff(now(),`b`.`trx_started`) AS `blocking_trx_age`,`b`.`trx_rows_locked` AS `blocking_trx_rows_locked`,`b`.`trx_rows_modified` AS `blocking_trx_rows_modified`,concat(\'KILL QUERY \',`b`.`trx_mysql_thread_id`) AS `sql_kill_blocking_query`,concat(\'KILL \',`b`.`trx_mysql_thread_id`) AS `sql_kill_blocking_connection` from ((((`information_schema`.`innodb_lock_waits` `w` join `information_schema`.`innodb_trx` `b` on((`b`.`trx_id` = `w`.`blocking_trx_id`))) join `information_schema`.`innodb_trx` `r` on((`r`.`trx_id` = `w`.`requesting_trx_id`))) join `information_schema`.`innodb_locks` `bl` on((`bl`.`lock_id` = `w`.`blocking_lock_id`))) join `information_schema`.`innodb_locks` `rl` on((`rl`.`lock_id` = `w`.`requested_lock_id`))) order by `r`.`trx_wait_started` diff --git a/zbx_env/var/lib/mysql/sys/io_by_thread_by_latency.frm b/zbx_env/var/lib/mysql/sys/io_by_thread_by_latency.frm new file mode 100644 index 000000000..c41471175 --- /dev/null +++ b/zbx_env/var/lib/mysql/sys/io_by_thread_by_latency.frm @@ -0,0 +1,15 @@ +TYPE=VIEW +query=select if(isnull(`performance_schema`.`threads`.`PROCESSLIST_ID`),substring_index(`performance_schema`.`threads`.`NAME`,\'/\',-(1)),concat(`performance_schema`.`threads`.`PROCESSLIST_USER`,\'@\',`performance_schema`.`threads`.`PROCESSLIST_HOST`)) AS `user`,sum(`performance_schema`.`events_waits_summary_by_thread_by_event_name`.`COUNT_STAR`) AS `total`,`sys`.`format_time`(sum(`performance_schema`.`events_waits_summary_by_thread_by_event_name`.`SUM_TIMER_WAIT`)) AS `total_latency`,`sys`.`format_time`(min(`performance_schema`.`events_waits_summary_by_thread_by_event_name`.`MIN_TIMER_WAIT`)) AS `min_latency`,`sys`.`format_time`(avg(`performance_schema`.`events_waits_summary_by_thread_by_event_name`.`AVG_TIMER_WAIT`)) AS `avg_latency`,`sys`.`format_time`(max(`performance_schema`.`events_waits_summary_by_thread_by_event_name`.`MAX_TIMER_WAIT`)) AS `max_latency`,`performance_schema`.`events_waits_summary_by_thread_by_event_name`.`THREAD_ID` AS `thread_id`,`performance_schema`.`threads`.`PROCESSLIST_ID` AS `processlist_id` from (`performance_schema`.`events_waits_summary_by_thread_by_event_name` left join `performance_schema`.`threads` on((`performance_schema`.`events_waits_summary_by_thread_by_event_name`.`THREAD_ID` = `performance_schema`.`threads`.`THREAD_ID`))) where ((`performance_schema`.`events_waits_summary_by_thread_by_event_name`.`EVENT_NAME` like \'wait/io/file/%\') and (`performance_schema`.`events_waits_summary_by_thread_by_event_name`.`SUM_TIMER_WAIT` > 0)) group by `performance_schema`.`events_waits_summary_by_thread_by_event_name`.`THREAD_ID`,`performance_schema`.`threads`.`PROCESSLIST_ID`,`user` order by sum(`performance_schema`.`events_waits_summary_by_thread_by_event_name`.`SUM_TIMER_WAIT`) desc +md5=fe56c06bf38d44519df4836baad15a98 +updatable=0 +algorithm=1 +definer_user=mysql.sys +definer_host=localhost +suid=0 +with_check_option=0 +timestamp=2018-07-20 01:51:25 +create-version=1 +source=SELECT IF(processlist_id IS NULL, SUBSTRING_INDEX(name, \'/\', -1), CONCAT(processlist_user, \'@\', processlist_host) ) user, SUM(count_star) total, sys.format_time(SUM(sum_timer_wait)) total_latency, sys.format_time(MIN(min_timer_wait)) min_latency, sys.format_time(AVG(avg_timer_wait)) avg_latency, sys.format_time(MAX(max_timer_wait)) max_latency, thread_id, processlist_id FROM performance_schema.events_waits_summary_by_thread_by_event_name LEFT JOIN performance_schema.threads USING (thread_id) WHERE event_name LIKE \'wait/io/file/%\' AND sum_timer_wait > 0 GROUP BY thread_id, processlist_id, user ORDER BY SUM(sum_timer_wait) DESC +client_cs_name=utf8 +connection_cl_name=utf8_general_ci +view_body_utf8=select if(isnull(`performance_schema`.`threads`.`PROCESSLIST_ID`),substring_index(`performance_schema`.`threads`.`NAME`,\'/\',-(1)),concat(`performance_schema`.`threads`.`PROCESSLIST_USER`,\'@\',`performance_schema`.`threads`.`PROCESSLIST_HOST`)) AS `user`,sum(`performance_schema`.`events_waits_summary_by_thread_by_event_name`.`COUNT_STAR`) AS `total`,`sys`.`format_time`(sum(`performance_schema`.`events_waits_summary_by_thread_by_event_name`.`SUM_TIMER_WAIT`)) AS `total_latency`,`sys`.`format_time`(min(`performance_schema`.`events_waits_summary_by_thread_by_event_name`.`MIN_TIMER_WAIT`)) AS `min_latency`,`sys`.`format_time`(avg(`performance_schema`.`events_waits_summary_by_thread_by_event_name`.`AVG_TIMER_WAIT`)) AS `avg_latency`,`sys`.`format_time`(max(`performance_schema`.`events_waits_summary_by_thread_by_event_name`.`MAX_TIMER_WAIT`)) AS `max_latency`,`performance_schema`.`events_waits_summary_by_thread_by_event_name`.`THREAD_ID` AS `thread_id`,`performance_schema`.`threads`.`PROCESSLIST_ID` AS `processlist_id` from (`performance_schema`.`events_waits_summary_by_thread_by_event_name` left join `performance_schema`.`threads` on((`performance_schema`.`events_waits_summary_by_thread_by_event_name`.`THREAD_ID` = `performance_schema`.`threads`.`THREAD_ID`))) where ((`performance_schema`.`events_waits_summary_by_thread_by_event_name`.`EVENT_NAME` like \'wait/io/file/%\') and (`performance_schema`.`events_waits_summary_by_thread_by_event_name`.`SUM_TIMER_WAIT` > 0)) group by `performance_schema`.`events_waits_summary_by_thread_by_event_name`.`THREAD_ID`,`performance_schema`.`threads`.`PROCESSLIST_ID`,`user` order by sum(`performance_schema`.`events_waits_summary_by_thread_by_event_name`.`SUM_TIMER_WAIT`) desc diff --git a/zbx_env/var/lib/mysql/sys/io_global_by_file_by_bytes.frm b/zbx_env/var/lib/mysql/sys/io_global_by_file_by_bytes.frm new file mode 100644 index 000000000..f720f7730 --- /dev/null +++ b/zbx_env/var/lib/mysql/sys/io_global_by_file_by_bytes.frm @@ -0,0 +1,15 @@ +TYPE=VIEW +query=select `sys`.`format_path`(`performance_schema`.`file_summary_by_instance`.`FILE_NAME`) AS `file`,`performance_schema`.`file_summary_by_instance`.`COUNT_READ` AS `count_read`,`sys`.`format_bytes`(`performance_schema`.`file_summary_by_instance`.`SUM_NUMBER_OF_BYTES_READ`) AS `total_read`,`sys`.`format_bytes`(ifnull((`performance_schema`.`file_summary_by_instance`.`SUM_NUMBER_OF_BYTES_READ` / nullif(`performance_schema`.`file_summary_by_instance`.`COUNT_READ`,0)),0)) AS `avg_read`,`performance_schema`.`file_summary_by_instance`.`COUNT_WRITE` AS `count_write`,`sys`.`format_bytes`(`performance_schema`.`file_summary_by_instance`.`SUM_NUMBER_OF_BYTES_WRITE`) AS `total_written`,`sys`.`format_bytes`(ifnull((`performance_schema`.`file_summary_by_instance`.`SUM_NUMBER_OF_BYTES_WRITE` / nullif(`performance_schema`.`file_summary_by_instance`.`COUNT_WRITE`,0)),0.00)) AS `avg_write`,`sys`.`format_bytes`((`performance_schema`.`file_summary_by_instance`.`SUM_NUMBER_OF_BYTES_READ` + `performance_schema`.`file_summary_by_instance`.`SUM_NUMBER_OF_BYTES_WRITE`)) AS `total`,ifnull(round((100 - ((`performance_schema`.`file_summary_by_instance`.`SUM_NUMBER_OF_BYTES_READ` / nullif((`performance_schema`.`file_summary_by_instance`.`SUM_NUMBER_OF_BYTES_READ` + `performance_schema`.`file_summary_by_instance`.`SUM_NUMBER_OF_BYTES_WRITE`),0)) * 100)),2),0.00) AS `write_pct` from `performance_schema`.`file_summary_by_instance` order by (`performance_schema`.`file_summary_by_instance`.`SUM_NUMBER_OF_BYTES_READ` + `performance_schema`.`file_summary_by_instance`.`SUM_NUMBER_OF_BYTES_WRITE`) desc +md5=8c02fc34f3bd91f6315a1432a76512cf +updatable=1 +algorithm=2 +definer_user=mysql.sys +definer_host=localhost +suid=0 +with_check_option=0 +timestamp=2018-07-20 01:51:25 +create-version=1 +source=SELECT sys.format_path(file_name) AS file, count_read, sys.format_bytes(sum_number_of_bytes_read) AS total_read, sys.format_bytes(IFNULL(sum_number_of_bytes_read / NULLIF(count_read, 0), 0)) AS avg_read, count_write, sys.format_bytes(sum_number_of_bytes_write) AS total_written, sys.format_bytes(IFNULL(sum_number_of_bytes_write / NULLIF(count_write, 0), 0.00)) AS avg_write, sys.format_bytes(sum_number_of_bytes_read + sum_number_of_bytes_write) AS total, IFNULL(ROUND(100-((sum_number_of_bytes_read/ NULLIF((sum_number_of_bytes_read+sum_number_of_bytes_write), 0))*100), 2), 0.00) AS write_pct FROM performance_schema.file_summary_by_instance ORDER BY sum_number_of_bytes_read + sum_number_of_bytes_write DESC +client_cs_name=utf8 +connection_cl_name=utf8_general_ci +view_body_utf8=select `sys`.`format_path`(`performance_schema`.`file_summary_by_instance`.`FILE_NAME`) AS `file`,`performance_schema`.`file_summary_by_instance`.`COUNT_READ` AS `count_read`,`sys`.`format_bytes`(`performance_schema`.`file_summary_by_instance`.`SUM_NUMBER_OF_BYTES_READ`) AS `total_read`,`sys`.`format_bytes`(ifnull((`performance_schema`.`file_summary_by_instance`.`SUM_NUMBER_OF_BYTES_READ` / nullif(`performance_schema`.`file_summary_by_instance`.`COUNT_READ`,0)),0)) AS `avg_read`,`performance_schema`.`file_summary_by_instance`.`COUNT_WRITE` AS `count_write`,`sys`.`format_bytes`(`performance_schema`.`file_summary_by_instance`.`SUM_NUMBER_OF_BYTES_WRITE`) AS `total_written`,`sys`.`format_bytes`(ifnull((`performance_schema`.`file_summary_by_instance`.`SUM_NUMBER_OF_BYTES_WRITE` / nullif(`performance_schema`.`file_summary_by_instance`.`COUNT_WRITE`,0)),0.00)) AS `avg_write`,`sys`.`format_bytes`((`performance_schema`.`file_summary_by_instance`.`SUM_NUMBER_OF_BYTES_READ` + `performance_schema`.`file_summary_by_instance`.`SUM_NUMBER_OF_BYTES_WRITE`)) AS `total`,ifnull(round((100 - ((`performance_schema`.`file_summary_by_instance`.`SUM_NUMBER_OF_BYTES_READ` / nullif((`performance_schema`.`file_summary_by_instance`.`SUM_NUMBER_OF_BYTES_READ` + `performance_schema`.`file_summary_by_instance`.`SUM_NUMBER_OF_BYTES_WRITE`),0)) * 100)),2),0.00) AS `write_pct` from `performance_schema`.`file_summary_by_instance` order by (`performance_schema`.`file_summary_by_instance`.`SUM_NUMBER_OF_BYTES_READ` + `performance_schema`.`file_summary_by_instance`.`SUM_NUMBER_OF_BYTES_WRITE`) desc diff --git a/zbx_env/var/lib/mysql/sys/io_global_by_file_by_latency.frm b/zbx_env/var/lib/mysql/sys/io_global_by_file_by_latency.frm new file mode 100644 index 000000000..4f97293db --- /dev/null +++ b/zbx_env/var/lib/mysql/sys/io_global_by_file_by_latency.frm @@ -0,0 +1,15 @@ +TYPE=VIEW +query=select `sys`.`format_path`(`performance_schema`.`file_summary_by_instance`.`FILE_NAME`) AS `file`,`performance_schema`.`file_summary_by_instance`.`COUNT_STAR` AS `total`,`sys`.`format_time`(`performance_schema`.`file_summary_by_instance`.`SUM_TIMER_WAIT`) AS `total_latency`,`performance_schema`.`file_summary_by_instance`.`COUNT_READ` AS `count_read`,`sys`.`format_time`(`performance_schema`.`file_summary_by_instance`.`SUM_TIMER_READ`) AS `read_latency`,`performance_schema`.`file_summary_by_instance`.`COUNT_WRITE` AS `count_write`,`sys`.`format_time`(`performance_schema`.`file_summary_by_instance`.`SUM_TIMER_WRITE`) AS `write_latency`,`performance_schema`.`file_summary_by_instance`.`COUNT_MISC` AS `count_misc`,`sys`.`format_time`(`performance_schema`.`file_summary_by_instance`.`SUM_TIMER_MISC`) AS `misc_latency` from `performance_schema`.`file_summary_by_instance` order by `performance_schema`.`file_summary_by_instance`.`SUM_TIMER_WAIT` desc +md5=df1590c01c7120af1cfc8bf4d4c33e23 +updatable=1 +algorithm=2 +definer_user=mysql.sys +definer_host=localhost +suid=0 +with_check_option=0 +timestamp=2018-07-20 01:51:25 +create-version=1 +source=SELECT sys.format_path(file_name) AS file, count_star AS total, sys.format_time(sum_timer_wait) AS total_latency, count_read, sys.format_time(sum_timer_read) AS read_latency, count_write, sys.format_time(sum_timer_write) AS write_latency, count_misc, sys.format_time(sum_timer_misc) AS misc_latency FROM performance_schema.file_summary_by_instance ORDER BY sum_timer_wait DESC +client_cs_name=utf8 +connection_cl_name=utf8_general_ci +view_body_utf8=select `sys`.`format_path`(`performance_schema`.`file_summary_by_instance`.`FILE_NAME`) AS `file`,`performance_schema`.`file_summary_by_instance`.`COUNT_STAR` AS `total`,`sys`.`format_time`(`performance_schema`.`file_summary_by_instance`.`SUM_TIMER_WAIT`) AS `total_latency`,`performance_schema`.`file_summary_by_instance`.`COUNT_READ` AS `count_read`,`sys`.`format_time`(`performance_schema`.`file_summary_by_instance`.`SUM_TIMER_READ`) AS `read_latency`,`performance_schema`.`file_summary_by_instance`.`COUNT_WRITE` AS `count_write`,`sys`.`format_time`(`performance_schema`.`file_summary_by_instance`.`SUM_TIMER_WRITE`) AS `write_latency`,`performance_schema`.`file_summary_by_instance`.`COUNT_MISC` AS `count_misc`,`sys`.`format_time`(`performance_schema`.`file_summary_by_instance`.`SUM_TIMER_MISC`) AS `misc_latency` from `performance_schema`.`file_summary_by_instance` order by `performance_schema`.`file_summary_by_instance`.`SUM_TIMER_WAIT` desc diff --git a/zbx_env/var/lib/mysql/sys/io_global_by_wait_by_bytes.frm b/zbx_env/var/lib/mysql/sys/io_global_by_wait_by_bytes.frm new file mode 100644 index 000000000..5def1e8ea --- /dev/null +++ b/zbx_env/var/lib/mysql/sys/io_global_by_wait_by_bytes.frm @@ -0,0 +1,15 @@ +TYPE=VIEW +query=select substring_index(`performance_schema`.`file_summary_by_event_name`.`EVENT_NAME`,\'/\',-(2)) AS `event_name`,`performance_schema`.`file_summary_by_event_name`.`COUNT_STAR` AS `total`,`sys`.`format_time`(`performance_schema`.`file_summary_by_event_name`.`SUM_TIMER_WAIT`) AS `total_latency`,`sys`.`format_time`(`performance_schema`.`file_summary_by_event_name`.`MIN_TIMER_WAIT`) AS `min_latency`,`sys`.`format_time`(`performance_schema`.`file_summary_by_event_name`.`AVG_TIMER_WAIT`) AS `avg_latency`,`sys`.`format_time`(`performance_schema`.`file_summary_by_event_name`.`MAX_TIMER_WAIT`) AS `max_latency`,`performance_schema`.`file_summary_by_event_name`.`COUNT_READ` AS `count_read`,`sys`.`format_bytes`(`performance_schema`.`file_summary_by_event_name`.`SUM_NUMBER_OF_BYTES_READ`) AS `total_read`,`sys`.`format_bytes`(ifnull((`performance_schema`.`file_summary_by_event_name`.`SUM_NUMBER_OF_BYTES_READ` / nullif(`performance_schema`.`file_summary_by_event_name`.`COUNT_READ`,0)),0)) AS `avg_read`,`performance_schema`.`file_summary_by_event_name`.`COUNT_WRITE` AS `count_write`,`sys`.`format_bytes`(`performance_schema`.`file_summary_by_event_name`.`SUM_NUMBER_OF_BYTES_WRITE`) AS `total_written`,`sys`.`format_bytes`(ifnull((`performance_schema`.`file_summary_by_event_name`.`SUM_NUMBER_OF_BYTES_WRITE` / nullif(`performance_schema`.`file_summary_by_event_name`.`COUNT_WRITE`,0)),0)) AS `avg_written`,`sys`.`format_bytes`((`performance_schema`.`file_summary_by_event_name`.`SUM_NUMBER_OF_BYTES_WRITE` + `performance_schema`.`file_summary_by_event_name`.`SUM_NUMBER_OF_BYTES_READ`)) AS `total_requested` from `performance_schema`.`file_summary_by_event_name` where ((`performance_schema`.`file_summary_by_event_name`.`EVENT_NAME` like \'wait/io/file/%\') and (`performance_schema`.`file_summary_by_event_name`.`COUNT_STAR` > 0)) order by (`performance_schema`.`file_summary_by_event_name`.`SUM_NUMBER_OF_BYTES_WRITE` + `performance_schema`.`file_summary_by_event_name`.`SUM_NUMBER_OF_BYTES_READ`) desc +md5=9cdc5178b49a1a4b3731c076c96bcaaf +updatable=1 +algorithm=2 +definer_user=mysql.sys +definer_host=localhost +suid=0 +with_check_option=0 +timestamp=2018-07-20 01:51:25 +create-version=1 +source=SELECT SUBSTRING_INDEX(event_name, \'/\', -2) event_name, count_star AS total, sys.format_time(sum_timer_wait) AS total_latency, sys.format_time(min_timer_wait) AS min_latency, sys.format_time(avg_timer_wait) AS avg_latency, sys.format_time(max_timer_wait) AS max_latency, count_read, sys.format_bytes(sum_number_of_bytes_read) AS total_read, sys.format_bytes(IFNULL(sum_number_of_bytes_read / NULLIF(count_read, 0), 0)) AS avg_read, count_write, sys.format_bytes(sum_number_of_bytes_write) AS total_written, sys.format_bytes(IFNULL(sum_number_of_bytes_write / NULLIF(count_write, 0), 0)) AS avg_written, sys.format_bytes(sum_number_of_bytes_write + sum_number_of_bytes_read) AS total_requested FROM performance_schema.file_summary_by_event_name WHERE event_name LIKE \'wait/io/file/%\' AND count_star > 0 ORDER BY sum_number_of_bytes_write + sum_number_of_bytes_read DESC +client_cs_name=utf8 +connection_cl_name=utf8_general_ci +view_body_utf8=select substring_index(`performance_schema`.`file_summary_by_event_name`.`EVENT_NAME`,\'/\',-(2)) AS `event_name`,`performance_schema`.`file_summary_by_event_name`.`COUNT_STAR` AS `total`,`sys`.`format_time`(`performance_schema`.`file_summary_by_event_name`.`SUM_TIMER_WAIT`) AS `total_latency`,`sys`.`format_time`(`performance_schema`.`file_summary_by_event_name`.`MIN_TIMER_WAIT`) AS `min_latency`,`sys`.`format_time`(`performance_schema`.`file_summary_by_event_name`.`AVG_TIMER_WAIT`) AS `avg_latency`,`sys`.`format_time`(`performance_schema`.`file_summary_by_event_name`.`MAX_TIMER_WAIT`) AS `max_latency`,`performance_schema`.`file_summary_by_event_name`.`COUNT_READ` AS `count_read`,`sys`.`format_bytes`(`performance_schema`.`file_summary_by_event_name`.`SUM_NUMBER_OF_BYTES_READ`) AS `total_read`,`sys`.`format_bytes`(ifnull((`performance_schema`.`file_summary_by_event_name`.`SUM_NUMBER_OF_BYTES_READ` / nullif(`performance_schema`.`file_summary_by_event_name`.`COUNT_READ`,0)),0)) AS `avg_read`,`performance_schema`.`file_summary_by_event_name`.`COUNT_WRITE` AS `count_write`,`sys`.`format_bytes`(`performance_schema`.`file_summary_by_event_name`.`SUM_NUMBER_OF_BYTES_WRITE`) AS `total_written`,`sys`.`format_bytes`(ifnull((`performance_schema`.`file_summary_by_event_name`.`SUM_NUMBER_OF_BYTES_WRITE` / nullif(`performance_schema`.`file_summary_by_event_name`.`COUNT_WRITE`,0)),0)) AS `avg_written`,`sys`.`format_bytes`((`performance_schema`.`file_summary_by_event_name`.`SUM_NUMBER_OF_BYTES_WRITE` + `performance_schema`.`file_summary_by_event_name`.`SUM_NUMBER_OF_BYTES_READ`)) AS `total_requested` from `performance_schema`.`file_summary_by_event_name` where ((`performance_schema`.`file_summary_by_event_name`.`EVENT_NAME` like \'wait/io/file/%\') and (`performance_schema`.`file_summary_by_event_name`.`COUNT_STAR` > 0)) order by (`performance_schema`.`file_summary_by_event_name`.`SUM_NUMBER_OF_BYTES_WRITE` + `performance_schema`.`file_summary_by_event_name`.`SUM_NUMBER_OF_BYTES_READ`) desc diff --git a/zbx_env/var/lib/mysql/sys/io_global_by_wait_by_latency.frm b/zbx_env/var/lib/mysql/sys/io_global_by_wait_by_latency.frm new file mode 100644 index 000000000..f99ca50ea --- /dev/null +++ b/zbx_env/var/lib/mysql/sys/io_global_by_wait_by_latency.frm @@ -0,0 +1,15 @@ +TYPE=VIEW +query=select substring_index(`performance_schema`.`file_summary_by_event_name`.`EVENT_NAME`,\'/\',-(2)) AS `event_name`,`performance_schema`.`file_summary_by_event_name`.`COUNT_STAR` AS `total`,`sys`.`format_time`(`performance_schema`.`file_summary_by_event_name`.`SUM_TIMER_WAIT`) AS `total_latency`,`sys`.`format_time`(`performance_schema`.`file_summary_by_event_name`.`AVG_TIMER_WAIT`) AS `avg_latency`,`sys`.`format_time`(`performance_schema`.`file_summary_by_event_name`.`MAX_TIMER_WAIT`) AS `max_latency`,`sys`.`format_time`(`performance_schema`.`file_summary_by_event_name`.`SUM_TIMER_READ`) AS `read_latency`,`sys`.`format_time`(`performance_schema`.`file_summary_by_event_name`.`SUM_TIMER_WRITE`) AS `write_latency`,`sys`.`format_time`(`performance_schema`.`file_summary_by_event_name`.`SUM_TIMER_MISC`) AS `misc_latency`,`performance_schema`.`file_summary_by_event_name`.`COUNT_READ` AS `count_read`,`sys`.`format_bytes`(`performance_schema`.`file_summary_by_event_name`.`SUM_NUMBER_OF_BYTES_READ`) AS `total_read`,`sys`.`format_bytes`(ifnull((`performance_schema`.`file_summary_by_event_name`.`SUM_NUMBER_OF_BYTES_READ` / nullif(`performance_schema`.`file_summary_by_event_name`.`COUNT_READ`,0)),0)) AS `avg_read`,`performance_schema`.`file_summary_by_event_name`.`COUNT_WRITE` AS `count_write`,`sys`.`format_bytes`(`performance_schema`.`file_summary_by_event_name`.`SUM_NUMBER_OF_BYTES_WRITE`) AS `total_written`,`sys`.`format_bytes`(ifnull((`performance_schema`.`file_summary_by_event_name`.`SUM_NUMBER_OF_BYTES_WRITE` / nullif(`performance_schema`.`file_summary_by_event_name`.`COUNT_WRITE`,0)),0)) AS `avg_written` from `performance_schema`.`file_summary_by_event_name` where ((`performance_schema`.`file_summary_by_event_name`.`EVENT_NAME` like \'wait/io/file/%\') and (`performance_schema`.`file_summary_by_event_name`.`COUNT_STAR` > 0)) order by `performance_schema`.`file_summary_by_event_name`.`SUM_TIMER_WAIT` desc +md5=dbb53e73533dfe754576ae8988ddf3fc +updatable=1 +algorithm=2 +definer_user=mysql.sys +definer_host=localhost +suid=0 +with_check_option=0 +timestamp=2018-07-20 01:51:25 +create-version=1 +source=SELECT SUBSTRING_INDEX(event_name, \'/\', -2) AS event_name, count_star AS total, sys.format_time(sum_timer_wait) AS total_latency, sys.format_time(avg_timer_wait) AS avg_latency, sys.format_time(max_timer_wait) AS max_latency, sys.format_time(sum_timer_read) AS read_latency, sys.format_time(sum_timer_write) AS write_latency, sys.format_time(sum_timer_misc) AS misc_latency, count_read, sys.format_bytes(sum_number_of_bytes_read) AS total_read, sys.format_bytes(IFNULL(sum_number_of_bytes_read / NULLIF(count_read, 0), 0)) AS avg_read, count_write, sys.format_bytes(sum_number_of_bytes_write) AS total_written, sys.format_bytes(IFNULL(sum_number_of_bytes_write / NULLIF(count_write, 0), 0)) AS avg_written FROM performance_schema.file_summary_by_event_name WHERE event_name LIKE \'wait/io/file/%\' AND count_star > 0 ORDER BY sum_timer_wait DESC +client_cs_name=utf8 +connection_cl_name=utf8_general_ci +view_body_utf8=select substring_index(`performance_schema`.`file_summary_by_event_name`.`EVENT_NAME`,\'/\',-(2)) AS `event_name`,`performance_schema`.`file_summary_by_event_name`.`COUNT_STAR` AS `total`,`sys`.`format_time`(`performance_schema`.`file_summary_by_event_name`.`SUM_TIMER_WAIT`) AS `total_latency`,`sys`.`format_time`(`performance_schema`.`file_summary_by_event_name`.`AVG_TIMER_WAIT`) AS `avg_latency`,`sys`.`format_time`(`performance_schema`.`file_summary_by_event_name`.`MAX_TIMER_WAIT`) AS `max_latency`,`sys`.`format_time`(`performance_schema`.`file_summary_by_event_name`.`SUM_TIMER_READ`) AS `read_latency`,`sys`.`format_time`(`performance_schema`.`file_summary_by_event_name`.`SUM_TIMER_WRITE`) AS `write_latency`,`sys`.`format_time`(`performance_schema`.`file_summary_by_event_name`.`SUM_TIMER_MISC`) AS `misc_latency`,`performance_schema`.`file_summary_by_event_name`.`COUNT_READ` AS `count_read`,`sys`.`format_bytes`(`performance_schema`.`file_summary_by_event_name`.`SUM_NUMBER_OF_BYTES_READ`) AS `total_read`,`sys`.`format_bytes`(ifnull((`performance_schema`.`file_summary_by_event_name`.`SUM_NUMBER_OF_BYTES_READ` / nullif(`performance_schema`.`file_summary_by_event_name`.`COUNT_READ`,0)),0)) AS `avg_read`,`performance_schema`.`file_summary_by_event_name`.`COUNT_WRITE` AS `count_write`,`sys`.`format_bytes`(`performance_schema`.`file_summary_by_event_name`.`SUM_NUMBER_OF_BYTES_WRITE`) AS `total_written`,`sys`.`format_bytes`(ifnull((`performance_schema`.`file_summary_by_event_name`.`SUM_NUMBER_OF_BYTES_WRITE` / nullif(`performance_schema`.`file_summary_by_event_name`.`COUNT_WRITE`,0)),0)) AS `avg_written` from `performance_schema`.`file_summary_by_event_name` where ((`performance_schema`.`file_summary_by_event_name`.`EVENT_NAME` like \'wait/io/file/%\') and (`performance_schema`.`file_summary_by_event_name`.`COUNT_STAR` > 0)) order by `performance_schema`.`file_summary_by_event_name`.`SUM_TIMER_WAIT` desc diff --git a/zbx_env/var/lib/mysql/sys/latest_file_io.frm b/zbx_env/var/lib/mysql/sys/latest_file_io.frm new file mode 100644 index 000000000..82bd676cf --- /dev/null +++ b/zbx_env/var/lib/mysql/sys/latest_file_io.frm @@ -0,0 +1,15 @@ +TYPE=VIEW +query=select if(isnull(`information_schema`.`processlist`.`ID`),concat(substring_index(`performance_schema`.`threads`.`NAME`,\'/\',-(1)),\':\',`performance_schema`.`events_waits_history_long`.`THREAD_ID`),concat(`information_schema`.`processlist`.`USER`,\'@\',`information_schema`.`processlist`.`HOST`,\':\',`information_schema`.`processlist`.`ID`)) AS `thread`,`sys`.`format_path`(`performance_schema`.`events_waits_history_long`.`OBJECT_NAME`) AS `file`,`sys`.`format_time`(`performance_schema`.`events_waits_history_long`.`TIMER_WAIT`) AS `latency`,`performance_schema`.`events_waits_history_long`.`OPERATION` AS `operation`,`sys`.`format_bytes`(`performance_schema`.`events_waits_history_long`.`NUMBER_OF_BYTES`) AS `requested` from ((`performance_schema`.`events_waits_history_long` join `performance_schema`.`threads` on((`performance_schema`.`events_waits_history_long`.`THREAD_ID` = `performance_schema`.`threads`.`THREAD_ID`))) left join `information_schema`.`processlist` on((`performance_schema`.`threads`.`PROCESSLIST_ID` = `information_schema`.`processlist`.`ID`))) where ((`performance_schema`.`events_waits_history_long`.`OBJECT_NAME` is not null) and (`performance_schema`.`events_waits_history_long`.`EVENT_NAME` like \'wait/io/file/%\')) order by `performance_schema`.`events_waits_history_long`.`TIMER_START` +md5=4e328242d0813b94f74ca02cfb85c9a0 +updatable=0 +algorithm=2 +definer_user=mysql.sys +definer_host=localhost +suid=0 +with_check_option=0 +timestamp=2018-07-20 01:51:25 +create-version=1 +source=SELECT IF(id IS NULL, CONCAT(SUBSTRING_INDEX(name, \'/\', -1), \':\', thread_id), CONCAT(user, \'@\', host, \':\', id) ) thread, sys.format_path(object_name) file, sys.format_time(timer_wait) AS latency, operation, sys.format_bytes(number_of_bytes) AS requested FROM performance_schema.events_waits_history_long JOIN performance_schema.threads USING (thread_id) LEFT JOIN information_schema.processlist ON processlist_id = id WHERE object_name IS NOT NULL AND event_name LIKE \'wait/io/file/%\' ORDER BY timer_start +client_cs_name=utf8 +connection_cl_name=utf8_general_ci +view_body_utf8=select if(isnull(`information_schema`.`processlist`.`ID`),concat(substring_index(`performance_schema`.`threads`.`NAME`,\'/\',-(1)),\':\',`performance_schema`.`events_waits_history_long`.`THREAD_ID`),concat(`information_schema`.`processlist`.`USER`,\'@\',`information_schema`.`processlist`.`HOST`,\':\',`information_schema`.`processlist`.`ID`)) AS `thread`,`sys`.`format_path`(`performance_schema`.`events_waits_history_long`.`OBJECT_NAME`) AS `file`,`sys`.`format_time`(`performance_schema`.`events_waits_history_long`.`TIMER_WAIT`) AS `latency`,`performance_schema`.`events_waits_history_long`.`OPERATION` AS `operation`,`sys`.`format_bytes`(`performance_schema`.`events_waits_history_long`.`NUMBER_OF_BYTES`) AS `requested` from ((`performance_schema`.`events_waits_history_long` join `performance_schema`.`threads` on((`performance_schema`.`events_waits_history_long`.`THREAD_ID` = `performance_schema`.`threads`.`THREAD_ID`))) left join `information_schema`.`processlist` on((`performance_schema`.`threads`.`PROCESSLIST_ID` = `information_schema`.`processlist`.`ID`))) where ((`performance_schema`.`events_waits_history_long`.`OBJECT_NAME` is not null) and (`performance_schema`.`events_waits_history_long`.`EVENT_NAME` like \'wait/io/file/%\')) order by `performance_schema`.`events_waits_history_long`.`TIMER_START` diff --git a/zbx_env/var/lib/mysql/sys/memory_by_host_by_current_bytes.frm b/zbx_env/var/lib/mysql/sys/memory_by_host_by_current_bytes.frm new file mode 100644 index 000000000..eac5dad59 --- /dev/null +++ b/zbx_env/var/lib/mysql/sys/memory_by_host_by_current_bytes.frm @@ -0,0 +1,15 @@ +TYPE=VIEW +query=select if(isnull(`performance_schema`.`memory_summary_by_host_by_event_name`.`HOST`),\'background\',`performance_schema`.`memory_summary_by_host_by_event_name`.`HOST`) AS `host`,sum(`performance_schema`.`memory_summary_by_host_by_event_name`.`CURRENT_COUNT_USED`) AS `current_count_used`,`sys`.`format_bytes`(sum(`performance_schema`.`memory_summary_by_host_by_event_name`.`CURRENT_NUMBER_OF_BYTES_USED`)) AS `current_allocated`,`sys`.`format_bytes`(ifnull((sum(`performance_schema`.`memory_summary_by_host_by_event_name`.`CURRENT_NUMBER_OF_BYTES_USED`) / nullif(sum(`performance_schema`.`memory_summary_by_host_by_event_name`.`CURRENT_COUNT_USED`),0)),0)) AS `current_avg_alloc`,`sys`.`format_bytes`(max(`performance_schema`.`memory_summary_by_host_by_event_name`.`CURRENT_NUMBER_OF_BYTES_USED`)) AS `current_max_alloc`,`sys`.`format_bytes`(sum(`performance_schema`.`memory_summary_by_host_by_event_name`.`SUM_NUMBER_OF_BYTES_ALLOC`)) AS `total_allocated` from `performance_schema`.`memory_summary_by_host_by_event_name` group by if(isnull(`performance_schema`.`memory_summary_by_host_by_event_name`.`HOST`),\'background\',`performance_schema`.`memory_summary_by_host_by_event_name`.`HOST`) order by sum(`performance_schema`.`memory_summary_by_host_by_event_name`.`CURRENT_NUMBER_OF_BYTES_USED`) desc +md5=7cc67055b195611b3a0d3fc5e738eb81 +updatable=0 +algorithm=1 +definer_user=mysql.sys +definer_host=localhost +suid=0 +with_check_option=0 +timestamp=2018-07-20 01:51:25 +create-version=1 +source=SELECT IF(host IS NULL, \'background\', host) AS host, SUM(current_count_used) AS current_count_used, sys.format_bytes(SUM(current_number_of_bytes_used)) AS current_allocated, sys.format_bytes(IFNULL(SUM(current_number_of_bytes_used) / NULLIF(SUM(current_count_used), 0), 0)) AS current_avg_alloc, sys.format_bytes(MAX(current_number_of_bytes_used)) AS current_max_alloc, sys.format_bytes(SUM(sum_number_of_bytes_alloc)) AS total_allocated FROM performance_schema.memory_summary_by_host_by_event_name GROUP BY IF(host IS NULL, \'background\', host) ORDER BY SUM(current_number_of_bytes_used) DESC +client_cs_name=utf8 +connection_cl_name=utf8_general_ci +view_body_utf8=select if(isnull(`performance_schema`.`memory_summary_by_host_by_event_name`.`HOST`),\'background\',`performance_schema`.`memory_summary_by_host_by_event_name`.`HOST`) AS `host`,sum(`performance_schema`.`memory_summary_by_host_by_event_name`.`CURRENT_COUNT_USED`) AS `current_count_used`,`sys`.`format_bytes`(sum(`performance_schema`.`memory_summary_by_host_by_event_name`.`CURRENT_NUMBER_OF_BYTES_USED`)) AS `current_allocated`,`sys`.`format_bytes`(ifnull((sum(`performance_schema`.`memory_summary_by_host_by_event_name`.`CURRENT_NUMBER_OF_BYTES_USED`) / nullif(sum(`performance_schema`.`memory_summary_by_host_by_event_name`.`CURRENT_COUNT_USED`),0)),0)) AS `current_avg_alloc`,`sys`.`format_bytes`(max(`performance_schema`.`memory_summary_by_host_by_event_name`.`CURRENT_NUMBER_OF_BYTES_USED`)) AS `current_max_alloc`,`sys`.`format_bytes`(sum(`performance_schema`.`memory_summary_by_host_by_event_name`.`SUM_NUMBER_OF_BYTES_ALLOC`)) AS `total_allocated` from `performance_schema`.`memory_summary_by_host_by_event_name` group by if(isnull(`performance_schema`.`memory_summary_by_host_by_event_name`.`HOST`),\'background\',`performance_schema`.`memory_summary_by_host_by_event_name`.`HOST`) order by sum(`performance_schema`.`memory_summary_by_host_by_event_name`.`CURRENT_NUMBER_OF_BYTES_USED`) desc diff --git a/zbx_env/var/lib/mysql/sys/memory_by_thread_by_current_bytes.frm b/zbx_env/var/lib/mysql/sys/memory_by_thread_by_current_bytes.frm new file mode 100644 index 000000000..ab0797f12 --- /dev/null +++ b/zbx_env/var/lib/mysql/sys/memory_by_thread_by_current_bytes.frm @@ -0,0 +1,15 @@ +TYPE=VIEW +query=select `mt`.`THREAD_ID` AS `thread_id`,if((`t`.`NAME` = \'thread/sql/one_connection\'),concat(`t`.`PROCESSLIST_USER`,\'@\',`t`.`PROCESSLIST_HOST`),replace(`t`.`NAME`,\'thread/\',\'\')) AS `user`,sum(`mt`.`CURRENT_COUNT_USED`) AS `current_count_used`,`sys`.`format_bytes`(sum(`mt`.`CURRENT_NUMBER_OF_BYTES_USED`)) AS `current_allocated`,`sys`.`format_bytes`(ifnull((sum(`mt`.`CURRENT_NUMBER_OF_BYTES_USED`) / nullif(sum(`mt`.`CURRENT_COUNT_USED`),0)),0)) AS `current_avg_alloc`,`sys`.`format_bytes`(max(`mt`.`CURRENT_NUMBER_OF_BYTES_USED`)) AS `current_max_alloc`,`sys`.`format_bytes`(sum(`mt`.`SUM_NUMBER_OF_BYTES_ALLOC`)) AS `total_allocated` from (`performance_schema`.`memory_summary_by_thread_by_event_name` `mt` join `performance_schema`.`threads` `t` on((`mt`.`THREAD_ID` = `t`.`THREAD_ID`))) group by `mt`.`THREAD_ID`,if((`t`.`NAME` = \'thread/sql/one_connection\'),concat(`t`.`PROCESSLIST_USER`,\'@\',`t`.`PROCESSLIST_HOST`),replace(`t`.`NAME`,\'thread/\',\'\')) order by sum(`mt`.`CURRENT_NUMBER_OF_BYTES_USED`) desc +md5=f52d32948adcd2fc220877ecb408580f +updatable=0 +algorithm=1 +definer_user=mysql.sys +definer_host=localhost +suid=0 +with_check_option=0 +timestamp=2018-07-20 01:51:25 +create-version=1 +source=SELECT thread_id, IF(t.name = \'thread/sql/one_connection\', CONCAT(t.processlist_user, \'@\', t.processlist_host), REPLACE(t.name, \'thread/\', \'\')) user, SUM(mt.current_count_used) AS current_count_used, sys.format_bytes(SUM(mt.current_number_of_bytes_used)) AS current_allocated, sys.format_bytes(IFNULL(SUM(mt.current_number_of_bytes_used) / NULLIF(SUM(current_count_used), 0), 0)) AS current_avg_alloc, sys.format_bytes(MAX(mt.current_number_of_bytes_used)) AS current_max_alloc, sys.format_bytes(SUM(mt.sum_number_of_bytes_alloc)) AS total_allocated FROM performance_schema.memory_summary_by_thread_by_event_name AS mt JOIN performance_schema.threads AS t USING (thread_id) GROUP BY thread_id, IF(t.name = \'thread/sql/one_connection\', CONCAT(t.processlist_user, \'@\', t.processlist_host), REPLACE(t.name, \'thread/\', \'\')) ORDER BY SUM(current_number_of_bytes_used) DESC +client_cs_name=utf8 +connection_cl_name=utf8_general_ci +view_body_utf8=select `mt`.`THREAD_ID` AS `thread_id`,if((`t`.`NAME` = \'thread/sql/one_connection\'),concat(`t`.`PROCESSLIST_USER`,\'@\',`t`.`PROCESSLIST_HOST`),replace(`t`.`NAME`,\'thread/\',\'\')) AS `user`,sum(`mt`.`CURRENT_COUNT_USED`) AS `current_count_used`,`sys`.`format_bytes`(sum(`mt`.`CURRENT_NUMBER_OF_BYTES_USED`)) AS `current_allocated`,`sys`.`format_bytes`(ifnull((sum(`mt`.`CURRENT_NUMBER_OF_BYTES_USED`) / nullif(sum(`mt`.`CURRENT_COUNT_USED`),0)),0)) AS `current_avg_alloc`,`sys`.`format_bytes`(max(`mt`.`CURRENT_NUMBER_OF_BYTES_USED`)) AS `current_max_alloc`,`sys`.`format_bytes`(sum(`mt`.`SUM_NUMBER_OF_BYTES_ALLOC`)) AS `total_allocated` from (`performance_schema`.`memory_summary_by_thread_by_event_name` `mt` join `performance_schema`.`threads` `t` on((`mt`.`THREAD_ID` = `t`.`THREAD_ID`))) group by `mt`.`THREAD_ID`,if((`t`.`NAME` = \'thread/sql/one_connection\'),concat(`t`.`PROCESSLIST_USER`,\'@\',`t`.`PROCESSLIST_HOST`),replace(`t`.`NAME`,\'thread/\',\'\')) order by sum(`mt`.`CURRENT_NUMBER_OF_BYTES_USED`) desc diff --git a/zbx_env/var/lib/mysql/sys/memory_by_user_by_current_bytes.frm b/zbx_env/var/lib/mysql/sys/memory_by_user_by_current_bytes.frm new file mode 100644 index 000000000..1bac8323d --- /dev/null +++ b/zbx_env/var/lib/mysql/sys/memory_by_user_by_current_bytes.frm @@ -0,0 +1,15 @@ +TYPE=VIEW +query=select if(isnull(`performance_schema`.`memory_summary_by_user_by_event_name`.`USER`),\'background\',`performance_schema`.`memory_summary_by_user_by_event_name`.`USER`) AS `user`,sum(`performance_schema`.`memory_summary_by_user_by_event_name`.`CURRENT_COUNT_USED`) AS `current_count_used`,`sys`.`format_bytes`(sum(`performance_schema`.`memory_summary_by_user_by_event_name`.`CURRENT_NUMBER_OF_BYTES_USED`)) AS `current_allocated`,`sys`.`format_bytes`(ifnull((sum(`performance_schema`.`memory_summary_by_user_by_event_name`.`CURRENT_NUMBER_OF_BYTES_USED`) / nullif(sum(`performance_schema`.`memory_summary_by_user_by_event_name`.`CURRENT_COUNT_USED`),0)),0)) AS `current_avg_alloc`,`sys`.`format_bytes`(max(`performance_schema`.`memory_summary_by_user_by_event_name`.`CURRENT_NUMBER_OF_BYTES_USED`)) AS `current_max_alloc`,`sys`.`format_bytes`(sum(`performance_schema`.`memory_summary_by_user_by_event_name`.`SUM_NUMBER_OF_BYTES_ALLOC`)) AS `total_allocated` from `performance_schema`.`memory_summary_by_user_by_event_name` group by if(isnull(`performance_schema`.`memory_summary_by_user_by_event_name`.`USER`),\'background\',`performance_schema`.`memory_summary_by_user_by_event_name`.`USER`) order by sum(`performance_schema`.`memory_summary_by_user_by_event_name`.`CURRENT_NUMBER_OF_BYTES_USED`) desc +md5=8ad1dc1af6f4bf51d580e1b94ced37bb +updatable=0 +algorithm=1 +definer_user=mysql.sys +definer_host=localhost +suid=0 +with_check_option=0 +timestamp=2018-07-20 01:51:25 +create-version=1 +source=SELECT IF(user IS NULL, \'background\', user) AS user, SUM(current_count_used) AS current_count_used, sys.format_bytes(SUM(current_number_of_bytes_used)) AS current_allocated, sys.format_bytes(IFNULL(SUM(current_number_of_bytes_used) / NULLIF(SUM(current_count_used), 0), 0)) AS current_avg_alloc, sys.format_bytes(MAX(current_number_of_bytes_used)) AS current_max_alloc, sys.format_bytes(SUM(sum_number_of_bytes_alloc)) AS total_allocated FROM performance_schema.memory_summary_by_user_by_event_name GROUP BY IF(user IS NULL, \'background\', user) ORDER BY SUM(current_number_of_bytes_used) DESC +client_cs_name=utf8 +connection_cl_name=utf8_general_ci +view_body_utf8=select if(isnull(`performance_schema`.`memory_summary_by_user_by_event_name`.`USER`),\'background\',`performance_schema`.`memory_summary_by_user_by_event_name`.`USER`) AS `user`,sum(`performance_schema`.`memory_summary_by_user_by_event_name`.`CURRENT_COUNT_USED`) AS `current_count_used`,`sys`.`format_bytes`(sum(`performance_schema`.`memory_summary_by_user_by_event_name`.`CURRENT_NUMBER_OF_BYTES_USED`)) AS `current_allocated`,`sys`.`format_bytes`(ifnull((sum(`performance_schema`.`memory_summary_by_user_by_event_name`.`CURRENT_NUMBER_OF_BYTES_USED`) / nullif(sum(`performance_schema`.`memory_summary_by_user_by_event_name`.`CURRENT_COUNT_USED`),0)),0)) AS `current_avg_alloc`,`sys`.`format_bytes`(max(`performance_schema`.`memory_summary_by_user_by_event_name`.`CURRENT_NUMBER_OF_BYTES_USED`)) AS `current_max_alloc`,`sys`.`format_bytes`(sum(`performance_schema`.`memory_summary_by_user_by_event_name`.`SUM_NUMBER_OF_BYTES_ALLOC`)) AS `total_allocated` from `performance_schema`.`memory_summary_by_user_by_event_name` group by if(isnull(`performance_schema`.`memory_summary_by_user_by_event_name`.`USER`),\'background\',`performance_schema`.`memory_summary_by_user_by_event_name`.`USER`) order by sum(`performance_schema`.`memory_summary_by_user_by_event_name`.`CURRENT_NUMBER_OF_BYTES_USED`) desc diff --git a/zbx_env/var/lib/mysql/sys/memory_global_by_current_bytes.frm b/zbx_env/var/lib/mysql/sys/memory_global_by_current_bytes.frm new file mode 100644 index 000000000..593155601 --- /dev/null +++ b/zbx_env/var/lib/mysql/sys/memory_global_by_current_bytes.frm @@ -0,0 +1,15 @@ +TYPE=VIEW +query=select `performance_schema`.`memory_summary_global_by_event_name`.`EVENT_NAME` AS `event_name`,`performance_schema`.`memory_summary_global_by_event_name`.`CURRENT_COUNT_USED` AS `current_count`,`sys`.`format_bytes`(`performance_schema`.`memory_summary_global_by_event_name`.`CURRENT_NUMBER_OF_BYTES_USED`) AS `current_alloc`,`sys`.`format_bytes`(ifnull((`performance_schema`.`memory_summary_global_by_event_name`.`CURRENT_NUMBER_OF_BYTES_USED` / nullif(`performance_schema`.`memory_summary_global_by_event_name`.`CURRENT_COUNT_USED`,0)),0)) AS `current_avg_alloc`,`performance_schema`.`memory_summary_global_by_event_name`.`HIGH_COUNT_USED` AS `high_count`,`sys`.`format_bytes`(`performance_schema`.`memory_summary_global_by_event_name`.`HIGH_NUMBER_OF_BYTES_USED`) AS `high_alloc`,`sys`.`format_bytes`(ifnull((`performance_schema`.`memory_summary_global_by_event_name`.`HIGH_NUMBER_OF_BYTES_USED` / nullif(`performance_schema`.`memory_summary_global_by_event_name`.`HIGH_COUNT_USED`,0)),0)) AS `high_avg_alloc` from `performance_schema`.`memory_summary_global_by_event_name` where (`performance_schema`.`memory_summary_global_by_event_name`.`CURRENT_NUMBER_OF_BYTES_USED` > 0) order by `performance_schema`.`memory_summary_global_by_event_name`.`CURRENT_NUMBER_OF_BYTES_USED` desc +md5=0a3c8b3a3fa954cca8ab5b6cc3026944 +updatable=1 +algorithm=2 +definer_user=mysql.sys +definer_host=localhost +suid=0 +with_check_option=0 +timestamp=2018-07-20 01:51:25 +create-version=1 +source=SELECT event_name, current_count_used AS current_count, sys.format_bytes(current_number_of_bytes_used) AS current_alloc, sys.format_bytes(IFNULL(current_number_of_bytes_used / NULLIF(current_count_used, 0), 0)) AS current_avg_alloc, high_count_used AS high_count, sys.format_bytes(high_number_of_bytes_used) AS high_alloc, sys.format_bytes(IFNULL(high_number_of_bytes_used / NULLIF(high_count_used, 0), 0)) AS high_avg_alloc FROM performance_schema.memory_summary_global_by_event_name WHERE current_number_of_bytes_used > 0 ORDER BY current_number_of_bytes_used DESC +client_cs_name=utf8 +connection_cl_name=utf8_general_ci +view_body_utf8=select `performance_schema`.`memory_summary_global_by_event_name`.`EVENT_NAME` AS `event_name`,`performance_schema`.`memory_summary_global_by_event_name`.`CURRENT_COUNT_USED` AS `current_count`,`sys`.`format_bytes`(`performance_schema`.`memory_summary_global_by_event_name`.`CURRENT_NUMBER_OF_BYTES_USED`) AS `current_alloc`,`sys`.`format_bytes`(ifnull((`performance_schema`.`memory_summary_global_by_event_name`.`CURRENT_NUMBER_OF_BYTES_USED` / nullif(`performance_schema`.`memory_summary_global_by_event_name`.`CURRENT_COUNT_USED`,0)),0)) AS `current_avg_alloc`,`performance_schema`.`memory_summary_global_by_event_name`.`HIGH_COUNT_USED` AS `high_count`,`sys`.`format_bytes`(`performance_schema`.`memory_summary_global_by_event_name`.`HIGH_NUMBER_OF_BYTES_USED`) AS `high_alloc`,`sys`.`format_bytes`(ifnull((`performance_schema`.`memory_summary_global_by_event_name`.`HIGH_NUMBER_OF_BYTES_USED` / nullif(`performance_schema`.`memory_summary_global_by_event_name`.`HIGH_COUNT_USED`,0)),0)) AS `high_avg_alloc` from `performance_schema`.`memory_summary_global_by_event_name` where (`performance_schema`.`memory_summary_global_by_event_name`.`CURRENT_NUMBER_OF_BYTES_USED` > 0) order by `performance_schema`.`memory_summary_global_by_event_name`.`CURRENT_NUMBER_OF_BYTES_USED` desc diff --git a/zbx_env/var/lib/mysql/sys/memory_global_total.frm b/zbx_env/var/lib/mysql/sys/memory_global_total.frm new file mode 100644 index 000000000..329d38220 --- /dev/null +++ b/zbx_env/var/lib/mysql/sys/memory_global_total.frm @@ -0,0 +1,15 @@ +TYPE=VIEW +query=select `sys`.`format_bytes`(sum(`performance_schema`.`memory_summary_global_by_event_name`.`CURRENT_NUMBER_OF_BYTES_USED`)) AS `total_allocated` from `performance_schema`.`memory_summary_global_by_event_name` +md5=8082fddb38d6165c0d33b88815ddf3d8 +updatable=0 +algorithm=1 +definer_user=mysql.sys +definer_host=localhost +suid=0 +with_check_option=0 +timestamp=2018-07-20 01:51:25 +create-version=1 +source=SELECT sys.format_bytes(SUM(CURRENT_NUMBER_OF_BYTES_USED)) total_allocated FROM performance_schema.memory_summary_global_by_event_name +client_cs_name=utf8 +connection_cl_name=utf8_general_ci +view_body_utf8=select `sys`.`format_bytes`(sum(`performance_schema`.`memory_summary_global_by_event_name`.`CURRENT_NUMBER_OF_BYTES_USED`)) AS `total_allocated` from `performance_schema`.`memory_summary_global_by_event_name` diff --git a/zbx_env/var/lib/mysql/sys/metrics.frm b/zbx_env/var/lib/mysql/sys/metrics.frm new file mode 100644 index 000000000..30007904c --- /dev/null +++ b/zbx_env/var/lib/mysql/sys/metrics.frm @@ -0,0 +1,15 @@ +TYPE=VIEW +query=(select lower(`performance_schema`.`global_status`.`VARIABLE_NAME`) AS `Variable_name`,`performance_schema`.`global_status`.`VARIABLE_VALUE` AS `Variable_value`,\'Global Status\' AS `Type`,\'YES\' AS `Enabled` from `performance_schema`.`global_status`) union all (select `information_schema`.`INNODB_METRICS`.`NAME` AS `Variable_name`,`information_schema`.`INNODB_METRICS`.`COUNT` AS `Variable_value`,concat(\'InnoDB Metrics - \',`information_schema`.`INNODB_METRICS`.`SUBSYSTEM`) AS `Type`,if((`information_schema`.`INNODB_METRICS`.`STATUS` = \'enabled\'),\'YES\',\'NO\') AS `Enabled` from `information_schema`.`INNODB_METRICS` where (`information_schema`.`INNODB_METRICS`.`NAME` not in (\'lock_row_lock_time\',\'lock_row_lock_time_avg\',\'lock_row_lock_time_max\',\'lock_row_lock_waits\',\'buffer_pool_reads\',\'buffer_pool_read_requests\',\'buffer_pool_write_requests\',\'buffer_pool_wait_free\',\'buffer_pool_read_ahead\',\'buffer_pool_read_ahead_evicted\',\'buffer_pool_pages_total\',\'buffer_pool_pages_misc\',\'buffer_pool_pages_data\',\'buffer_pool_bytes_data\',\'buffer_pool_pages_dirty\',\'buffer_pool_bytes_dirty\',\'buffer_pool_pages_free\',\'buffer_pages_created\',\'buffer_pages_written\',\'buffer_pages_read\',\'buffer_data_reads\',\'buffer_data_written\',\'file_num_open_files\',\'os_log_bytes_written\',\'os_log_fsyncs\',\'os_log_pending_fsyncs\',\'os_log_pending_writes\',\'log_waits\',\'log_write_requests\',\'log_writes\',\'innodb_dblwr_writes\',\'innodb_dblwr_pages_written\',\'innodb_page_size\'))) union all (select \'memory_current_allocated\' AS `Variable_name`,sum(`performance_schema`.`memory_summary_global_by_event_name`.`CURRENT_NUMBER_OF_BYTES_USED`) AS `Variable_value`,\'Performance Schema\' AS `Type`,if(((select count(0) from `performance_schema`.`setup_instruments` where ((`performance_schema`.`setup_instruments`.`NAME` like \'memory/%\') and (`performance_schema`.`setup_instruments`.`ENABLED` = \'YES\'))) = 0),\'NO\',if(((select count(0) from `performance_schema`.`setup_instruments` where ((`performance_schema`.`setup_instruments`.`NAME` like \'memory/%\') and (`performance_schema`.`setup_instruments`.`ENABLED` = \'YES\'))) = (select count(0) from `performance_schema`.`setup_instruments` where (`performance_schema`.`setup_instruments`.`NAME` like \'memory/%\'))),\'YES\',\'PARTIAL\')) AS `Enabled` from `performance_schema`.`memory_summary_global_by_event_name`) union all (select \'memory_total_allocated\' AS `Variable_name`,sum(`performance_schema`.`memory_summary_global_by_event_name`.`SUM_NUMBER_OF_BYTES_ALLOC`) AS `Variable_value`,\'Performance Schema\' AS `Type`,if(((select count(0) from `performance_schema`.`setup_instruments` where ((`performance_schema`.`setup_instruments`.`NAME` like \'memory/%\') and (`performance_schema`.`setup_instruments`.`ENABLED` = \'YES\'))) = 0),\'NO\',if(((select count(0) from `performance_schema`.`setup_instruments` where ((`performance_schema`.`setup_instruments`.`NAME` like \'memory/%\') and (`performance_schema`.`setup_instruments`.`ENABLED` = \'YES\'))) = (select count(0) from `performance_schema`.`setup_instruments` where (`performance_schema`.`setup_instruments`.`NAME` like \'memory/%\'))),\'YES\',\'PARTIAL\')) AS `Enabled` from `performance_schema`.`memory_summary_global_by_event_name`) union all (select \'NOW()\' AS `Variable_name`,now(3) AS `Variable_value`,\'System Time\' AS `Type`,\'YES\' AS `Enabled`) union all (select \'UNIX_TIMESTAMP()\' AS `Variable_name`,round(unix_timestamp(now(3)),3) AS `Variable_value`,\'System Time\' AS `Type`,\'YES\' AS `Enabled`) order by `Type`,`Variable_name` +md5=68a03cdfba4893ad11e38b2bc8f1e1b0 +updatable=0 +algorithm=1 +definer_user=mysql.sys +definer_host=localhost +suid=0 +with_check_option=0 +timestamp=2018-07-20 01:51:25 +create-version=1 +source=( SELECT LOWER(VARIABLE_NAME) AS Variable_name, VARIABLE_VALUE AS Variable_value, \'Global Status\' AS Type, \'YES\' AS Enabled FROM performance_schema.global_status ) UNION ALL ( SELECT NAME AS Variable_name, COUNT AS Variable_value, CONCAT(\'InnoDB Metrics - \', SUBSYSTEM) AS Type, IF(STATUS = \'enabled\', \'YES\', \'NO\') AS Enabled FROM information_schema.INNODB_METRICS WHERE NAME NOT IN ( \'lock_row_lock_time\', \'lock_row_lock_time_avg\', \'lock_row_lock_time_max\', \'lock_row_lock_waits\', \'buffer_pool_reads\', \'buffer_pool_read_requests\', \'buffer_pool_write_requests\', \'buffer_pool_wait_free\', \'buffer_pool_read_ahead\', \'buffer_pool_read_ahead_evicted\', \'buffer_pool_pages_total\', \'buffer_pool_pages_misc\', \'buffer_pool_pages_data\', \'buffer_pool_bytes_data\', \'buffer_pool_pages_dirty\', \'buffer_pool_bytes_dirty\', \'buffer_pool_pages_free\', \'buffer_pages_created\', \'buffer_pages_written\', \'buffer_pages_read\', \'buffer_data_reads\', \'buffer_data_written\', \'file_num_open_files\', \'os_log_bytes_written\', \'os_log_fsyncs\', \'os_log_pending_fsyncs\', \'os_log_pending_writes\', \'log_waits\', \'log_write_requests\', \'log_writes\', \'innodb_dblwr_writes\', \'innodb_dblwr_pages_written\', \'innodb_page_size\') ) UNION ALL ( SELECT \'memory_current_allocated\' AS Variable_name, SUM(CURRENT_NUMBER_OF_BYTES_USED) AS Variable_value, \'Performance Schema\' AS Type, IF((SELECT COUNT(*) FROM performance_schema.setup_instruments WHERE NAME LIKE \'memory/%\' AND ENABLED = \'YES\') = 0, \'NO\', IF((SELECT COUNT(*) FROM performance_schema.setup_instruments WHERE NAME LIKE \'memory/%\' AND ENABLED = \'YES\') = (SELECT COUNT(*) FROM performance_schema.setup_instruments WHERE NAME LIKE \'memory/%\'), \'YES\', \'PARTIAL\')) AS Enabled FROM performance_schema.memory_summary_global_by_event_name ) UNION ALL ( SELECT \'memory_total_allocated\' AS Variable_name, SUM(SUM_NUMBER_OF_BYTES_ALLOC) AS Variable_value, \'Performance Schema\' AS Type, IF((SELECT COUNT(*) FROM performance_schema.setup_instruments WHERE NAME LIKE \'memory/%\' AND ENABLED = \'YES\') = 0, \'NO\', IF((SELECT COUNT(*) FROM performance_schema.setup_instruments WHERE NAME LIKE \'memory/%\' AND ENABLED = \'YES\') = (SELECT COUNT(*) FROM performance_schema.setup_instruments WHERE NAME LIKE \'memory/%\'), \'YES\', \'PARTIAL\')) AS Enabled FROM performance_schema.memory_summary_global_by_event_name ) UNION ALL ( SELECT \'NOW()\' AS Variable_name, NOW(3) AS Variable_value, \'System Time\' AS Type, \'YES\' AS Enabled ) UNION ALL ( SELECT \'UNIX_TIMESTAMP()\' AS Variable_name, ROUND(UNIX_TIMESTAMP(NOW(3)), 3) AS Variable_value, \'System Time\' AS Type, \'YES\' AS Enabled ) ORDER BY Type, Variable_name +client_cs_name=utf8 +connection_cl_name=utf8_general_ci +view_body_utf8=(select lower(`performance_schema`.`global_status`.`VARIABLE_NAME`) AS `Variable_name`,`performance_schema`.`global_status`.`VARIABLE_VALUE` AS `Variable_value`,\'Global Status\' AS `Type`,\'YES\' AS `Enabled` from `performance_schema`.`global_status`) union all (select `information_schema`.`INNODB_METRICS`.`NAME` AS `Variable_name`,`information_schema`.`INNODB_METRICS`.`COUNT` AS `Variable_value`,concat(\'InnoDB Metrics - \',`information_schema`.`INNODB_METRICS`.`SUBSYSTEM`) AS `Type`,if((`information_schema`.`INNODB_METRICS`.`STATUS` = \'enabled\'),\'YES\',\'NO\') AS `Enabled` from `information_schema`.`INNODB_METRICS` where (`information_schema`.`INNODB_METRICS`.`NAME` not in (\'lock_row_lock_time\',\'lock_row_lock_time_avg\',\'lock_row_lock_time_max\',\'lock_row_lock_waits\',\'buffer_pool_reads\',\'buffer_pool_read_requests\',\'buffer_pool_write_requests\',\'buffer_pool_wait_free\',\'buffer_pool_read_ahead\',\'buffer_pool_read_ahead_evicted\',\'buffer_pool_pages_total\',\'buffer_pool_pages_misc\',\'buffer_pool_pages_data\',\'buffer_pool_bytes_data\',\'buffer_pool_pages_dirty\',\'buffer_pool_bytes_dirty\',\'buffer_pool_pages_free\',\'buffer_pages_created\',\'buffer_pages_written\',\'buffer_pages_read\',\'buffer_data_reads\',\'buffer_data_written\',\'file_num_open_files\',\'os_log_bytes_written\',\'os_log_fsyncs\',\'os_log_pending_fsyncs\',\'os_log_pending_writes\',\'log_waits\',\'log_write_requests\',\'log_writes\',\'innodb_dblwr_writes\',\'innodb_dblwr_pages_written\',\'innodb_page_size\'))) union all (select \'memory_current_allocated\' AS `Variable_name`,sum(`performance_schema`.`memory_summary_global_by_event_name`.`CURRENT_NUMBER_OF_BYTES_USED`) AS `Variable_value`,\'Performance Schema\' AS `Type`,if(((select count(0) from `performance_schema`.`setup_instruments` where ((`performance_schema`.`setup_instruments`.`NAME` like \'memory/%\') and (`performance_schema`.`setup_instruments`.`ENABLED` = \'YES\'))) = 0),\'NO\',if(((select count(0) from `performance_schema`.`setup_instruments` where ((`performance_schema`.`setup_instruments`.`NAME` like \'memory/%\') and (`performance_schema`.`setup_instruments`.`ENABLED` = \'YES\'))) = (select count(0) from `performance_schema`.`setup_instruments` where (`performance_schema`.`setup_instruments`.`NAME` like \'memory/%\'))),\'YES\',\'PARTIAL\')) AS `Enabled` from `performance_schema`.`memory_summary_global_by_event_name`) union all (select \'memory_total_allocated\' AS `Variable_name`,sum(`performance_schema`.`memory_summary_global_by_event_name`.`SUM_NUMBER_OF_BYTES_ALLOC`) AS `Variable_value`,\'Performance Schema\' AS `Type`,if(((select count(0) from `performance_schema`.`setup_instruments` where ((`performance_schema`.`setup_instruments`.`NAME` like \'memory/%\') and (`performance_schema`.`setup_instruments`.`ENABLED` = \'YES\'))) = 0),\'NO\',if(((select count(0) from `performance_schema`.`setup_instruments` where ((`performance_schema`.`setup_instruments`.`NAME` like \'memory/%\') and (`performance_schema`.`setup_instruments`.`ENABLED` = \'YES\'))) = (select count(0) from `performance_schema`.`setup_instruments` where (`performance_schema`.`setup_instruments`.`NAME` like \'memory/%\'))),\'YES\',\'PARTIAL\')) AS `Enabled` from `performance_schema`.`memory_summary_global_by_event_name`) union all (select \'NOW()\' AS `Variable_name`,now(3) AS `Variable_value`,\'System Time\' AS `Type`,\'YES\' AS `Enabled`) union all (select \'UNIX_TIMESTAMP()\' AS `Variable_name`,round(unix_timestamp(now(3)),3) AS `Variable_value`,\'System Time\' AS `Type`,\'YES\' AS `Enabled`) order by `Type`,`Variable_name` diff --git a/zbx_env/var/lib/mysql/sys/processlist.frm b/zbx_env/var/lib/mysql/sys/processlist.frm new file mode 100644 index 000000000..0deb0a193 --- /dev/null +++ b/zbx_env/var/lib/mysql/sys/processlist.frm @@ -0,0 +1,15 @@ +TYPE=VIEW +query=select `pps`.`THREAD_ID` AS `thd_id`,`pps`.`PROCESSLIST_ID` AS `conn_id`,if((`pps`.`NAME` = \'thread/sql/one_connection\'),concat(`pps`.`PROCESSLIST_USER`,\'@\',`pps`.`PROCESSLIST_HOST`),replace(`pps`.`NAME`,\'thread/\',\'\')) AS `user`,`pps`.`PROCESSLIST_DB` AS `db`,`pps`.`PROCESSLIST_COMMAND` AS `command`,`pps`.`PROCESSLIST_STATE` AS `state`,`pps`.`PROCESSLIST_TIME` AS `time`,`sys`.`format_statement`(`pps`.`PROCESSLIST_INFO`) AS `current_statement`,if(isnull(`esc`.`END_EVENT_ID`),`sys`.`format_time`(`esc`.`TIMER_WAIT`),NULL) AS `statement_latency`,if(isnull(`esc`.`END_EVENT_ID`),round((100 * (`estc`.`WORK_COMPLETED` / `estc`.`WORK_ESTIMATED`)),2),NULL) AS `progress`,`sys`.`format_time`(`esc`.`LOCK_TIME`) AS `lock_latency`,`esc`.`ROWS_EXAMINED` AS `rows_examined`,`esc`.`ROWS_SENT` AS `rows_sent`,`esc`.`ROWS_AFFECTED` AS `rows_affected`,`esc`.`CREATED_TMP_TABLES` AS `tmp_tables`,`esc`.`CREATED_TMP_DISK_TABLES` AS `tmp_disk_tables`,if(((`esc`.`NO_GOOD_INDEX_USED` > 0) or (`esc`.`NO_INDEX_USED` > 0)),\'YES\',\'NO\') AS `full_scan`,if((`esc`.`END_EVENT_ID` is not null),`sys`.`format_statement`(`esc`.`SQL_TEXT`),NULL) AS `last_statement`,if((`esc`.`END_EVENT_ID` is not null),`sys`.`format_time`(`esc`.`TIMER_WAIT`),NULL) AS `last_statement_latency`,`sys`.`format_bytes`(`mem`.`current_allocated`) AS `current_memory`,`ewc`.`EVENT_NAME` AS `last_wait`,if((isnull(`ewc`.`END_EVENT_ID`) and (`ewc`.`EVENT_NAME` is not null)),\'Still Waiting\',`sys`.`format_time`(`ewc`.`TIMER_WAIT`)) AS `last_wait_latency`,`ewc`.`SOURCE` AS `source`,`sys`.`format_time`(`etc`.`TIMER_WAIT`) AS `trx_latency`,`etc`.`STATE` AS `trx_state`,`etc`.`AUTOCOMMIT` AS `trx_autocommit`,`conattr_pid`.`ATTR_VALUE` AS `pid`,`conattr_progname`.`ATTR_VALUE` AS `program_name` from (((((((`performance_schema`.`threads` `pps` left join `performance_schema`.`events_waits_current` `ewc` on((`pps`.`THREAD_ID` = `ewc`.`THREAD_ID`))) left join `performance_schema`.`events_stages_current` `estc` on((`pps`.`THREAD_ID` = `estc`.`THREAD_ID`))) left join `performance_schema`.`events_statements_current` `esc` on((`pps`.`THREAD_ID` = `esc`.`THREAD_ID`))) left join `performance_schema`.`events_transactions_current` `etc` on((`pps`.`THREAD_ID` = `etc`.`THREAD_ID`))) left join `sys`.`x$memory_by_thread_by_current_bytes` `mem` on((`pps`.`THREAD_ID` = `mem`.`thread_id`))) left join `performance_schema`.`session_connect_attrs` `conattr_pid` on(((`conattr_pid`.`PROCESSLIST_ID` = `pps`.`PROCESSLIST_ID`) and (`conattr_pid`.`ATTR_NAME` = \'_pid\')))) left join `performance_schema`.`session_connect_attrs` `conattr_progname` on(((`conattr_progname`.`PROCESSLIST_ID` = `pps`.`PROCESSLIST_ID`) and (`conattr_progname`.`ATTR_NAME` = \'program_name\')))) order by `pps`.`PROCESSLIST_TIME` desc,`last_wait_latency` desc +md5=bbf8d6b8e8b6e9a163ec3db9d73042b1 +updatable=0 +algorithm=1 +definer_user=mysql.sys +definer_host=localhost +suid=0 +with_check_option=0 +timestamp=2018-07-20 01:51:25 +create-version=1 +source=SELECT pps.thread_id AS thd_id, pps.processlist_id AS conn_id, IF(pps.name = \'thread/sql/one_connection\', CONCAT(pps.processlist_user, \'@\', pps.processlist_host), REPLACE(pps.name, \'thread/\', \'\')) user, pps.processlist_db AS db, pps.processlist_command AS command, pps.processlist_state AS state, pps.processlist_time AS time, sys.format_statement(pps.processlist_info) AS current_statement, IF(esc.end_event_id IS NULL, sys.format_time(esc.timer_wait), NULL) AS statement_latency, IF(esc.end_event_id IS NULL, ROUND(100 * (estc.work_completed / estc.work_estimated), 2), NULL) AS progress, sys.format_time(esc.lock_time) AS lock_latency, esc.rows_examined AS rows_examined, esc.rows_sent AS rows_sent, esc.rows_affected AS rows_affected, esc.created_tmp_tables AS tmp_tables, esc.created_tmp_disk_tables AS tmp_disk_tables, IF(esc.no_good_index_used > 0 OR esc.no_index_used > 0, \'YES\', \'NO\') AS full_scan, IF(esc.end_event_id IS NOT NULL, sys.format_statement(esc.sql_text), NULL) AS last_statement, IF(esc.end_event_id IS NOT NULL, sys.format_time(esc.timer_wait), NULL) AS last_statement_latency, sys.format_bytes(mem.current_allocated) AS current_memory, ewc.event_name AS last_wait, IF(ewc.end_event_id IS NULL AND ewc.event_name IS NOT NULL, \'Still Waiting\', sys.format_time(ewc.timer_wait)) last_wait_latency, ewc.source, sys.format_time(etc.timer_wait) AS trx_latency, etc.state AS trx_state, etc.autocommit AS trx_autocommit, conattr_pid.attr_value as pid, conattr_progname.attr_value as program_name FROM performance_schema.threads AS pps LEFT JOIN performance_schema.events_waits_current AS ewc USING (thread_id) LEFT JOIN performance_schema.events_stages_current AS estc USING (thread_id) LEFT JOIN performance_schema.events_statements_current AS esc USING (thread_id) LEFT JOIN performance_schema.events_transactions_current AS etc USING (thread_id) LEFT JOIN sys.x$memory_by_thread_by_current_bytes AS mem USING (thread_id) LEFT JOIN performance_schema.session_connect_attrs AS conattr_pid ON conattr_pid.processlist_id=pps.processlist_id and conattr_pid.attr_name=\'_pid\' LEFT JOIN performance_schema.session_connect_attrs AS conattr_progname ON conattr_progname.processlist_id=pps.processlist_id and conattr_progname.attr_name=\'program_name\' ORDER BY pps.processlist_time DESC, last_wait_latency DESC +client_cs_name=utf8 +connection_cl_name=utf8_general_ci +view_body_utf8=select `pps`.`THREAD_ID` AS `thd_id`,`pps`.`PROCESSLIST_ID` AS `conn_id`,if((`pps`.`NAME` = \'thread/sql/one_connection\'),concat(`pps`.`PROCESSLIST_USER`,\'@\',`pps`.`PROCESSLIST_HOST`),replace(`pps`.`NAME`,\'thread/\',\'\')) AS `user`,`pps`.`PROCESSLIST_DB` AS `db`,`pps`.`PROCESSLIST_COMMAND` AS `command`,`pps`.`PROCESSLIST_STATE` AS `state`,`pps`.`PROCESSLIST_TIME` AS `time`,`sys`.`format_statement`(`pps`.`PROCESSLIST_INFO`) AS `current_statement`,if(isnull(`esc`.`END_EVENT_ID`),`sys`.`format_time`(`esc`.`TIMER_WAIT`),NULL) AS `statement_latency`,if(isnull(`esc`.`END_EVENT_ID`),round((100 * (`estc`.`WORK_COMPLETED` / `estc`.`WORK_ESTIMATED`)),2),NULL) AS `progress`,`sys`.`format_time`(`esc`.`LOCK_TIME`) AS `lock_latency`,`esc`.`ROWS_EXAMINED` AS `rows_examined`,`esc`.`ROWS_SENT` AS `rows_sent`,`esc`.`ROWS_AFFECTED` AS `rows_affected`,`esc`.`CREATED_TMP_TABLES` AS `tmp_tables`,`esc`.`CREATED_TMP_DISK_TABLES` AS `tmp_disk_tables`,if(((`esc`.`NO_GOOD_INDEX_USED` > 0) or (`esc`.`NO_INDEX_USED` > 0)),\'YES\',\'NO\') AS `full_scan`,if((`esc`.`END_EVENT_ID` is not null),`sys`.`format_statement`(`esc`.`SQL_TEXT`),NULL) AS `last_statement`,if((`esc`.`END_EVENT_ID` is not null),`sys`.`format_time`(`esc`.`TIMER_WAIT`),NULL) AS `last_statement_latency`,`sys`.`format_bytes`(`mem`.`current_allocated`) AS `current_memory`,`ewc`.`EVENT_NAME` AS `last_wait`,if((isnull(`ewc`.`END_EVENT_ID`) and (`ewc`.`EVENT_NAME` is not null)),\'Still Waiting\',`sys`.`format_time`(`ewc`.`TIMER_WAIT`)) AS `last_wait_latency`,`ewc`.`SOURCE` AS `source`,`sys`.`format_time`(`etc`.`TIMER_WAIT`) AS `trx_latency`,`etc`.`STATE` AS `trx_state`,`etc`.`AUTOCOMMIT` AS `trx_autocommit`,`conattr_pid`.`ATTR_VALUE` AS `pid`,`conattr_progname`.`ATTR_VALUE` AS `program_name` from (((((((`performance_schema`.`threads` `pps` left join `performance_schema`.`events_waits_current` `ewc` on((`pps`.`THREAD_ID` = `ewc`.`THREAD_ID`))) left join `performance_schema`.`events_stages_current` `estc` on((`pps`.`THREAD_ID` = `estc`.`THREAD_ID`))) left join `performance_schema`.`events_statements_current` `esc` on((`pps`.`THREAD_ID` = `esc`.`THREAD_ID`))) left join `performance_schema`.`events_transactions_current` `etc` on((`pps`.`THREAD_ID` = `etc`.`THREAD_ID`))) left join `sys`.`x$memory_by_thread_by_current_bytes` `mem` on((`pps`.`THREAD_ID` = `mem`.`thread_id`))) left join `performance_schema`.`session_connect_attrs` `conattr_pid` on(((`conattr_pid`.`PROCESSLIST_ID` = `pps`.`PROCESSLIST_ID`) and (`conattr_pid`.`ATTR_NAME` = \'_pid\')))) left join `performance_schema`.`session_connect_attrs` `conattr_progname` on(((`conattr_progname`.`PROCESSLIST_ID` = `pps`.`PROCESSLIST_ID`) and (`conattr_progname`.`ATTR_NAME` = \'program_name\')))) order by `pps`.`PROCESSLIST_TIME` desc,`last_wait_latency` desc diff --git a/zbx_env/var/lib/mysql/sys/ps_check_lost_instrumentation.frm b/zbx_env/var/lib/mysql/sys/ps_check_lost_instrumentation.frm new file mode 100644 index 000000000..92960a014 --- /dev/null +++ b/zbx_env/var/lib/mysql/sys/ps_check_lost_instrumentation.frm @@ -0,0 +1,15 @@ +TYPE=VIEW +query=select `performance_schema`.`global_status`.`VARIABLE_NAME` AS `variable_name`,`performance_schema`.`global_status`.`VARIABLE_VALUE` AS `variable_value` from `performance_schema`.`global_status` where ((`performance_schema`.`global_status`.`VARIABLE_NAME` like \'perf%lost\') and (`performance_schema`.`global_status`.`VARIABLE_VALUE` > 0)) +md5=a4602a3a66e4c59a9e72166d18821c07 +updatable=1 +algorithm=2 +definer_user=mysql.sys +definer_host=localhost +suid=0 +with_check_option=0 +timestamp=2018-07-20 01:51:25 +create-version=1 +source=SELECT variable_name, variable_value FROM performance_schema.global_status WHERE variable_name LIKE \'perf%lost\' AND variable_value > 0 +client_cs_name=utf8 +connection_cl_name=utf8_general_ci +view_body_utf8=select `performance_schema`.`global_status`.`VARIABLE_NAME` AS `variable_name`,`performance_schema`.`global_status`.`VARIABLE_VALUE` AS `variable_value` from `performance_schema`.`global_status` where ((`performance_schema`.`global_status`.`VARIABLE_NAME` like \'perf%lost\') and (`performance_schema`.`global_status`.`VARIABLE_VALUE` > 0)) diff --git a/zbx_env/var/lib/mysql/sys/schema_auto_increment_columns.frm b/zbx_env/var/lib/mysql/sys/schema_auto_increment_columns.frm new file mode 100644 index 000000000..4f0a37ed6 --- /dev/null +++ b/zbx_env/var/lib/mysql/sys/schema_auto_increment_columns.frm @@ -0,0 +1,15 @@ +TYPE=VIEW +query=select `information_schema`.`COLUMNS`.`TABLE_SCHEMA` AS `table_schema`,`information_schema`.`COLUMNS`.`TABLE_NAME` AS `table_name`,`information_schema`.`COLUMNS`.`COLUMN_NAME` AS `column_name`,`information_schema`.`COLUMNS`.`DATA_TYPE` AS `data_type`,`information_schema`.`COLUMNS`.`COLUMN_TYPE` AS `column_type`,(locate(\'unsigned\',`information_schema`.`COLUMNS`.`COLUMN_TYPE`) = 0) AS `is_signed`,(locate(\'unsigned\',`information_schema`.`COLUMNS`.`COLUMN_TYPE`) > 0) AS `is_unsigned`,((case `information_schema`.`COLUMNS`.`DATA_TYPE` when \'tinyint\' then 255 when \'smallint\' then 65535 when \'mediumint\' then 16777215 when \'int\' then 4294967295 when \'bigint\' then 18446744073709551615 end) >> if((locate(\'unsigned\',`information_schema`.`COLUMNS`.`COLUMN_TYPE`) > 0),0,1)) AS `max_value`,`information_schema`.`TABLES`.`AUTO_INCREMENT` AS `auto_increment`,(`information_schema`.`TABLES`.`AUTO_INCREMENT` / ((case `information_schema`.`COLUMNS`.`DATA_TYPE` when \'tinyint\' then 255 when \'smallint\' then 65535 when \'mediumint\' then 16777215 when \'int\' then 4294967295 when \'bigint\' then 18446744073709551615 end) >> if((locate(\'unsigned\',`information_schema`.`COLUMNS`.`COLUMN_TYPE`) > 0),0,1))) AS `auto_increment_ratio` from (`INFORMATION_SCHEMA`.`COLUMNS` join `INFORMATION_SCHEMA`.`TABLES` on(((`information_schema`.`COLUMNS`.`TABLE_SCHEMA` = `information_schema`.`TABLES`.`TABLE_SCHEMA`) and (`information_schema`.`COLUMNS`.`TABLE_NAME` = `information_schema`.`TABLES`.`TABLE_NAME`)))) where ((`information_schema`.`COLUMNS`.`TABLE_SCHEMA` not in (\'mysql\',\'sys\',\'INFORMATION_SCHEMA\',\'performance_schema\')) and (`information_schema`.`TABLES`.`TABLE_TYPE` = \'BASE TABLE\') and (`information_schema`.`COLUMNS`.`EXTRA` = \'auto_increment\')) order by (`information_schema`.`TABLES`.`AUTO_INCREMENT` / ((case `information_schema`.`COLUMNS`.`DATA_TYPE` when \'tinyint\' then 255 when \'smallint\' then 65535 when \'mediumint\' then 16777215 when \'int\' then 4294967295 when \'bigint\' then 18446744073709551615 end) >> if((locate(\'unsigned\',`information_schema`.`COLUMNS`.`COLUMN_TYPE`) > 0),0,1))) desc,((case `information_schema`.`COLUMNS`.`DATA_TYPE` when \'tinyint\' then 255 when \'smallint\' then 65535 when \'mediumint\' then 16777215 when \'int\' then 4294967295 when \'bigint\' then 18446744073709551615 end) >> if((locate(\'unsigned\',`information_schema`.`COLUMNS`.`COLUMN_TYPE`) > 0),0,1)) +md5=af9a109a687085ab39d8ecb2419b5c2f +updatable=0 +algorithm=2 +definer_user=mysql.sys +definer_host=localhost +suid=0 +with_check_option=0 +timestamp=2018-07-20 01:51:25 +create-version=1 +source=SELECT TABLE_SCHEMA, TABLE_NAME, COLUMN_NAME, DATA_TYPE, COLUMN_TYPE, (LOCATE(\'unsigned\', COLUMN_TYPE) = 0) AS is_signed, (LOCATE(\'unsigned\', COLUMN_TYPE) > 0) AS is_unsigned, ( CASE DATA_TYPE WHEN \'tinyint\' THEN 255 WHEN \'smallint\' THEN 65535 WHEN \'mediumint\' THEN 16777215 WHEN \'int\' THEN 4294967295 WHEN \'bigint\' THEN 18446744073709551615 END >> IF(LOCATE(\'unsigned\', COLUMN_TYPE) > 0, 0, 1) ) AS max_value, AUTO_INCREMENT, AUTO_INCREMENT / ( CASE DATA_TYPE WHEN \'tinyint\' THEN 255 WHEN \'smallint\' THEN 65535 WHEN \'mediumint\' THEN 16777215 WHEN \'int\' THEN 4294967295 WHEN \'bigint\' THEN 18446744073709551615 END >> IF(LOCATE(\'unsigned\', COLUMN_TYPE) > 0, 0, 1) ) AS auto_increment_ratio FROM INFORMATION_SCHEMA.COLUMNS INNER JOIN INFORMATION_SCHEMA.TABLES USING (TABLE_SCHEMA, TABLE_NAME) WHERE TABLE_SCHEMA NOT IN (\'mysql\', \'sys\', \'INFORMATION_SCHEMA\', \'performance_schema\') AND TABLE_TYPE=\'BASE TABLE\' AND EXTRA=\'auto_increment\' ORDER BY auto_increment_ratio DESC, max_value +client_cs_name=utf8 +connection_cl_name=utf8_general_ci +view_body_utf8=select `information_schema`.`COLUMNS`.`TABLE_SCHEMA` AS `table_schema`,`information_schema`.`COLUMNS`.`TABLE_NAME` AS `table_name`,`information_schema`.`COLUMNS`.`COLUMN_NAME` AS `column_name`,`information_schema`.`COLUMNS`.`DATA_TYPE` AS `data_type`,`information_schema`.`COLUMNS`.`COLUMN_TYPE` AS `column_type`,(locate(\'unsigned\',`information_schema`.`COLUMNS`.`COLUMN_TYPE`) = 0) AS `is_signed`,(locate(\'unsigned\',`information_schema`.`COLUMNS`.`COLUMN_TYPE`) > 0) AS `is_unsigned`,((case `information_schema`.`COLUMNS`.`DATA_TYPE` when \'tinyint\' then 255 when \'smallint\' then 65535 when \'mediumint\' then 16777215 when \'int\' then 4294967295 when \'bigint\' then 18446744073709551615 end) >> if((locate(\'unsigned\',`information_schema`.`COLUMNS`.`COLUMN_TYPE`) > 0),0,1)) AS `max_value`,`information_schema`.`TABLES`.`AUTO_INCREMENT` AS `auto_increment`,(`information_schema`.`TABLES`.`AUTO_INCREMENT` / ((case `information_schema`.`COLUMNS`.`DATA_TYPE` when \'tinyint\' then 255 when \'smallint\' then 65535 when \'mediumint\' then 16777215 when \'int\' then 4294967295 when \'bigint\' then 18446744073709551615 end) >> if((locate(\'unsigned\',`information_schema`.`COLUMNS`.`COLUMN_TYPE`) > 0),0,1))) AS `auto_increment_ratio` from (`INFORMATION_SCHEMA`.`COLUMNS` join `INFORMATION_SCHEMA`.`TABLES` on(((`information_schema`.`COLUMNS`.`TABLE_SCHEMA` = `information_schema`.`TABLES`.`TABLE_SCHEMA`) and (`information_schema`.`COLUMNS`.`TABLE_NAME` = `information_schema`.`TABLES`.`TABLE_NAME`)))) where ((`information_schema`.`COLUMNS`.`TABLE_SCHEMA` not in (\'mysql\',\'sys\',\'INFORMATION_SCHEMA\',\'performance_schema\')) and (`information_schema`.`TABLES`.`TABLE_TYPE` = \'BASE TABLE\') and (`information_schema`.`COLUMNS`.`EXTRA` = \'auto_increment\')) order by (`information_schema`.`TABLES`.`AUTO_INCREMENT` / ((case `information_schema`.`COLUMNS`.`DATA_TYPE` when \'tinyint\' then 255 when \'smallint\' then 65535 when \'mediumint\' then 16777215 when \'int\' then 4294967295 when \'bigint\' then 18446744073709551615 end) >> if((locate(\'unsigned\',`information_schema`.`COLUMNS`.`COLUMN_TYPE`) > 0),0,1))) desc,((case `information_schema`.`COLUMNS`.`DATA_TYPE` when \'tinyint\' then 255 when \'smallint\' then 65535 when \'mediumint\' then 16777215 when \'int\' then 4294967295 when \'bigint\' then 18446744073709551615 end) >> if((locate(\'unsigned\',`information_schema`.`COLUMNS`.`COLUMN_TYPE`) > 0),0,1)) diff --git a/zbx_env/var/lib/mysql/sys/schema_index_statistics.frm b/zbx_env/var/lib/mysql/sys/schema_index_statistics.frm new file mode 100644 index 000000000..775eba371 --- /dev/null +++ b/zbx_env/var/lib/mysql/sys/schema_index_statistics.frm @@ -0,0 +1,15 @@ +TYPE=VIEW +query=select `performance_schema`.`table_io_waits_summary_by_index_usage`.`OBJECT_SCHEMA` AS `table_schema`,`performance_schema`.`table_io_waits_summary_by_index_usage`.`OBJECT_NAME` AS `table_name`,`performance_schema`.`table_io_waits_summary_by_index_usage`.`INDEX_NAME` AS `index_name`,`performance_schema`.`table_io_waits_summary_by_index_usage`.`COUNT_FETCH` AS `rows_selected`,`sys`.`format_time`(`performance_schema`.`table_io_waits_summary_by_index_usage`.`SUM_TIMER_FETCH`) AS `select_latency`,`performance_schema`.`table_io_waits_summary_by_index_usage`.`COUNT_INSERT` AS `rows_inserted`,`sys`.`format_time`(`performance_schema`.`table_io_waits_summary_by_index_usage`.`SUM_TIMER_INSERT`) AS `insert_latency`,`performance_schema`.`table_io_waits_summary_by_index_usage`.`COUNT_UPDATE` AS `rows_updated`,`sys`.`format_time`(`performance_schema`.`table_io_waits_summary_by_index_usage`.`SUM_TIMER_UPDATE`) AS `update_latency`,`performance_schema`.`table_io_waits_summary_by_index_usage`.`COUNT_DELETE` AS `rows_deleted`,`sys`.`format_time`(`performance_schema`.`table_io_waits_summary_by_index_usage`.`SUM_TIMER_INSERT`) AS `delete_latency` from `performance_schema`.`table_io_waits_summary_by_index_usage` where (`performance_schema`.`table_io_waits_summary_by_index_usage`.`INDEX_NAME` is not null) order by `performance_schema`.`table_io_waits_summary_by_index_usage`.`SUM_TIMER_WAIT` desc +md5=fbec8d951bb131de8da80e88d363097f +updatable=1 +algorithm=2 +definer_user=mysql.sys +definer_host=localhost +suid=0 +with_check_option=0 +timestamp=2018-07-20 01:51:25 +create-version=1 +source=SELECT OBJECT_SCHEMA AS table_schema, OBJECT_NAME AS table_name, INDEX_NAME as index_name, COUNT_FETCH AS rows_selected, sys.format_time(SUM_TIMER_FETCH) AS select_latency, COUNT_INSERT AS rows_inserted, sys.format_time(SUM_TIMER_INSERT) AS insert_latency, COUNT_UPDATE AS rows_updated, sys.format_time(SUM_TIMER_UPDATE) AS update_latency, COUNT_DELETE AS rows_deleted, sys.format_time(SUM_TIMER_INSERT) AS delete_latency FROM performance_schema.table_io_waits_summary_by_index_usage WHERE index_name IS NOT NULL ORDER BY sum_timer_wait DESC +client_cs_name=utf8 +connection_cl_name=utf8_general_ci +view_body_utf8=select `performance_schema`.`table_io_waits_summary_by_index_usage`.`OBJECT_SCHEMA` AS `table_schema`,`performance_schema`.`table_io_waits_summary_by_index_usage`.`OBJECT_NAME` AS `table_name`,`performance_schema`.`table_io_waits_summary_by_index_usage`.`INDEX_NAME` AS `index_name`,`performance_schema`.`table_io_waits_summary_by_index_usage`.`COUNT_FETCH` AS `rows_selected`,`sys`.`format_time`(`performance_schema`.`table_io_waits_summary_by_index_usage`.`SUM_TIMER_FETCH`) AS `select_latency`,`performance_schema`.`table_io_waits_summary_by_index_usage`.`COUNT_INSERT` AS `rows_inserted`,`sys`.`format_time`(`performance_schema`.`table_io_waits_summary_by_index_usage`.`SUM_TIMER_INSERT`) AS `insert_latency`,`performance_schema`.`table_io_waits_summary_by_index_usage`.`COUNT_UPDATE` AS `rows_updated`,`sys`.`format_time`(`performance_schema`.`table_io_waits_summary_by_index_usage`.`SUM_TIMER_UPDATE`) AS `update_latency`,`performance_schema`.`table_io_waits_summary_by_index_usage`.`COUNT_DELETE` AS `rows_deleted`,`sys`.`format_time`(`performance_schema`.`table_io_waits_summary_by_index_usage`.`SUM_TIMER_INSERT`) AS `delete_latency` from `performance_schema`.`table_io_waits_summary_by_index_usage` where (`performance_schema`.`table_io_waits_summary_by_index_usage`.`INDEX_NAME` is not null) order by `performance_schema`.`table_io_waits_summary_by_index_usage`.`SUM_TIMER_WAIT` desc diff --git a/zbx_env/var/lib/mysql/sys/schema_object_overview.frm b/zbx_env/var/lib/mysql/sys/schema_object_overview.frm new file mode 100644 index 000000000..0bd82b3d2 --- /dev/null +++ b/zbx_env/var/lib/mysql/sys/schema_object_overview.frm @@ -0,0 +1,15 @@ +TYPE=VIEW +query=select `information_schema`.`routines`.`ROUTINE_SCHEMA` AS `db`,`information_schema`.`routines`.`ROUTINE_TYPE` AS `object_type`,count(0) AS `count` from `information_schema`.`routines` group by `information_schema`.`routines`.`ROUTINE_SCHEMA`,`information_schema`.`routines`.`ROUTINE_TYPE` union select `information_schema`.`tables`.`TABLE_SCHEMA` AS `TABLE_SCHEMA`,`information_schema`.`tables`.`TABLE_TYPE` AS `TABLE_TYPE`,count(0) AS `COUNT(*)` from `information_schema`.`tables` group by `information_schema`.`tables`.`TABLE_SCHEMA`,`information_schema`.`tables`.`TABLE_TYPE` union select `information_schema`.`statistics`.`TABLE_SCHEMA` AS `TABLE_SCHEMA`,concat(\'INDEX (\',`information_schema`.`statistics`.`INDEX_TYPE`,\')\') AS `CONCAT(\'INDEX (\', INDEX_TYPE, \')\')`,count(0) AS `COUNT(*)` from `information_schema`.`statistics` group by `information_schema`.`statistics`.`TABLE_SCHEMA`,`information_schema`.`statistics`.`INDEX_TYPE` union select `information_schema`.`triggers`.`TRIGGER_SCHEMA` AS `TRIGGER_SCHEMA`,\'TRIGGER\' AS `TRIGGER`,count(0) AS `COUNT(*)` from `information_schema`.`triggers` group by `information_schema`.`triggers`.`TRIGGER_SCHEMA` union select `information_schema`.`events`.`EVENT_SCHEMA` AS `EVENT_SCHEMA`,\'EVENT\' AS `EVENT`,count(0) AS `COUNT(*)` from `information_schema`.`events` group by `information_schema`.`events`.`EVENT_SCHEMA` order by `db`,`object_type` +md5=be1e4ce9f5bcd017616670d43bbce5ae +updatable=0 +algorithm=1 +definer_user=mysql.sys +definer_host=localhost +suid=0 +with_check_option=0 +timestamp=2018-07-20 01:51:25 +create-version=1 +source=SELECT ROUTINE_SCHEMA AS db, ROUTINE_TYPE AS object_type, COUNT(*) AS count FROM information_schema.routines GROUP BY ROUTINE_SCHEMA, ROUTINE_TYPE UNION SELECT TABLE_SCHEMA, TABLE_TYPE, COUNT(*) FROM information_schema.tables GROUP BY TABLE_SCHEMA, TABLE_TYPE UNION SELECT TABLE_SCHEMA, CONCAT(\'INDEX (\', INDEX_TYPE, \')\'), COUNT(*) FROM information_schema.statistics GROUP BY TABLE_SCHEMA, INDEX_TYPE UNION SELECT TRIGGER_SCHEMA, \'TRIGGER\', COUNT(*) FROM information_schema.triggers GROUP BY TRIGGER_SCHEMA UNION SELECT EVENT_SCHEMA, \'EVENT\', COUNT(*) FROM information_schema.events GROUP BY EVENT_SCHEMA ORDER BY DB, OBJECT_TYPE +client_cs_name=utf8 +connection_cl_name=utf8_general_ci +view_body_utf8=select `information_schema`.`routines`.`ROUTINE_SCHEMA` AS `db`,`information_schema`.`routines`.`ROUTINE_TYPE` AS `object_type`,count(0) AS `count` from `information_schema`.`routines` group by `information_schema`.`routines`.`ROUTINE_SCHEMA`,`information_schema`.`routines`.`ROUTINE_TYPE` union select `information_schema`.`tables`.`TABLE_SCHEMA` AS `TABLE_SCHEMA`,`information_schema`.`tables`.`TABLE_TYPE` AS `TABLE_TYPE`,count(0) AS `COUNT(*)` from `information_schema`.`tables` group by `information_schema`.`tables`.`TABLE_SCHEMA`,`information_schema`.`tables`.`TABLE_TYPE` union select `information_schema`.`statistics`.`TABLE_SCHEMA` AS `TABLE_SCHEMA`,concat(\'INDEX (\',`information_schema`.`statistics`.`INDEX_TYPE`,\')\') AS `CONCAT(\'INDEX (\', INDEX_TYPE, \')\')`,count(0) AS `COUNT(*)` from `information_schema`.`statistics` group by `information_schema`.`statistics`.`TABLE_SCHEMA`,`information_schema`.`statistics`.`INDEX_TYPE` union select `information_schema`.`triggers`.`TRIGGER_SCHEMA` AS `TRIGGER_SCHEMA`,\'TRIGGER\' AS `TRIGGER`,count(0) AS `COUNT(*)` from `information_schema`.`triggers` group by `information_schema`.`triggers`.`TRIGGER_SCHEMA` union select `information_schema`.`events`.`EVENT_SCHEMA` AS `EVENT_SCHEMA`,\'EVENT\' AS `EVENT`,count(0) AS `COUNT(*)` from `information_schema`.`events` group by `information_schema`.`events`.`EVENT_SCHEMA` order by `db`,`object_type` diff --git a/zbx_env/var/lib/mysql/sys/schema_redundant_indexes.frm b/zbx_env/var/lib/mysql/sys/schema_redundant_indexes.frm new file mode 100644 index 000000000..c129196c6 --- /dev/null +++ b/zbx_env/var/lib/mysql/sys/schema_redundant_indexes.frm @@ -0,0 +1,15 @@ +TYPE=VIEW +query=select `redundant_keys`.`table_schema` AS `table_schema`,`redundant_keys`.`table_name` AS `table_name`,`redundant_keys`.`index_name` AS `redundant_index_name`,`redundant_keys`.`index_columns` AS `redundant_index_columns`,`redundant_keys`.`non_unique` AS `redundant_index_non_unique`,`dominant_keys`.`index_name` AS `dominant_index_name`,`dominant_keys`.`index_columns` AS `dominant_index_columns`,`dominant_keys`.`non_unique` AS `dominant_index_non_unique`,if((`redundant_keys`.`subpart_exists` or `dominant_keys`.`subpart_exists`),1,0) AS `subpart_exists`,concat(\'ALTER TABLE `\',`redundant_keys`.`table_schema`,\'`.`\',`redundant_keys`.`table_name`,\'` DROP INDEX `\',`redundant_keys`.`index_name`,\'`\') AS `sql_drop_index` from (`sys`.`x$schema_flattened_keys` `redundant_keys` join `sys`.`x$schema_flattened_keys` `dominant_keys` on(((`redundant_keys`.`table_schema` = `dominant_keys`.`table_schema`) and (`redundant_keys`.`table_name` = `dominant_keys`.`table_name`)))) where ((`redundant_keys`.`index_name` <> `dominant_keys`.`index_name`) and (((`redundant_keys`.`index_columns` = `dominant_keys`.`index_columns`) and ((`redundant_keys`.`non_unique` > `dominant_keys`.`non_unique`) or ((`redundant_keys`.`non_unique` = `dominant_keys`.`non_unique`) and (if((`redundant_keys`.`index_name` = \'PRIMARY\'),\'\',`redundant_keys`.`index_name`) > if((`dominant_keys`.`index_name` = \'PRIMARY\'),\'\',`dominant_keys`.`index_name`))))) or ((locate(concat(`redundant_keys`.`index_columns`,\',\'),`dominant_keys`.`index_columns`) = 1) and (`redundant_keys`.`non_unique` = 1)) or ((locate(concat(`dominant_keys`.`index_columns`,\',\'),`redundant_keys`.`index_columns`) = 1) and (`dominant_keys`.`non_unique` = 0)))) +md5=1b12e68995777cbf9449b06bc708f827 +updatable=0 +algorithm=1 +definer_user=mysql.sys +definer_host=localhost +suid=0 +with_check_option=0 +timestamp=2018-07-20 01:51:25 +create-version=1 +source=SELECT redundant_keys.table_schema, redundant_keys.table_name, redundant_keys.index_name AS redundant_index_name, redundant_keys.index_columns AS redundant_index_columns, redundant_keys.non_unique AS redundant_index_non_unique, dominant_keys.index_name AS dominant_index_name, dominant_keys.index_columns AS dominant_index_columns, dominant_keys.non_unique AS dominant_index_non_unique, IF(redundant_keys.subpart_exists OR dominant_keys.subpart_exists, 1 ,0) AS subpart_exists, CONCAT( \'ALTER TABLE `\', redundant_keys.table_schema, \'`.`\', redundant_keys.table_name, \'` DROP INDEX `\', redundant_keys.index_name, \'`\' ) AS sql_drop_index FROM x$schema_flattened_keys AS redundant_keys INNER JOIN x$schema_flattened_keys AS dominant_keys USING (TABLE_SCHEMA, TABLE_NAME) WHERE redundant_keys.index_name != dominant_keys.index_name AND ( ( /* Identical columns */ (redundant_keys.index_columns = dominant_keys.index_columns) AND ( (redundant_keys.non_unique > dominant_keys.non_unique) OR (redundant_keys.non_unique = dominant_keys.non_unique AND IF(redundant_keys.index_name=\'PRIMARY\', \'\', redundant_keys.index_name) > IF(dominant_keys.index_name=\'PRIMARY\', \'\', dominant_keys.index_name) ) ) ) OR ( /* Non-unique prefix columns */ LOCATE(CONCAT(redundant_keys.index_columns, \',\'), dominant_keys.index_columns) = 1 AND redundant_keys.non_unique = 1 ) OR ( /* Unique prefix columns */ LOCATE(CONCAT(dominant_keys.index_columns, \',\'), redundant_keys.index_columns) = 1 AND dominant_keys.non_unique = 0 ) ) +client_cs_name=utf8 +connection_cl_name=utf8_general_ci +view_body_utf8=select `redundant_keys`.`table_schema` AS `table_schema`,`redundant_keys`.`table_name` AS `table_name`,`redundant_keys`.`index_name` AS `redundant_index_name`,`redundant_keys`.`index_columns` AS `redundant_index_columns`,`redundant_keys`.`non_unique` AS `redundant_index_non_unique`,`dominant_keys`.`index_name` AS `dominant_index_name`,`dominant_keys`.`index_columns` AS `dominant_index_columns`,`dominant_keys`.`non_unique` AS `dominant_index_non_unique`,if((`redundant_keys`.`subpart_exists` or `dominant_keys`.`subpart_exists`),1,0) AS `subpart_exists`,concat(\'ALTER TABLE `\',`redundant_keys`.`table_schema`,\'`.`\',`redundant_keys`.`table_name`,\'` DROP INDEX `\',`redundant_keys`.`index_name`,\'`\') AS `sql_drop_index` from (`sys`.`x$schema_flattened_keys` `redundant_keys` join `sys`.`x$schema_flattened_keys` `dominant_keys` on(((`redundant_keys`.`table_schema` = `dominant_keys`.`table_schema`) and (`redundant_keys`.`table_name` = `dominant_keys`.`table_name`)))) where ((`redundant_keys`.`index_name` <> `dominant_keys`.`index_name`) and (((`redundant_keys`.`index_columns` = `dominant_keys`.`index_columns`) and ((`redundant_keys`.`non_unique` > `dominant_keys`.`non_unique`) or ((`redundant_keys`.`non_unique` = `dominant_keys`.`non_unique`) and (if((`redundant_keys`.`index_name` = \'PRIMARY\'),\'\',`redundant_keys`.`index_name`) > if((`dominant_keys`.`index_name` = \'PRIMARY\'),\'\',`dominant_keys`.`index_name`))))) or ((locate(concat(`redundant_keys`.`index_columns`,\',\'),`dominant_keys`.`index_columns`) = 1) and (`redundant_keys`.`non_unique` = 1)) or ((locate(concat(`dominant_keys`.`index_columns`,\',\'),`redundant_keys`.`index_columns`) = 1) and (`dominant_keys`.`non_unique` = 0)))) diff --git a/zbx_env/var/lib/mysql/sys/schema_table_lock_waits.frm b/zbx_env/var/lib/mysql/sys/schema_table_lock_waits.frm new file mode 100644 index 000000000..7b64c7fe9 --- /dev/null +++ b/zbx_env/var/lib/mysql/sys/schema_table_lock_waits.frm @@ -0,0 +1,15 @@ +TYPE=VIEW +query=select `g`.`OBJECT_SCHEMA` AS `object_schema`,`g`.`OBJECT_NAME` AS `object_name`,`pt`.`THREAD_ID` AS `waiting_thread_id`,`pt`.`PROCESSLIST_ID` AS `waiting_pid`,`sys`.`ps_thread_account`(`p`.`OWNER_THREAD_ID`) AS `waiting_account`,`p`.`LOCK_TYPE` AS `waiting_lock_type`,`p`.`LOCK_DURATION` AS `waiting_lock_duration`,`sys`.`format_statement`(`pt`.`PROCESSLIST_INFO`) AS `waiting_query`,`pt`.`PROCESSLIST_TIME` AS `waiting_query_secs`,`ps`.`ROWS_AFFECTED` AS `waiting_query_rows_affected`,`ps`.`ROWS_EXAMINED` AS `waiting_query_rows_examined`,`gt`.`THREAD_ID` AS `blocking_thread_id`,`gt`.`PROCESSLIST_ID` AS `blocking_pid`,`sys`.`ps_thread_account`(`g`.`OWNER_THREAD_ID`) AS `blocking_account`,`g`.`LOCK_TYPE` AS `blocking_lock_type`,`g`.`LOCK_DURATION` AS `blocking_lock_duration`,concat(\'KILL QUERY \',`gt`.`PROCESSLIST_ID`) AS `sql_kill_blocking_query`,concat(\'KILL \',`gt`.`PROCESSLIST_ID`) AS `sql_kill_blocking_connection` from (((((`performance_schema`.`metadata_locks` `g` join `performance_schema`.`metadata_locks` `p` on(((`g`.`OBJECT_TYPE` = `p`.`OBJECT_TYPE`) and (`g`.`OBJECT_SCHEMA` = `p`.`OBJECT_SCHEMA`) and (`g`.`OBJECT_NAME` = `p`.`OBJECT_NAME`) and (`g`.`LOCK_STATUS` = \'GRANTED\') and (`p`.`LOCK_STATUS` = \'PENDING\')))) join `performance_schema`.`threads` `gt` on((`g`.`OWNER_THREAD_ID` = `gt`.`THREAD_ID`))) join `performance_schema`.`threads` `pt` on((`p`.`OWNER_THREAD_ID` = `pt`.`THREAD_ID`))) left join `performance_schema`.`events_statements_current` `gs` on((`g`.`OWNER_THREAD_ID` = `gs`.`THREAD_ID`))) left join `performance_schema`.`events_statements_current` `ps` on((`p`.`OWNER_THREAD_ID` = `ps`.`THREAD_ID`))) where (`g`.`OBJECT_TYPE` = \'TABLE\') +md5=18ba2eedcb19b3b07c83b640d9960eff +updatable=0 +algorithm=1 +definer_user=mysql.sys +definer_host=localhost +suid=0 +with_check_option=0 +timestamp=2018-07-20 01:51:25 +create-version=1 +source=SELECT g.object_schema AS object_schema, g.object_name AS object_name, pt.thread_id AS waiting_thread_id, pt.processlist_id AS waiting_pid, sys.ps_thread_account(p.owner_thread_id) AS waiting_account, p.lock_type AS waiting_lock_type, p.lock_duration AS waiting_lock_duration, sys.format_statement(pt.processlist_info) AS waiting_query, pt.processlist_time AS waiting_query_secs, ps.rows_affected AS waiting_query_rows_affected, ps.rows_examined AS waiting_query_rows_examined, gt.thread_id AS blocking_thread_id, gt.processlist_id AS blocking_pid, sys.ps_thread_account(g.owner_thread_id) AS blocking_account, g.lock_type AS blocking_lock_type, g.lock_duration AS blocking_lock_duration, CONCAT(\'KILL QUERY \', gt.processlist_id) AS sql_kill_blocking_query, CONCAT(\'KILL \', gt.processlist_id) AS sql_kill_blocking_connection FROM performance_schema.metadata_locks g INNER JOIN performance_schema.metadata_locks p ON g.object_type = p.object_type AND g.object_schema = p.object_schema AND g.object_name = p.object_name AND g.lock_status = \'GRANTED\' AND p.lock_status = \'PENDING\' INNER JOIN performance_schema.threads gt ON g.owner_thread_id = gt.thread_id INNER JOIN performance_schema.threads pt ON p.owner_thread_id = pt.thread_id LEFT JOIN performance_schema.events_statements_current gs ON g.owner_thread_id = gs.thread_id LEFT JOIN performance_schema.events_statements_current ps ON p.owner_thread_id = ps.thread_id WHERE g.object_type = \'TABLE\' +client_cs_name=utf8 +connection_cl_name=utf8_general_ci +view_body_utf8=select `g`.`OBJECT_SCHEMA` AS `object_schema`,`g`.`OBJECT_NAME` AS `object_name`,`pt`.`THREAD_ID` AS `waiting_thread_id`,`pt`.`PROCESSLIST_ID` AS `waiting_pid`,`sys`.`ps_thread_account`(`p`.`OWNER_THREAD_ID`) AS `waiting_account`,`p`.`LOCK_TYPE` AS `waiting_lock_type`,`p`.`LOCK_DURATION` AS `waiting_lock_duration`,`sys`.`format_statement`(`pt`.`PROCESSLIST_INFO`) AS `waiting_query`,`pt`.`PROCESSLIST_TIME` AS `waiting_query_secs`,`ps`.`ROWS_AFFECTED` AS `waiting_query_rows_affected`,`ps`.`ROWS_EXAMINED` AS `waiting_query_rows_examined`,`gt`.`THREAD_ID` AS `blocking_thread_id`,`gt`.`PROCESSLIST_ID` AS `blocking_pid`,`sys`.`ps_thread_account`(`g`.`OWNER_THREAD_ID`) AS `blocking_account`,`g`.`LOCK_TYPE` AS `blocking_lock_type`,`g`.`LOCK_DURATION` AS `blocking_lock_duration`,concat(\'KILL QUERY \',`gt`.`PROCESSLIST_ID`) AS `sql_kill_blocking_query`,concat(\'KILL \',`gt`.`PROCESSLIST_ID`) AS `sql_kill_blocking_connection` from (((((`performance_schema`.`metadata_locks` `g` join `performance_schema`.`metadata_locks` `p` on(((`g`.`OBJECT_TYPE` = `p`.`OBJECT_TYPE`) and (`g`.`OBJECT_SCHEMA` = `p`.`OBJECT_SCHEMA`) and (`g`.`OBJECT_NAME` = `p`.`OBJECT_NAME`) and (`g`.`LOCK_STATUS` = \'GRANTED\') and (`p`.`LOCK_STATUS` = \'PENDING\')))) join `performance_schema`.`threads` `gt` on((`g`.`OWNER_THREAD_ID` = `gt`.`THREAD_ID`))) join `performance_schema`.`threads` `pt` on((`p`.`OWNER_THREAD_ID` = `pt`.`THREAD_ID`))) left join `performance_schema`.`events_statements_current` `gs` on((`g`.`OWNER_THREAD_ID` = `gs`.`THREAD_ID`))) left join `performance_schema`.`events_statements_current` `ps` on((`p`.`OWNER_THREAD_ID` = `ps`.`THREAD_ID`))) where (`g`.`OBJECT_TYPE` = \'TABLE\') diff --git a/zbx_env/var/lib/mysql/sys/schema_table_statistics.frm b/zbx_env/var/lib/mysql/sys/schema_table_statistics.frm new file mode 100644 index 000000000..818a5ea80 --- /dev/null +++ b/zbx_env/var/lib/mysql/sys/schema_table_statistics.frm @@ -0,0 +1,15 @@ +TYPE=VIEW +query=select `pst`.`OBJECT_SCHEMA` AS `table_schema`,`pst`.`OBJECT_NAME` AS `table_name`,`sys`.`format_time`(`pst`.`SUM_TIMER_WAIT`) AS `total_latency`,`pst`.`COUNT_FETCH` AS `rows_fetched`,`sys`.`format_time`(`pst`.`SUM_TIMER_FETCH`) AS `fetch_latency`,`pst`.`COUNT_INSERT` AS `rows_inserted`,`sys`.`format_time`(`pst`.`SUM_TIMER_INSERT`) AS `insert_latency`,`pst`.`COUNT_UPDATE` AS `rows_updated`,`sys`.`format_time`(`pst`.`SUM_TIMER_UPDATE`) AS `update_latency`,`pst`.`COUNT_DELETE` AS `rows_deleted`,`sys`.`format_time`(`pst`.`SUM_TIMER_DELETE`) AS `delete_latency`,`fsbi`.`count_read` AS `io_read_requests`,`sys`.`format_bytes`(`fsbi`.`sum_number_of_bytes_read`) AS `io_read`,`sys`.`format_time`(`fsbi`.`sum_timer_read`) AS `io_read_latency`,`fsbi`.`count_write` AS `io_write_requests`,`sys`.`format_bytes`(`fsbi`.`sum_number_of_bytes_write`) AS `io_write`,`sys`.`format_time`(`fsbi`.`sum_timer_write`) AS `io_write_latency`,`fsbi`.`count_misc` AS `io_misc_requests`,`sys`.`format_time`(`fsbi`.`sum_timer_misc`) AS `io_misc_latency` from (`performance_schema`.`table_io_waits_summary_by_table` `pst` left join `sys`.`x$ps_schema_table_statistics_io` `fsbi` on(((`pst`.`OBJECT_SCHEMA` = `fsbi`.`table_schema`) and (`pst`.`OBJECT_NAME` = `fsbi`.`table_name`)))) order by `pst`.`SUM_TIMER_WAIT` desc +md5=17770c3ba299abe683c9504685025401 +updatable=0 +algorithm=1 +definer_user=mysql.sys +definer_host=localhost +suid=0 +with_check_option=0 +timestamp=2018-07-20 01:51:25 +create-version=1 +source=SELECT pst.object_schema AS table_schema, pst.object_name AS table_name, sys.format_time(pst.sum_timer_wait) AS total_latency, pst.count_fetch AS rows_fetched, sys.format_time(pst.sum_timer_fetch) AS fetch_latency, pst.count_insert AS rows_inserted, sys.format_time(pst.sum_timer_insert) AS insert_latency, pst.count_update AS rows_updated, sys.format_time(pst.sum_timer_update) AS update_latency, pst.count_delete AS rows_deleted, sys.format_time(pst.sum_timer_delete) AS delete_latency, fsbi.count_read AS io_read_requests, sys.format_bytes(fsbi.sum_number_of_bytes_read) AS io_read, sys.format_time(fsbi.sum_timer_read) AS io_read_latency, fsbi.count_write AS io_write_requests, sys.format_bytes(fsbi.sum_number_of_bytes_write) AS io_write, sys.format_time(fsbi.sum_timer_write) AS io_write_latency, fsbi.count_misc AS io_misc_requests, sys.format_time(fsbi.sum_timer_misc) AS io_misc_latency FROM performance_schema.table_io_waits_summary_by_table AS pst LEFT JOIN x$ps_schema_table_statistics_io AS fsbi ON pst.object_schema = fsbi.table_schema AND pst.object_name = fsbi.table_name ORDER BY pst.sum_timer_wait DESC +client_cs_name=utf8 +connection_cl_name=utf8_general_ci +view_body_utf8=select `pst`.`OBJECT_SCHEMA` AS `table_schema`,`pst`.`OBJECT_NAME` AS `table_name`,`sys`.`format_time`(`pst`.`SUM_TIMER_WAIT`) AS `total_latency`,`pst`.`COUNT_FETCH` AS `rows_fetched`,`sys`.`format_time`(`pst`.`SUM_TIMER_FETCH`) AS `fetch_latency`,`pst`.`COUNT_INSERT` AS `rows_inserted`,`sys`.`format_time`(`pst`.`SUM_TIMER_INSERT`) AS `insert_latency`,`pst`.`COUNT_UPDATE` AS `rows_updated`,`sys`.`format_time`(`pst`.`SUM_TIMER_UPDATE`) AS `update_latency`,`pst`.`COUNT_DELETE` AS `rows_deleted`,`sys`.`format_time`(`pst`.`SUM_TIMER_DELETE`) AS `delete_latency`,`fsbi`.`count_read` AS `io_read_requests`,`sys`.`format_bytes`(`fsbi`.`sum_number_of_bytes_read`) AS `io_read`,`sys`.`format_time`(`fsbi`.`sum_timer_read`) AS `io_read_latency`,`fsbi`.`count_write` AS `io_write_requests`,`sys`.`format_bytes`(`fsbi`.`sum_number_of_bytes_write`) AS `io_write`,`sys`.`format_time`(`fsbi`.`sum_timer_write`) AS `io_write_latency`,`fsbi`.`count_misc` AS `io_misc_requests`,`sys`.`format_time`(`fsbi`.`sum_timer_misc`) AS `io_misc_latency` from (`performance_schema`.`table_io_waits_summary_by_table` `pst` left join `sys`.`x$ps_schema_table_statistics_io` `fsbi` on(((`pst`.`OBJECT_SCHEMA` = `fsbi`.`table_schema`) and (`pst`.`OBJECT_NAME` = `fsbi`.`table_name`)))) order by `pst`.`SUM_TIMER_WAIT` desc diff --git a/zbx_env/var/lib/mysql/sys/schema_table_statistics_with_buffer.frm b/zbx_env/var/lib/mysql/sys/schema_table_statistics_with_buffer.frm new file mode 100644 index 000000000..93980150f --- /dev/null +++ b/zbx_env/var/lib/mysql/sys/schema_table_statistics_with_buffer.frm @@ -0,0 +1,15 @@ +TYPE=VIEW +query=select `pst`.`OBJECT_SCHEMA` AS `table_schema`,`pst`.`OBJECT_NAME` AS `table_name`,`pst`.`COUNT_FETCH` AS `rows_fetched`,`sys`.`format_time`(`pst`.`SUM_TIMER_FETCH`) AS `fetch_latency`,`pst`.`COUNT_INSERT` AS `rows_inserted`,`sys`.`format_time`(`pst`.`SUM_TIMER_INSERT`) AS `insert_latency`,`pst`.`COUNT_UPDATE` AS `rows_updated`,`sys`.`format_time`(`pst`.`SUM_TIMER_UPDATE`) AS `update_latency`,`pst`.`COUNT_DELETE` AS `rows_deleted`,`sys`.`format_time`(`pst`.`SUM_TIMER_DELETE`) AS `delete_latency`,`fsbi`.`count_read` AS `io_read_requests`,`sys`.`format_bytes`(`fsbi`.`sum_number_of_bytes_read`) AS `io_read`,`sys`.`format_time`(`fsbi`.`sum_timer_read`) AS `io_read_latency`,`fsbi`.`count_write` AS `io_write_requests`,`sys`.`format_bytes`(`fsbi`.`sum_number_of_bytes_write`) AS `io_write`,`sys`.`format_time`(`fsbi`.`sum_timer_write`) AS `io_write_latency`,`fsbi`.`count_misc` AS `io_misc_requests`,`sys`.`format_time`(`fsbi`.`sum_timer_misc`) AS `io_misc_latency`,`sys`.`format_bytes`(`ibp`.`allocated`) AS `innodb_buffer_allocated`,`sys`.`format_bytes`(`ibp`.`data`) AS `innodb_buffer_data`,`sys`.`format_bytes`((`ibp`.`allocated` - `ibp`.`data`)) AS `innodb_buffer_free`,`ibp`.`pages` AS `innodb_buffer_pages`,`ibp`.`pages_hashed` AS `innodb_buffer_pages_hashed`,`ibp`.`pages_old` AS `innodb_buffer_pages_old`,`ibp`.`rows_cached` AS `innodb_buffer_rows_cached` from ((`performance_schema`.`table_io_waits_summary_by_table` `pst` left join `sys`.`x$ps_schema_table_statistics_io` `fsbi` on(((`pst`.`OBJECT_SCHEMA` = `fsbi`.`table_schema`) and (`pst`.`OBJECT_NAME` = `fsbi`.`table_name`)))) left join `sys`.`x$innodb_buffer_stats_by_table` `ibp` on(((`pst`.`OBJECT_SCHEMA` = `ibp`.`object_schema`) and (`pst`.`OBJECT_NAME` = `ibp`.`object_name`)))) order by `pst`.`SUM_TIMER_WAIT` desc +md5=782eed8b8021f208dda632d926fea09d +updatable=0 +algorithm=1 +definer_user=mysql.sys +definer_host=localhost +suid=0 +with_check_option=0 +timestamp=2018-07-20 01:51:25 +create-version=1 +source=SELECT pst.object_schema AS table_schema, pst.object_name AS table_name, pst.count_fetch AS rows_fetched, sys.format_time(pst.sum_timer_fetch) AS fetch_latency, pst.count_insert AS rows_inserted, sys.format_time(pst.sum_timer_insert) AS insert_latency, pst.count_update AS rows_updated, sys.format_time(pst.sum_timer_update) AS update_latency, pst.count_delete AS rows_deleted, sys.format_time(pst.sum_timer_delete) AS delete_latency, fsbi.count_read AS io_read_requests, sys.format_bytes(fsbi.sum_number_of_bytes_read) AS io_read, sys.format_time(fsbi.sum_timer_read) AS io_read_latency, fsbi.count_write AS io_write_requests, sys.format_bytes(fsbi.sum_number_of_bytes_write) AS io_write, sys.format_time(fsbi.sum_timer_write) AS io_write_latency, fsbi.count_misc AS io_misc_requests, sys.format_time(fsbi.sum_timer_misc) AS io_misc_latency, sys.format_bytes(ibp.allocated) AS innodb_buffer_allocated, sys.format_bytes(ibp.data) AS innodb_buffer_data, sys.format_bytes(ibp.allocated - ibp.data) AS innodb_buffer_free, ibp.pages AS innodb_buffer_pages, ibp.pages_hashed AS innodb_buffer_pages_hashed, ibp.pages_old AS innodb_buffer_pages_old, ibp.rows_cached AS innodb_buffer_rows_cached FROM performance_schema.table_io_waits_summary_by_table AS pst LEFT JOIN x$ps_schema_table_statistics_io AS fsbi ON pst.object_schema = fsbi.table_schema AND pst.object_name = fsbi.table_name LEFT JOIN sys.x$innodb_buffer_stats_by_table AS ibp ON pst.object_schema = ibp.object_schema AND pst.object_name = ibp.object_name ORDER BY pst.sum_timer_wait DESC +client_cs_name=utf8 +connection_cl_name=utf8_general_ci +view_body_utf8=select `pst`.`OBJECT_SCHEMA` AS `table_schema`,`pst`.`OBJECT_NAME` AS `table_name`,`pst`.`COUNT_FETCH` AS `rows_fetched`,`sys`.`format_time`(`pst`.`SUM_TIMER_FETCH`) AS `fetch_latency`,`pst`.`COUNT_INSERT` AS `rows_inserted`,`sys`.`format_time`(`pst`.`SUM_TIMER_INSERT`) AS `insert_latency`,`pst`.`COUNT_UPDATE` AS `rows_updated`,`sys`.`format_time`(`pst`.`SUM_TIMER_UPDATE`) AS `update_latency`,`pst`.`COUNT_DELETE` AS `rows_deleted`,`sys`.`format_time`(`pst`.`SUM_TIMER_DELETE`) AS `delete_latency`,`fsbi`.`count_read` AS `io_read_requests`,`sys`.`format_bytes`(`fsbi`.`sum_number_of_bytes_read`) AS `io_read`,`sys`.`format_time`(`fsbi`.`sum_timer_read`) AS `io_read_latency`,`fsbi`.`count_write` AS `io_write_requests`,`sys`.`format_bytes`(`fsbi`.`sum_number_of_bytes_write`) AS `io_write`,`sys`.`format_time`(`fsbi`.`sum_timer_write`) AS `io_write_latency`,`fsbi`.`count_misc` AS `io_misc_requests`,`sys`.`format_time`(`fsbi`.`sum_timer_misc`) AS `io_misc_latency`,`sys`.`format_bytes`(`ibp`.`allocated`) AS `innodb_buffer_allocated`,`sys`.`format_bytes`(`ibp`.`data`) AS `innodb_buffer_data`,`sys`.`format_bytes`((`ibp`.`allocated` - `ibp`.`data`)) AS `innodb_buffer_free`,`ibp`.`pages` AS `innodb_buffer_pages`,`ibp`.`pages_hashed` AS `innodb_buffer_pages_hashed`,`ibp`.`pages_old` AS `innodb_buffer_pages_old`,`ibp`.`rows_cached` AS `innodb_buffer_rows_cached` from ((`performance_schema`.`table_io_waits_summary_by_table` `pst` left join `sys`.`x$ps_schema_table_statistics_io` `fsbi` on(((`pst`.`OBJECT_SCHEMA` = `fsbi`.`table_schema`) and (`pst`.`OBJECT_NAME` = `fsbi`.`table_name`)))) left join `sys`.`x$innodb_buffer_stats_by_table` `ibp` on(((`pst`.`OBJECT_SCHEMA` = `ibp`.`object_schema`) and (`pst`.`OBJECT_NAME` = `ibp`.`object_name`)))) order by `pst`.`SUM_TIMER_WAIT` desc diff --git a/zbx_env/var/lib/mysql/sys/schema_tables_with_full_table_scans.frm b/zbx_env/var/lib/mysql/sys/schema_tables_with_full_table_scans.frm new file mode 100644 index 000000000..11150b11a --- /dev/null +++ b/zbx_env/var/lib/mysql/sys/schema_tables_with_full_table_scans.frm @@ -0,0 +1,15 @@ +TYPE=VIEW +query=select `performance_schema`.`table_io_waits_summary_by_index_usage`.`OBJECT_SCHEMA` AS `object_schema`,`performance_schema`.`table_io_waits_summary_by_index_usage`.`OBJECT_NAME` AS `object_name`,`performance_schema`.`table_io_waits_summary_by_index_usage`.`COUNT_READ` AS `rows_full_scanned`,`sys`.`format_time`(`performance_schema`.`table_io_waits_summary_by_index_usage`.`SUM_TIMER_WAIT`) AS `latency` from `performance_schema`.`table_io_waits_summary_by_index_usage` where (isnull(`performance_schema`.`table_io_waits_summary_by_index_usage`.`INDEX_NAME`) and (`performance_schema`.`table_io_waits_summary_by_index_usage`.`COUNT_READ` > 0)) order by `performance_schema`.`table_io_waits_summary_by_index_usage`.`COUNT_READ` desc +md5=eead73bf195efe1bf5542ab07f4d9479 +updatable=1 +algorithm=2 +definer_user=mysql.sys +definer_host=localhost +suid=0 +with_check_option=0 +timestamp=2018-07-20 01:51:25 +create-version=1 +source=SELECT object_schema, object_name, count_read AS rows_full_scanned, sys.format_time(sum_timer_wait) AS latency FROM performance_schema.table_io_waits_summary_by_index_usage WHERE index_name IS NULL AND count_read > 0 ORDER BY count_read DESC +client_cs_name=utf8 +connection_cl_name=utf8_general_ci +view_body_utf8=select `performance_schema`.`table_io_waits_summary_by_index_usage`.`OBJECT_SCHEMA` AS `object_schema`,`performance_schema`.`table_io_waits_summary_by_index_usage`.`OBJECT_NAME` AS `object_name`,`performance_schema`.`table_io_waits_summary_by_index_usage`.`COUNT_READ` AS `rows_full_scanned`,`sys`.`format_time`(`performance_schema`.`table_io_waits_summary_by_index_usage`.`SUM_TIMER_WAIT`) AS `latency` from `performance_schema`.`table_io_waits_summary_by_index_usage` where (isnull(`performance_schema`.`table_io_waits_summary_by_index_usage`.`INDEX_NAME`) and (`performance_schema`.`table_io_waits_summary_by_index_usage`.`COUNT_READ` > 0)) order by `performance_schema`.`table_io_waits_summary_by_index_usage`.`COUNT_READ` desc diff --git a/zbx_env/var/lib/mysql/sys/schema_unused_indexes.frm b/zbx_env/var/lib/mysql/sys/schema_unused_indexes.frm new file mode 100644 index 000000000..ecb60d58c --- /dev/null +++ b/zbx_env/var/lib/mysql/sys/schema_unused_indexes.frm @@ -0,0 +1,15 @@ +TYPE=VIEW +query=select `performance_schema`.`table_io_waits_summary_by_index_usage`.`OBJECT_SCHEMA` AS `object_schema`,`performance_schema`.`table_io_waits_summary_by_index_usage`.`OBJECT_NAME` AS `object_name`,`performance_schema`.`table_io_waits_summary_by_index_usage`.`INDEX_NAME` AS `index_name` from `performance_schema`.`table_io_waits_summary_by_index_usage` where ((`performance_schema`.`table_io_waits_summary_by_index_usage`.`INDEX_NAME` is not null) and (`performance_schema`.`table_io_waits_summary_by_index_usage`.`COUNT_STAR` = 0) and (`performance_schema`.`table_io_waits_summary_by_index_usage`.`OBJECT_SCHEMA` <> \'mysql\') and (`performance_schema`.`table_io_waits_summary_by_index_usage`.`INDEX_NAME` <> \'PRIMARY\')) order by `performance_schema`.`table_io_waits_summary_by_index_usage`.`OBJECT_SCHEMA`,`performance_schema`.`table_io_waits_summary_by_index_usage`.`OBJECT_NAME` +md5=b87c0301770f6742917609c5fcb57765 +updatable=1 +algorithm=2 +definer_user=mysql.sys +definer_host=localhost +suid=0 +with_check_option=0 +timestamp=2018-07-20 01:51:25 +create-version=1 +source=SELECT object_schema, object_name, index_name FROM performance_schema.table_io_waits_summary_by_index_usage WHERE index_name IS NOT NULL AND count_star = 0 AND object_schema != \'mysql\' AND index_name != \'PRIMARY\' ORDER BY object_schema, object_name +client_cs_name=utf8 +connection_cl_name=utf8_general_ci +view_body_utf8=select `performance_schema`.`table_io_waits_summary_by_index_usage`.`OBJECT_SCHEMA` AS `object_schema`,`performance_schema`.`table_io_waits_summary_by_index_usage`.`OBJECT_NAME` AS `object_name`,`performance_schema`.`table_io_waits_summary_by_index_usage`.`INDEX_NAME` AS `index_name` from `performance_schema`.`table_io_waits_summary_by_index_usage` where ((`performance_schema`.`table_io_waits_summary_by_index_usage`.`INDEX_NAME` is not null) and (`performance_schema`.`table_io_waits_summary_by_index_usage`.`COUNT_STAR` = 0) and (`performance_schema`.`table_io_waits_summary_by_index_usage`.`OBJECT_SCHEMA` <> \'mysql\') and (`performance_schema`.`table_io_waits_summary_by_index_usage`.`INDEX_NAME` <> \'PRIMARY\')) order by `performance_schema`.`table_io_waits_summary_by_index_usage`.`OBJECT_SCHEMA`,`performance_schema`.`table_io_waits_summary_by_index_usage`.`OBJECT_NAME` diff --git a/zbx_env/var/lib/mysql/sys/session.frm b/zbx_env/var/lib/mysql/sys/session.frm new file mode 100644 index 000000000..c07b5172f --- /dev/null +++ b/zbx_env/var/lib/mysql/sys/session.frm @@ -0,0 +1,15 @@ +TYPE=VIEW +query=select `processlist`.`thd_id` AS `thd_id`,`processlist`.`conn_id` AS `conn_id`,`processlist`.`user` AS `user`,`processlist`.`db` AS `db`,`processlist`.`command` AS `command`,`processlist`.`state` AS `state`,`processlist`.`time` AS `time`,`processlist`.`current_statement` AS `current_statement`,`processlist`.`statement_latency` AS `statement_latency`,`processlist`.`progress` AS `progress`,`processlist`.`lock_latency` AS `lock_latency`,`processlist`.`rows_examined` AS `rows_examined`,`processlist`.`rows_sent` AS `rows_sent`,`processlist`.`rows_affected` AS `rows_affected`,`processlist`.`tmp_tables` AS `tmp_tables`,`processlist`.`tmp_disk_tables` AS `tmp_disk_tables`,`processlist`.`full_scan` AS `full_scan`,`processlist`.`last_statement` AS `last_statement`,`processlist`.`last_statement_latency` AS `last_statement_latency`,`processlist`.`current_memory` AS `current_memory`,`processlist`.`last_wait` AS `last_wait`,`processlist`.`last_wait_latency` AS `last_wait_latency`,`processlist`.`source` AS `source`,`processlist`.`trx_latency` AS `trx_latency`,`processlist`.`trx_state` AS `trx_state`,`processlist`.`trx_autocommit` AS `trx_autocommit`,`processlist`.`pid` AS `pid`,`processlist`.`program_name` AS `program_name` from `sys`.`processlist` where ((`processlist`.`conn_id` is not null) and (`processlist`.`command` <> \'Daemon\')) +md5=97370a9a592ae223cb955b6a4424f702 +updatable=0 +algorithm=0 +definer_user=mysql.sys +definer_host=localhost +suid=0 +with_check_option=0 +timestamp=2018-07-20 01:51:25 +create-version=1 +source=SELECT * FROM sys.processlist WHERE conn_id IS NOT NULL AND command != \'Daemon\' +client_cs_name=utf8 +connection_cl_name=utf8_general_ci +view_body_utf8=select `processlist`.`thd_id` AS `thd_id`,`processlist`.`conn_id` AS `conn_id`,`processlist`.`user` AS `user`,`processlist`.`db` AS `db`,`processlist`.`command` AS `command`,`processlist`.`state` AS `state`,`processlist`.`time` AS `time`,`processlist`.`current_statement` AS `current_statement`,`processlist`.`statement_latency` AS `statement_latency`,`processlist`.`progress` AS `progress`,`processlist`.`lock_latency` AS `lock_latency`,`processlist`.`rows_examined` AS `rows_examined`,`processlist`.`rows_sent` AS `rows_sent`,`processlist`.`rows_affected` AS `rows_affected`,`processlist`.`tmp_tables` AS `tmp_tables`,`processlist`.`tmp_disk_tables` AS `tmp_disk_tables`,`processlist`.`full_scan` AS `full_scan`,`processlist`.`last_statement` AS `last_statement`,`processlist`.`last_statement_latency` AS `last_statement_latency`,`processlist`.`current_memory` AS `current_memory`,`processlist`.`last_wait` AS `last_wait`,`processlist`.`last_wait_latency` AS `last_wait_latency`,`processlist`.`source` AS `source`,`processlist`.`trx_latency` AS `trx_latency`,`processlist`.`trx_state` AS `trx_state`,`processlist`.`trx_autocommit` AS `trx_autocommit`,`processlist`.`pid` AS `pid`,`processlist`.`program_name` AS `program_name` from `sys`.`processlist` where ((`processlist`.`conn_id` is not null) and (`processlist`.`command` <> \'Daemon\')) diff --git a/zbx_env/var/lib/mysql/sys/session_ssl_status.frm b/zbx_env/var/lib/mysql/sys/session_ssl_status.frm new file mode 100644 index 000000000..bca907f81 --- /dev/null +++ b/zbx_env/var/lib/mysql/sys/session_ssl_status.frm @@ -0,0 +1,15 @@ +TYPE=VIEW +query=select `sslver`.`THREAD_ID` AS `thread_id`,`sslver`.`VARIABLE_VALUE` AS `ssl_version`,`sslcip`.`VARIABLE_VALUE` AS `ssl_cipher`,`sslreuse`.`VARIABLE_VALUE` AS `ssl_sessions_reused` from ((`performance_schema`.`status_by_thread` `sslver` left join `performance_schema`.`status_by_thread` `sslcip` on(((`sslcip`.`THREAD_ID` = `sslver`.`THREAD_ID`) and (`sslcip`.`VARIABLE_NAME` = \'Ssl_cipher\')))) left join `performance_schema`.`status_by_thread` `sslreuse` on(((`sslreuse`.`THREAD_ID` = `sslver`.`THREAD_ID`) and (`sslreuse`.`VARIABLE_NAME` = \'Ssl_sessions_reused\')))) where (`sslver`.`VARIABLE_NAME` = \'Ssl_version\') +md5=85a4a938aeb0d850e448a6821ca91f12 +updatable=0 +algorithm=2 +definer_user=mysql.sys +definer_host=localhost +suid=0 +with_check_option=0 +timestamp=2018-07-20 01:51:25 +create-version=1 +source=SELECT sslver.thread_id, sslver.variable_value ssl_version, sslcip.variable_value ssl_cipher, sslreuse.variable_value ssl_sessions_reused FROM performance_schema.status_by_thread sslver LEFT JOIN performance_schema.status_by_thread sslcip ON (sslcip.thread_id=sslver.thread_id and sslcip.variable_name=\'Ssl_cipher\') LEFT JOIN performance_schema.status_by_thread sslreuse ON (sslreuse.thread_id=sslver.thread_id and sslreuse.variable_name=\'Ssl_sessions_reused\') WHERE sslver.variable_name=\'Ssl_version\' +client_cs_name=utf8 +connection_cl_name=utf8_general_ci +view_body_utf8=select `sslver`.`THREAD_ID` AS `thread_id`,`sslver`.`VARIABLE_VALUE` AS `ssl_version`,`sslcip`.`VARIABLE_VALUE` AS `ssl_cipher`,`sslreuse`.`VARIABLE_VALUE` AS `ssl_sessions_reused` from ((`performance_schema`.`status_by_thread` `sslver` left join `performance_schema`.`status_by_thread` `sslcip` on(((`sslcip`.`THREAD_ID` = `sslver`.`THREAD_ID`) and (`sslcip`.`VARIABLE_NAME` = \'Ssl_cipher\')))) left join `performance_schema`.`status_by_thread` `sslreuse` on(((`sslreuse`.`THREAD_ID` = `sslver`.`THREAD_ID`) and (`sslreuse`.`VARIABLE_NAME` = \'Ssl_sessions_reused\')))) where (`sslver`.`VARIABLE_NAME` = \'Ssl_version\') diff --git a/zbx_env/var/lib/mysql/sys/statement_analysis.frm b/zbx_env/var/lib/mysql/sys/statement_analysis.frm new file mode 100644 index 000000000..f25704c52 --- /dev/null +++ b/zbx_env/var/lib/mysql/sys/statement_analysis.frm @@ -0,0 +1,15 @@ +TYPE=VIEW +query=select `sys`.`format_statement`(`performance_schema`.`events_statements_summary_by_digest`.`DIGEST_TEXT`) AS `query`,`performance_schema`.`events_statements_summary_by_digest`.`SCHEMA_NAME` AS `db`,if(((`performance_schema`.`events_statements_summary_by_digest`.`SUM_NO_GOOD_INDEX_USED` > 0) or (`performance_schema`.`events_statements_summary_by_digest`.`SUM_NO_INDEX_USED` > 0)),\'*\',\'\') AS `full_scan`,`performance_schema`.`events_statements_summary_by_digest`.`COUNT_STAR` AS `exec_count`,`performance_schema`.`events_statements_summary_by_digest`.`SUM_ERRORS` AS `err_count`,`performance_schema`.`events_statements_summary_by_digest`.`SUM_WARNINGS` AS `warn_count`,`sys`.`format_time`(`performance_schema`.`events_statements_summary_by_digest`.`SUM_TIMER_WAIT`) AS `total_latency`,`sys`.`format_time`(`performance_schema`.`events_statements_summary_by_digest`.`MAX_TIMER_WAIT`) AS `max_latency`,`sys`.`format_time`(`performance_schema`.`events_statements_summary_by_digest`.`AVG_TIMER_WAIT`) AS `avg_latency`,`sys`.`format_time`(`performance_schema`.`events_statements_summary_by_digest`.`SUM_LOCK_TIME`) AS `lock_latency`,`performance_schema`.`events_statements_summary_by_digest`.`SUM_ROWS_SENT` AS `rows_sent`,round(ifnull((`performance_schema`.`events_statements_summary_by_digest`.`SUM_ROWS_SENT` / nullif(`performance_schema`.`events_statements_summary_by_digest`.`COUNT_STAR`,0)),0),0) AS `rows_sent_avg`,`performance_schema`.`events_statements_summary_by_digest`.`SUM_ROWS_EXAMINED` AS `rows_examined`,round(ifnull((`performance_schema`.`events_statements_summary_by_digest`.`SUM_ROWS_EXAMINED` / nullif(`performance_schema`.`events_statements_summary_by_digest`.`COUNT_STAR`,0)),0),0) AS `rows_examined_avg`,`performance_schema`.`events_statements_summary_by_digest`.`SUM_ROWS_AFFECTED` AS `rows_affected`,round(ifnull((`performance_schema`.`events_statements_summary_by_digest`.`SUM_ROWS_AFFECTED` / nullif(`performance_schema`.`events_statements_summary_by_digest`.`COUNT_STAR`,0)),0),0) AS `rows_affected_avg`,`performance_schema`.`events_statements_summary_by_digest`.`SUM_CREATED_TMP_TABLES` AS `tmp_tables`,`performance_schema`.`events_statements_summary_by_digest`.`SUM_CREATED_TMP_DISK_TABLES` AS `tmp_disk_tables`,`performance_schema`.`events_statements_summary_by_digest`.`SUM_SORT_ROWS` AS `rows_sorted`,`performance_schema`.`events_statements_summary_by_digest`.`SUM_SORT_MERGE_PASSES` AS `sort_merge_passes`,`performance_schema`.`events_statements_summary_by_digest`.`DIGEST` AS `digest`,`performance_schema`.`events_statements_summary_by_digest`.`FIRST_SEEN` AS `first_seen`,`performance_schema`.`events_statements_summary_by_digest`.`LAST_SEEN` AS `last_seen` from `performance_schema`.`events_statements_summary_by_digest` order by `performance_schema`.`events_statements_summary_by_digest`.`SUM_TIMER_WAIT` desc +md5=007fedbc96c6cad02dd0148e535f40d0 +updatable=1 +algorithm=2 +definer_user=mysql.sys +definer_host=localhost +suid=0 +with_check_option=0 +timestamp=2018-07-20 01:51:25 +create-version=1 +source=SELECT sys.format_statement(DIGEST_TEXT) AS query, SCHEMA_NAME AS db, IF(SUM_NO_GOOD_INDEX_USED > 0 OR SUM_NO_INDEX_USED > 0, \'*\', \'\') AS full_scan, COUNT_STAR AS exec_count, SUM_ERRORS AS err_count, SUM_WARNINGS AS warn_count, sys.format_time(SUM_TIMER_WAIT) AS total_latency, sys.format_time(MAX_TIMER_WAIT) AS max_latency, sys.format_time(AVG_TIMER_WAIT) AS avg_latency, sys.format_time(SUM_LOCK_TIME) AS lock_latency, SUM_ROWS_SENT AS rows_sent, ROUND(IFNULL(SUM_ROWS_SENT / NULLIF(COUNT_STAR, 0), 0)) AS rows_sent_avg, SUM_ROWS_EXAMINED AS rows_examined, ROUND(IFNULL(SUM_ROWS_EXAMINED / NULLIF(COUNT_STAR, 0), 0)) AS rows_examined_avg, SUM_ROWS_AFFECTED AS rows_affected, ROUND(IFNULL(SUM_ROWS_AFFECTED / NULLIF(COUNT_STAR, 0), 0)) AS rows_affected_avg, SUM_CREATED_TMP_TABLES AS tmp_tables, SUM_CREATED_TMP_DISK_TABLES AS tmp_disk_tables, SUM_SORT_ROWS AS rows_sorted, SUM_SORT_MERGE_PASSES AS sort_merge_passes, DIGEST AS digest, FIRST_SEEN AS first_seen, LAST_SEEN as last_seen FROM performance_schema.events_statements_summary_by_digest ORDER BY SUM_TIMER_WAIT DESC +client_cs_name=utf8 +connection_cl_name=utf8_general_ci +view_body_utf8=select `sys`.`format_statement`(`performance_schema`.`events_statements_summary_by_digest`.`DIGEST_TEXT`) AS `query`,`performance_schema`.`events_statements_summary_by_digest`.`SCHEMA_NAME` AS `db`,if(((`performance_schema`.`events_statements_summary_by_digest`.`SUM_NO_GOOD_INDEX_USED` > 0) or (`performance_schema`.`events_statements_summary_by_digest`.`SUM_NO_INDEX_USED` > 0)),\'*\',\'\') AS `full_scan`,`performance_schema`.`events_statements_summary_by_digest`.`COUNT_STAR` AS `exec_count`,`performance_schema`.`events_statements_summary_by_digest`.`SUM_ERRORS` AS `err_count`,`performance_schema`.`events_statements_summary_by_digest`.`SUM_WARNINGS` AS `warn_count`,`sys`.`format_time`(`performance_schema`.`events_statements_summary_by_digest`.`SUM_TIMER_WAIT`) AS `total_latency`,`sys`.`format_time`(`performance_schema`.`events_statements_summary_by_digest`.`MAX_TIMER_WAIT`) AS `max_latency`,`sys`.`format_time`(`performance_schema`.`events_statements_summary_by_digest`.`AVG_TIMER_WAIT`) AS `avg_latency`,`sys`.`format_time`(`performance_schema`.`events_statements_summary_by_digest`.`SUM_LOCK_TIME`) AS `lock_latency`,`performance_schema`.`events_statements_summary_by_digest`.`SUM_ROWS_SENT` AS `rows_sent`,round(ifnull((`performance_schema`.`events_statements_summary_by_digest`.`SUM_ROWS_SENT` / nullif(`performance_schema`.`events_statements_summary_by_digest`.`COUNT_STAR`,0)),0),0) AS `rows_sent_avg`,`performance_schema`.`events_statements_summary_by_digest`.`SUM_ROWS_EXAMINED` AS `rows_examined`,round(ifnull((`performance_schema`.`events_statements_summary_by_digest`.`SUM_ROWS_EXAMINED` / nullif(`performance_schema`.`events_statements_summary_by_digest`.`COUNT_STAR`,0)),0),0) AS `rows_examined_avg`,`performance_schema`.`events_statements_summary_by_digest`.`SUM_ROWS_AFFECTED` AS `rows_affected`,round(ifnull((`performance_schema`.`events_statements_summary_by_digest`.`SUM_ROWS_AFFECTED` / nullif(`performance_schema`.`events_statements_summary_by_digest`.`COUNT_STAR`,0)),0),0) AS `rows_affected_avg`,`performance_schema`.`events_statements_summary_by_digest`.`SUM_CREATED_TMP_TABLES` AS `tmp_tables`,`performance_schema`.`events_statements_summary_by_digest`.`SUM_CREATED_TMP_DISK_TABLES` AS `tmp_disk_tables`,`performance_schema`.`events_statements_summary_by_digest`.`SUM_SORT_ROWS` AS `rows_sorted`,`performance_schema`.`events_statements_summary_by_digest`.`SUM_SORT_MERGE_PASSES` AS `sort_merge_passes`,`performance_schema`.`events_statements_summary_by_digest`.`DIGEST` AS `digest`,`performance_schema`.`events_statements_summary_by_digest`.`FIRST_SEEN` AS `first_seen`,`performance_schema`.`events_statements_summary_by_digest`.`LAST_SEEN` AS `last_seen` from `performance_schema`.`events_statements_summary_by_digest` order by `performance_schema`.`events_statements_summary_by_digest`.`SUM_TIMER_WAIT` desc diff --git a/zbx_env/var/lib/mysql/sys/statements_with_errors_or_warnings.frm b/zbx_env/var/lib/mysql/sys/statements_with_errors_or_warnings.frm new file mode 100644 index 000000000..282dfc7c4 --- /dev/null +++ b/zbx_env/var/lib/mysql/sys/statements_with_errors_or_warnings.frm @@ -0,0 +1,15 @@ +TYPE=VIEW +query=select `sys`.`format_statement`(`performance_schema`.`events_statements_summary_by_digest`.`DIGEST_TEXT`) AS `query`,`performance_schema`.`events_statements_summary_by_digest`.`SCHEMA_NAME` AS `db`,`performance_schema`.`events_statements_summary_by_digest`.`COUNT_STAR` AS `exec_count`,`performance_schema`.`events_statements_summary_by_digest`.`SUM_ERRORS` AS `errors`,(ifnull((`performance_schema`.`events_statements_summary_by_digest`.`SUM_ERRORS` / nullif(`performance_schema`.`events_statements_summary_by_digest`.`COUNT_STAR`,0)),0) * 100) AS `error_pct`,`performance_schema`.`events_statements_summary_by_digest`.`SUM_WARNINGS` AS `warnings`,(ifnull((`performance_schema`.`events_statements_summary_by_digest`.`SUM_WARNINGS` / nullif(`performance_schema`.`events_statements_summary_by_digest`.`COUNT_STAR`,0)),0) * 100) AS `warning_pct`,`performance_schema`.`events_statements_summary_by_digest`.`FIRST_SEEN` AS `first_seen`,`performance_schema`.`events_statements_summary_by_digest`.`LAST_SEEN` AS `last_seen`,`performance_schema`.`events_statements_summary_by_digest`.`DIGEST` AS `digest` from `performance_schema`.`events_statements_summary_by_digest` where ((`performance_schema`.`events_statements_summary_by_digest`.`SUM_ERRORS` > 0) or (`performance_schema`.`events_statements_summary_by_digest`.`SUM_WARNINGS` > 0)) order by `performance_schema`.`events_statements_summary_by_digest`.`SUM_ERRORS` desc,`performance_schema`.`events_statements_summary_by_digest`.`SUM_WARNINGS` desc +md5=fa456f1f49acf01d015d39e86d08ba12 +updatable=1 +algorithm=2 +definer_user=mysql.sys +definer_host=localhost +suid=0 +with_check_option=0 +timestamp=2018-07-20 01:51:25 +create-version=1 +source=SELECT sys.format_statement(DIGEST_TEXT) AS query, SCHEMA_NAME as db, COUNT_STAR AS exec_count, SUM_ERRORS AS errors, IFNULL(SUM_ERRORS / NULLIF(COUNT_STAR, 0), 0) * 100 as error_pct, SUM_WARNINGS AS warnings, IFNULL(SUM_WARNINGS / NULLIF(COUNT_STAR, 0), 0) * 100 as warning_pct, FIRST_SEEN as first_seen, LAST_SEEN as last_seen, DIGEST AS digest FROM performance_schema.events_statements_summary_by_digest WHERE SUM_ERRORS > 0 OR SUM_WARNINGS > 0 ORDER BY SUM_ERRORS DESC, SUM_WARNINGS DESC +client_cs_name=utf8 +connection_cl_name=utf8_general_ci +view_body_utf8=select `sys`.`format_statement`(`performance_schema`.`events_statements_summary_by_digest`.`DIGEST_TEXT`) AS `query`,`performance_schema`.`events_statements_summary_by_digest`.`SCHEMA_NAME` AS `db`,`performance_schema`.`events_statements_summary_by_digest`.`COUNT_STAR` AS `exec_count`,`performance_schema`.`events_statements_summary_by_digest`.`SUM_ERRORS` AS `errors`,(ifnull((`performance_schema`.`events_statements_summary_by_digest`.`SUM_ERRORS` / nullif(`performance_schema`.`events_statements_summary_by_digest`.`COUNT_STAR`,0)),0) * 100) AS `error_pct`,`performance_schema`.`events_statements_summary_by_digest`.`SUM_WARNINGS` AS `warnings`,(ifnull((`performance_schema`.`events_statements_summary_by_digest`.`SUM_WARNINGS` / nullif(`performance_schema`.`events_statements_summary_by_digest`.`COUNT_STAR`,0)),0) * 100) AS `warning_pct`,`performance_schema`.`events_statements_summary_by_digest`.`FIRST_SEEN` AS `first_seen`,`performance_schema`.`events_statements_summary_by_digest`.`LAST_SEEN` AS `last_seen`,`performance_schema`.`events_statements_summary_by_digest`.`DIGEST` AS `digest` from `performance_schema`.`events_statements_summary_by_digest` where ((`performance_schema`.`events_statements_summary_by_digest`.`SUM_ERRORS` > 0) or (`performance_schema`.`events_statements_summary_by_digest`.`SUM_WARNINGS` > 0)) order by `performance_schema`.`events_statements_summary_by_digest`.`SUM_ERRORS` desc,`performance_schema`.`events_statements_summary_by_digest`.`SUM_WARNINGS` desc diff --git a/zbx_env/var/lib/mysql/sys/statements_with_full_table_scans.frm b/zbx_env/var/lib/mysql/sys/statements_with_full_table_scans.frm new file mode 100644 index 000000000..aecbbd38f --- /dev/null +++ b/zbx_env/var/lib/mysql/sys/statements_with_full_table_scans.frm @@ -0,0 +1,15 @@ +TYPE=VIEW +query=select `sys`.`format_statement`(`performance_schema`.`events_statements_summary_by_digest`.`DIGEST_TEXT`) AS `query`,`performance_schema`.`events_statements_summary_by_digest`.`SCHEMA_NAME` AS `db`,`performance_schema`.`events_statements_summary_by_digest`.`COUNT_STAR` AS `exec_count`,`sys`.`format_time`(`performance_schema`.`events_statements_summary_by_digest`.`SUM_TIMER_WAIT`) AS `total_latency`,`performance_schema`.`events_statements_summary_by_digest`.`SUM_NO_INDEX_USED` AS `no_index_used_count`,`performance_schema`.`events_statements_summary_by_digest`.`SUM_NO_GOOD_INDEX_USED` AS `no_good_index_used_count`,round((ifnull((`performance_schema`.`events_statements_summary_by_digest`.`SUM_NO_INDEX_USED` / nullif(`performance_schema`.`events_statements_summary_by_digest`.`COUNT_STAR`,0)),0) * 100),0) AS `no_index_used_pct`,`performance_schema`.`events_statements_summary_by_digest`.`SUM_ROWS_SENT` AS `rows_sent`,`performance_schema`.`events_statements_summary_by_digest`.`SUM_ROWS_EXAMINED` AS `rows_examined`,round((`performance_schema`.`events_statements_summary_by_digest`.`SUM_ROWS_SENT` / `performance_schema`.`events_statements_summary_by_digest`.`COUNT_STAR`),0) AS `rows_sent_avg`,round((`performance_schema`.`events_statements_summary_by_digest`.`SUM_ROWS_EXAMINED` / `performance_schema`.`events_statements_summary_by_digest`.`COUNT_STAR`),0) AS `rows_examined_avg`,`performance_schema`.`events_statements_summary_by_digest`.`FIRST_SEEN` AS `first_seen`,`performance_schema`.`events_statements_summary_by_digest`.`LAST_SEEN` AS `last_seen`,`performance_schema`.`events_statements_summary_by_digest`.`DIGEST` AS `digest` from `performance_schema`.`events_statements_summary_by_digest` where (((`performance_schema`.`events_statements_summary_by_digest`.`SUM_NO_INDEX_USED` > 0) or (`performance_schema`.`events_statements_summary_by_digest`.`SUM_NO_GOOD_INDEX_USED` > 0)) and (not((`performance_schema`.`events_statements_summary_by_digest`.`DIGEST_TEXT` like \'SHOW%\')))) order by round((ifnull((`performance_schema`.`events_statements_summary_by_digest`.`SUM_NO_INDEX_USED` / nullif(`performance_schema`.`events_statements_summary_by_digest`.`COUNT_STAR`,0)),0) * 100),0) desc,`sys`.`format_time`(`performance_schema`.`events_statements_summary_by_digest`.`SUM_TIMER_WAIT`) desc +md5=032dd0483db99904ceffb58cf50f6f21 +updatable=1 +algorithm=2 +definer_user=mysql.sys +definer_host=localhost +suid=0 +with_check_option=0 +timestamp=2018-07-20 01:51:25 +create-version=1 +source=SELECT sys.format_statement(DIGEST_TEXT) AS query, SCHEMA_NAME as db, COUNT_STAR AS exec_count, sys.format_time(SUM_TIMER_WAIT) AS total_latency, SUM_NO_INDEX_USED AS no_index_used_count, SUM_NO_GOOD_INDEX_USED AS no_good_index_used_count, ROUND(IFNULL(SUM_NO_INDEX_USED / NULLIF(COUNT_STAR, 0), 0) * 100) AS no_index_used_pct, SUM_ROWS_SENT AS rows_sent, SUM_ROWS_EXAMINED AS rows_examined, ROUND(SUM_ROWS_SENT/COUNT_STAR) AS rows_sent_avg, ROUND(SUM_ROWS_EXAMINED/COUNT_STAR) AS rows_examined_avg, FIRST_SEEN as first_seen, LAST_SEEN as last_seen, DIGEST AS digest FROM performance_schema.events_statements_summary_by_digest WHERE (SUM_NO_INDEX_USED > 0 OR SUM_NO_GOOD_INDEX_USED > 0) AND DIGEST_TEXT NOT LIKE \'SHOW%\' ORDER BY no_index_used_pct DESC, total_latency DESC +client_cs_name=utf8 +connection_cl_name=utf8_general_ci +view_body_utf8=select `sys`.`format_statement`(`performance_schema`.`events_statements_summary_by_digest`.`DIGEST_TEXT`) AS `query`,`performance_schema`.`events_statements_summary_by_digest`.`SCHEMA_NAME` AS `db`,`performance_schema`.`events_statements_summary_by_digest`.`COUNT_STAR` AS `exec_count`,`sys`.`format_time`(`performance_schema`.`events_statements_summary_by_digest`.`SUM_TIMER_WAIT`) AS `total_latency`,`performance_schema`.`events_statements_summary_by_digest`.`SUM_NO_INDEX_USED` AS `no_index_used_count`,`performance_schema`.`events_statements_summary_by_digest`.`SUM_NO_GOOD_INDEX_USED` AS `no_good_index_used_count`,round((ifnull((`performance_schema`.`events_statements_summary_by_digest`.`SUM_NO_INDEX_USED` / nullif(`performance_schema`.`events_statements_summary_by_digest`.`COUNT_STAR`,0)),0) * 100),0) AS `no_index_used_pct`,`performance_schema`.`events_statements_summary_by_digest`.`SUM_ROWS_SENT` AS `rows_sent`,`performance_schema`.`events_statements_summary_by_digest`.`SUM_ROWS_EXAMINED` AS `rows_examined`,round((`performance_schema`.`events_statements_summary_by_digest`.`SUM_ROWS_SENT` / `performance_schema`.`events_statements_summary_by_digest`.`COUNT_STAR`),0) AS `rows_sent_avg`,round((`performance_schema`.`events_statements_summary_by_digest`.`SUM_ROWS_EXAMINED` / `performance_schema`.`events_statements_summary_by_digest`.`COUNT_STAR`),0) AS `rows_examined_avg`,`performance_schema`.`events_statements_summary_by_digest`.`FIRST_SEEN` AS `first_seen`,`performance_schema`.`events_statements_summary_by_digest`.`LAST_SEEN` AS `last_seen`,`performance_schema`.`events_statements_summary_by_digest`.`DIGEST` AS `digest` from `performance_schema`.`events_statements_summary_by_digest` where (((`performance_schema`.`events_statements_summary_by_digest`.`SUM_NO_INDEX_USED` > 0) or (`performance_schema`.`events_statements_summary_by_digest`.`SUM_NO_GOOD_INDEX_USED` > 0)) and (not((`performance_schema`.`events_statements_summary_by_digest`.`DIGEST_TEXT` like \'SHOW%\')))) order by round((ifnull((`performance_schema`.`events_statements_summary_by_digest`.`SUM_NO_INDEX_USED` / nullif(`performance_schema`.`events_statements_summary_by_digest`.`COUNT_STAR`,0)),0) * 100),0) desc,`sys`.`format_time`(`performance_schema`.`events_statements_summary_by_digest`.`SUM_TIMER_WAIT`) desc diff --git a/zbx_env/var/lib/mysql/sys/statements_with_runtimes_in_95th_percentile.frm b/zbx_env/var/lib/mysql/sys/statements_with_runtimes_in_95th_percentile.frm new file mode 100644 index 000000000..aba14fccc --- /dev/null +++ b/zbx_env/var/lib/mysql/sys/statements_with_runtimes_in_95th_percentile.frm @@ -0,0 +1,15 @@ +TYPE=VIEW +query=select `sys`.`format_statement`(`stmts`.`DIGEST_TEXT`) AS `query`,`stmts`.`SCHEMA_NAME` AS `db`,if(((`stmts`.`SUM_NO_GOOD_INDEX_USED` > 0) or (`stmts`.`SUM_NO_INDEX_USED` > 0)),\'*\',\'\') AS `full_scan`,`stmts`.`COUNT_STAR` AS `exec_count`,`stmts`.`SUM_ERRORS` AS `err_count`,`stmts`.`SUM_WARNINGS` AS `warn_count`,`sys`.`format_time`(`stmts`.`SUM_TIMER_WAIT`) AS `total_latency`,`sys`.`format_time`(`stmts`.`MAX_TIMER_WAIT`) AS `max_latency`,`sys`.`format_time`(`stmts`.`AVG_TIMER_WAIT`) AS `avg_latency`,`stmts`.`SUM_ROWS_SENT` AS `rows_sent`,round(ifnull((`stmts`.`SUM_ROWS_SENT` / nullif(`stmts`.`COUNT_STAR`,0)),0),0) AS `rows_sent_avg`,`stmts`.`SUM_ROWS_EXAMINED` AS `rows_examined`,round(ifnull((`stmts`.`SUM_ROWS_EXAMINED` / nullif(`stmts`.`COUNT_STAR`,0)),0),0) AS `rows_examined_avg`,`stmts`.`FIRST_SEEN` AS `first_seen`,`stmts`.`LAST_SEEN` AS `last_seen`,`stmts`.`DIGEST` AS `digest` from (`performance_schema`.`events_statements_summary_by_digest` `stmts` join `sys`.`x$ps_digest_95th_percentile_by_avg_us` `top_percentile` on((round((`stmts`.`AVG_TIMER_WAIT` / 1000000),0) >= `top_percentile`.`avg_us`))) order by `stmts`.`AVG_TIMER_WAIT` desc +md5=a8f6593f95ffd3877ab190a6e89b45fa +updatable=1 +algorithm=2 +definer_user=mysql.sys +definer_host=localhost +suid=0 +with_check_option=0 +timestamp=2018-07-20 01:51:25 +create-version=1 +source=SELECT sys.format_statement(DIGEST_TEXT) AS query, SCHEMA_NAME as db, IF(SUM_NO_GOOD_INDEX_USED > 0 OR SUM_NO_INDEX_USED > 0, \'*\', \'\') AS full_scan, COUNT_STAR AS exec_count, SUM_ERRORS AS err_count, SUM_WARNINGS AS warn_count, sys.format_time(SUM_TIMER_WAIT) AS total_latency, sys.format_time(MAX_TIMER_WAIT) AS max_latency, sys.format_time(AVG_TIMER_WAIT) AS avg_latency, SUM_ROWS_SENT AS rows_sent, ROUND(IFNULL(SUM_ROWS_SENT / NULLIF(COUNT_STAR, 0), 0)) AS rows_sent_avg, SUM_ROWS_EXAMINED AS rows_examined, ROUND(IFNULL(SUM_ROWS_EXAMINED / NULLIF(COUNT_STAR, 0), 0)) AS rows_examined_avg, FIRST_SEEN AS first_seen, LAST_SEEN AS last_seen, DIGEST AS digest FROM performance_schema.events_statements_summary_by_digest stmts JOIN sys.x$ps_digest_95th_percentile_by_avg_us AS top_percentile ON ROUND(stmts.avg_timer_wait/1000000) >= top_percentile.avg_us ORDER BY AVG_TIMER_WAIT DESC +client_cs_name=utf8 +connection_cl_name=utf8_general_ci +view_body_utf8=select `sys`.`format_statement`(`stmts`.`DIGEST_TEXT`) AS `query`,`stmts`.`SCHEMA_NAME` AS `db`,if(((`stmts`.`SUM_NO_GOOD_INDEX_USED` > 0) or (`stmts`.`SUM_NO_INDEX_USED` > 0)),\'*\',\'\') AS `full_scan`,`stmts`.`COUNT_STAR` AS `exec_count`,`stmts`.`SUM_ERRORS` AS `err_count`,`stmts`.`SUM_WARNINGS` AS `warn_count`,`sys`.`format_time`(`stmts`.`SUM_TIMER_WAIT`) AS `total_latency`,`sys`.`format_time`(`stmts`.`MAX_TIMER_WAIT`) AS `max_latency`,`sys`.`format_time`(`stmts`.`AVG_TIMER_WAIT`) AS `avg_latency`,`stmts`.`SUM_ROWS_SENT` AS `rows_sent`,round(ifnull((`stmts`.`SUM_ROWS_SENT` / nullif(`stmts`.`COUNT_STAR`,0)),0),0) AS `rows_sent_avg`,`stmts`.`SUM_ROWS_EXAMINED` AS `rows_examined`,round(ifnull((`stmts`.`SUM_ROWS_EXAMINED` / nullif(`stmts`.`COUNT_STAR`,0)),0),0) AS `rows_examined_avg`,`stmts`.`FIRST_SEEN` AS `first_seen`,`stmts`.`LAST_SEEN` AS `last_seen`,`stmts`.`DIGEST` AS `digest` from (`performance_schema`.`events_statements_summary_by_digest` `stmts` join `sys`.`x$ps_digest_95th_percentile_by_avg_us` `top_percentile` on((round((`stmts`.`AVG_TIMER_WAIT` / 1000000),0) >= `top_percentile`.`avg_us`))) order by `stmts`.`AVG_TIMER_WAIT` desc diff --git a/zbx_env/var/lib/mysql/sys/statements_with_sorting.frm b/zbx_env/var/lib/mysql/sys/statements_with_sorting.frm new file mode 100644 index 000000000..10570807e --- /dev/null +++ b/zbx_env/var/lib/mysql/sys/statements_with_sorting.frm @@ -0,0 +1,15 @@ +TYPE=VIEW +query=select `sys`.`format_statement`(`performance_schema`.`events_statements_summary_by_digest`.`DIGEST_TEXT`) AS `query`,`performance_schema`.`events_statements_summary_by_digest`.`SCHEMA_NAME` AS `db`,`performance_schema`.`events_statements_summary_by_digest`.`COUNT_STAR` AS `exec_count`,`sys`.`format_time`(`performance_schema`.`events_statements_summary_by_digest`.`SUM_TIMER_WAIT`) AS `total_latency`,`performance_schema`.`events_statements_summary_by_digest`.`SUM_SORT_MERGE_PASSES` AS `sort_merge_passes`,round(ifnull((`performance_schema`.`events_statements_summary_by_digest`.`SUM_SORT_MERGE_PASSES` / nullif(`performance_schema`.`events_statements_summary_by_digest`.`COUNT_STAR`,0)),0),0) AS `avg_sort_merges`,`performance_schema`.`events_statements_summary_by_digest`.`SUM_SORT_SCAN` AS `sorts_using_scans`,`performance_schema`.`events_statements_summary_by_digest`.`SUM_SORT_RANGE` AS `sort_using_range`,`performance_schema`.`events_statements_summary_by_digest`.`SUM_SORT_ROWS` AS `rows_sorted`,round(ifnull((`performance_schema`.`events_statements_summary_by_digest`.`SUM_SORT_ROWS` / nullif(`performance_schema`.`events_statements_summary_by_digest`.`COUNT_STAR`,0)),0),0) AS `avg_rows_sorted`,`performance_schema`.`events_statements_summary_by_digest`.`FIRST_SEEN` AS `first_seen`,`performance_schema`.`events_statements_summary_by_digest`.`LAST_SEEN` AS `last_seen`,`performance_schema`.`events_statements_summary_by_digest`.`DIGEST` AS `digest` from `performance_schema`.`events_statements_summary_by_digest` where (`performance_schema`.`events_statements_summary_by_digest`.`SUM_SORT_ROWS` > 0) order by `performance_schema`.`events_statements_summary_by_digest`.`SUM_TIMER_WAIT` desc +md5=0afdf8926912f8e0461530464bbb351e +updatable=1 +algorithm=2 +definer_user=mysql.sys +definer_host=localhost +suid=0 +with_check_option=0 +timestamp=2018-07-20 01:51:25 +create-version=1 +source=SELECT sys.format_statement(DIGEST_TEXT) AS query, SCHEMA_NAME db, COUNT_STAR AS exec_count, sys.format_time(SUM_TIMER_WAIT) AS total_latency, SUM_SORT_MERGE_PASSES AS sort_merge_passes, ROUND(IFNULL(SUM_SORT_MERGE_PASSES / NULLIF(COUNT_STAR, 0), 0)) AS avg_sort_merges, SUM_SORT_SCAN AS sorts_using_scans, SUM_SORT_RANGE AS sort_using_range, SUM_SORT_ROWS AS rows_sorted, ROUND(IFNULL(SUM_SORT_ROWS / NULLIF(COUNT_STAR, 0), 0)) AS avg_rows_sorted, FIRST_SEEN as first_seen, LAST_SEEN as last_seen, DIGEST AS digest FROM performance_schema.events_statements_summary_by_digest WHERE SUM_SORT_ROWS > 0 ORDER BY SUM_TIMER_WAIT DESC +client_cs_name=utf8 +connection_cl_name=utf8_general_ci +view_body_utf8=select `sys`.`format_statement`(`performance_schema`.`events_statements_summary_by_digest`.`DIGEST_TEXT`) AS `query`,`performance_schema`.`events_statements_summary_by_digest`.`SCHEMA_NAME` AS `db`,`performance_schema`.`events_statements_summary_by_digest`.`COUNT_STAR` AS `exec_count`,`sys`.`format_time`(`performance_schema`.`events_statements_summary_by_digest`.`SUM_TIMER_WAIT`) AS `total_latency`,`performance_schema`.`events_statements_summary_by_digest`.`SUM_SORT_MERGE_PASSES` AS `sort_merge_passes`,round(ifnull((`performance_schema`.`events_statements_summary_by_digest`.`SUM_SORT_MERGE_PASSES` / nullif(`performance_schema`.`events_statements_summary_by_digest`.`COUNT_STAR`,0)),0),0) AS `avg_sort_merges`,`performance_schema`.`events_statements_summary_by_digest`.`SUM_SORT_SCAN` AS `sorts_using_scans`,`performance_schema`.`events_statements_summary_by_digest`.`SUM_SORT_RANGE` AS `sort_using_range`,`performance_schema`.`events_statements_summary_by_digest`.`SUM_SORT_ROWS` AS `rows_sorted`,round(ifnull((`performance_schema`.`events_statements_summary_by_digest`.`SUM_SORT_ROWS` / nullif(`performance_schema`.`events_statements_summary_by_digest`.`COUNT_STAR`,0)),0),0) AS `avg_rows_sorted`,`performance_schema`.`events_statements_summary_by_digest`.`FIRST_SEEN` AS `first_seen`,`performance_schema`.`events_statements_summary_by_digest`.`LAST_SEEN` AS `last_seen`,`performance_schema`.`events_statements_summary_by_digest`.`DIGEST` AS `digest` from `performance_schema`.`events_statements_summary_by_digest` where (`performance_schema`.`events_statements_summary_by_digest`.`SUM_SORT_ROWS` > 0) order by `performance_schema`.`events_statements_summary_by_digest`.`SUM_TIMER_WAIT` desc diff --git a/zbx_env/var/lib/mysql/sys/statements_with_temp_tables.frm b/zbx_env/var/lib/mysql/sys/statements_with_temp_tables.frm new file mode 100644 index 000000000..ba1f27d37 --- /dev/null +++ b/zbx_env/var/lib/mysql/sys/statements_with_temp_tables.frm @@ -0,0 +1,15 @@ +TYPE=VIEW +query=select `sys`.`format_statement`(`performance_schema`.`events_statements_summary_by_digest`.`DIGEST_TEXT`) AS `query`,`performance_schema`.`events_statements_summary_by_digest`.`SCHEMA_NAME` AS `db`,`performance_schema`.`events_statements_summary_by_digest`.`COUNT_STAR` AS `exec_count`,`sys`.`format_time`(`performance_schema`.`events_statements_summary_by_digest`.`SUM_TIMER_WAIT`) AS `total_latency`,`performance_schema`.`events_statements_summary_by_digest`.`SUM_CREATED_TMP_TABLES` AS `memory_tmp_tables`,`performance_schema`.`events_statements_summary_by_digest`.`SUM_CREATED_TMP_DISK_TABLES` AS `disk_tmp_tables`,round(ifnull((`performance_schema`.`events_statements_summary_by_digest`.`SUM_CREATED_TMP_TABLES` / nullif(`performance_schema`.`events_statements_summary_by_digest`.`COUNT_STAR`,0)),0),0) AS `avg_tmp_tables_per_query`,round((ifnull((`performance_schema`.`events_statements_summary_by_digest`.`SUM_CREATED_TMP_DISK_TABLES` / nullif(`performance_schema`.`events_statements_summary_by_digest`.`SUM_CREATED_TMP_TABLES`,0)),0) * 100),0) AS `tmp_tables_to_disk_pct`,`performance_schema`.`events_statements_summary_by_digest`.`FIRST_SEEN` AS `first_seen`,`performance_schema`.`events_statements_summary_by_digest`.`LAST_SEEN` AS `last_seen`,`performance_schema`.`events_statements_summary_by_digest`.`DIGEST` AS `digest` from `performance_schema`.`events_statements_summary_by_digest` where (`performance_schema`.`events_statements_summary_by_digest`.`SUM_CREATED_TMP_TABLES` > 0) order by `performance_schema`.`events_statements_summary_by_digest`.`SUM_CREATED_TMP_DISK_TABLES` desc,`performance_schema`.`events_statements_summary_by_digest`.`SUM_CREATED_TMP_TABLES` desc +md5=d97ee486ddd46f21be4acb840e0a6163 +updatable=1 +algorithm=2 +definer_user=mysql.sys +definer_host=localhost +suid=0 +with_check_option=0 +timestamp=2018-07-20 01:51:25 +create-version=1 +source=SELECT sys.format_statement(DIGEST_TEXT) AS query, SCHEMA_NAME as db, COUNT_STAR AS exec_count, sys.format_time(SUM_TIMER_WAIT) as total_latency, SUM_CREATED_TMP_TABLES AS memory_tmp_tables, SUM_CREATED_TMP_DISK_TABLES AS disk_tmp_tables, ROUND(IFNULL(SUM_CREATED_TMP_TABLES / NULLIF(COUNT_STAR, 0), 0)) AS avg_tmp_tables_per_query, ROUND(IFNULL(SUM_CREATED_TMP_DISK_TABLES / NULLIF(SUM_CREATED_TMP_TABLES, 0), 0) * 100) AS tmp_tables_to_disk_pct, FIRST_SEEN as first_seen, LAST_SEEN as last_seen, DIGEST AS digest FROM performance_schema.events_statements_summary_by_digest WHERE SUM_CREATED_TMP_TABLES > 0 ORDER BY SUM_CREATED_TMP_DISK_TABLES DESC, SUM_CREATED_TMP_TABLES DESC +client_cs_name=utf8 +connection_cl_name=utf8_general_ci +view_body_utf8=select `sys`.`format_statement`(`performance_schema`.`events_statements_summary_by_digest`.`DIGEST_TEXT`) AS `query`,`performance_schema`.`events_statements_summary_by_digest`.`SCHEMA_NAME` AS `db`,`performance_schema`.`events_statements_summary_by_digest`.`COUNT_STAR` AS `exec_count`,`sys`.`format_time`(`performance_schema`.`events_statements_summary_by_digest`.`SUM_TIMER_WAIT`) AS `total_latency`,`performance_schema`.`events_statements_summary_by_digest`.`SUM_CREATED_TMP_TABLES` AS `memory_tmp_tables`,`performance_schema`.`events_statements_summary_by_digest`.`SUM_CREATED_TMP_DISK_TABLES` AS `disk_tmp_tables`,round(ifnull((`performance_schema`.`events_statements_summary_by_digest`.`SUM_CREATED_TMP_TABLES` / nullif(`performance_schema`.`events_statements_summary_by_digest`.`COUNT_STAR`,0)),0),0) AS `avg_tmp_tables_per_query`,round((ifnull((`performance_schema`.`events_statements_summary_by_digest`.`SUM_CREATED_TMP_DISK_TABLES` / nullif(`performance_schema`.`events_statements_summary_by_digest`.`SUM_CREATED_TMP_TABLES`,0)),0) * 100),0) AS `tmp_tables_to_disk_pct`,`performance_schema`.`events_statements_summary_by_digest`.`FIRST_SEEN` AS `first_seen`,`performance_schema`.`events_statements_summary_by_digest`.`LAST_SEEN` AS `last_seen`,`performance_schema`.`events_statements_summary_by_digest`.`DIGEST` AS `digest` from `performance_schema`.`events_statements_summary_by_digest` where (`performance_schema`.`events_statements_summary_by_digest`.`SUM_CREATED_TMP_TABLES` > 0) order by `performance_schema`.`events_statements_summary_by_digest`.`SUM_CREATED_TMP_DISK_TABLES` desc,`performance_schema`.`events_statements_summary_by_digest`.`SUM_CREATED_TMP_TABLES` desc diff --git a/zbx_env/var/lib/mysql/sys/sys_config.TRG b/zbx_env/var/lib/mysql/sys/sys_config.TRG new file mode 100644 index 000000000..4683346ef --- /dev/null +++ b/zbx_env/var/lib/mysql/sys/sys_config.TRG @@ -0,0 +1,8 @@ +TYPE=TRIGGERS +triggers='CREATE DEFINER=`mysql.sys`@`localhost` TRIGGER sys_config_insert_set_user BEFORE INSERT on sys_config FOR EACH ROW BEGIN IF @sys.ignore_sys_config_triggers != true AND NEW.set_by IS NULL THEN SET NEW.set_by = USER(); END IF; END' 'CREATE DEFINER=`mysql.sys`@`localhost` TRIGGER sys_config_update_set_user BEFORE UPDATE on sys_config FOR EACH ROW BEGIN IF @sys.ignore_sys_config_triggers != true AND NEW.set_by IS NULL THEN SET NEW.set_by = USER(); END IF; END' +sql_modes=0 0 +definers='mysql.sys@localhost' 'mysql.sys@localhost' +client_cs_names='utf8' 'utf8' +connection_cl_names='utf8_general_ci' 'utf8_general_ci' +db_cl_names='utf8_general_ci' 'utf8_general_ci' +created=153205148531 153205148531 diff --git a/zbx_env/var/lib/mysql/sys/sys_config.frm b/zbx_env/var/lib/mysql/sys/sys_config.frm new file mode 100644 index 000000000..0e6244abc Binary files /dev/null and b/zbx_env/var/lib/mysql/sys/sys_config.frm differ diff --git a/zbx_env/var/lib/mysql/sys/sys_config.ibd b/zbx_env/var/lib/mysql/sys/sys_config.ibd new file mode 100644 index 000000000..a796eb8fc Binary files /dev/null and b/zbx_env/var/lib/mysql/sys/sys_config.ibd differ diff --git a/zbx_env/var/lib/mysql/sys/sys_config_insert_set_user.TRN b/zbx_env/var/lib/mysql/sys/sys_config_insert_set_user.TRN new file mode 100644 index 000000000..5f6be00fd --- /dev/null +++ b/zbx_env/var/lib/mysql/sys/sys_config_insert_set_user.TRN @@ -0,0 +1,2 @@ +TYPE=TRIGGERNAME +trigger_table=sys_config diff --git a/zbx_env/var/lib/mysql/sys/sys_config_update_set_user.TRN b/zbx_env/var/lib/mysql/sys/sys_config_update_set_user.TRN new file mode 100644 index 000000000..5f6be00fd --- /dev/null +++ b/zbx_env/var/lib/mysql/sys/sys_config_update_set_user.TRN @@ -0,0 +1,2 @@ +TYPE=TRIGGERNAME +trigger_table=sys_config diff --git a/zbx_env/var/lib/mysql/sys/user_summary.frm b/zbx_env/var/lib/mysql/sys/user_summary.frm new file mode 100644 index 000000000..aa93553ab --- /dev/null +++ b/zbx_env/var/lib/mysql/sys/user_summary.frm @@ -0,0 +1,15 @@ +TYPE=VIEW +query=select if(isnull(`performance_schema`.`accounts`.`USER`),\'background\',`performance_schema`.`accounts`.`USER`) AS `user`,sum(`stmt`.`total`) AS `statements`,`sys`.`format_time`(sum(`stmt`.`total_latency`)) AS `statement_latency`,`sys`.`format_time`(ifnull((sum(`stmt`.`total_latency`) / nullif(sum(`stmt`.`total`),0)),0)) AS `statement_avg_latency`,sum(`stmt`.`full_scans`) AS `table_scans`,sum(`io`.`ios`) AS `file_ios`,`sys`.`format_time`(sum(`io`.`io_latency`)) AS `file_io_latency`,sum(`performance_schema`.`accounts`.`CURRENT_CONNECTIONS`) AS `current_connections`,sum(`performance_schema`.`accounts`.`TOTAL_CONNECTIONS`) AS `total_connections`,count(distinct `performance_schema`.`accounts`.`HOST`) AS `unique_hosts`,`sys`.`format_bytes`(sum(`mem`.`current_allocated`)) AS `current_memory`,`sys`.`format_bytes`(sum(`mem`.`total_allocated`)) AS `total_memory_allocated` from (((`performance_schema`.`accounts` left join `sys`.`x$user_summary_by_statement_latency` `stmt` on((if(isnull(`performance_schema`.`accounts`.`USER`),\'background\',`performance_schema`.`accounts`.`USER`) = `stmt`.`user`))) left join `sys`.`x$user_summary_by_file_io` `io` on((if(isnull(`performance_schema`.`accounts`.`USER`),\'background\',`performance_schema`.`accounts`.`USER`) = `io`.`user`))) left join `sys`.`x$memory_by_user_by_current_bytes` `mem` on((if(isnull(`performance_schema`.`accounts`.`USER`),\'background\',`performance_schema`.`accounts`.`USER`) = `mem`.`user`))) group by if(isnull(`performance_schema`.`accounts`.`USER`),\'background\',`performance_schema`.`accounts`.`USER`) order by sum(`stmt`.`total_latency`) desc +md5=a555feb571b472037415d785e83cb7dd +updatable=0 +algorithm=1 +definer_user=mysql.sys +definer_host=localhost +suid=0 +with_check_option=0 +timestamp=2018-07-20 01:51:25 +create-version=1 +source=SELECT IF(accounts.user IS NULL, \'background\', accounts.user) AS user, SUM(stmt.total) AS statements, sys.format_time(SUM(stmt.total_latency)) AS statement_latency, sys.format_time(IFNULL(SUM(stmt.total_latency) / NULLIF(SUM(stmt.total), 0), 0)) AS statement_avg_latency, SUM(stmt.full_scans) AS table_scans, SUM(io.ios) AS file_ios, sys.format_time(SUM(io.io_latency)) AS file_io_latency, SUM(accounts.current_connections) AS current_connections, SUM(accounts.total_connections) AS total_connections, COUNT(DISTINCT host) AS unique_hosts, sys.format_bytes(SUM(mem.current_allocated)) AS current_memory, sys.format_bytes(SUM(mem.total_allocated)) AS total_memory_allocated FROM performance_schema.accounts LEFT JOIN sys.x$user_summary_by_statement_latency AS stmt ON IF(accounts.user IS NULL, \'background\', accounts.user) = stmt.user LEFT JOIN sys.x$user_summary_by_file_io AS io ON IF(accounts.user IS NULL, \'background\', accounts.user) = io.user LEFT JOIN sys.x$memory_by_user_by_current_bytes mem ON IF(accounts.user IS NULL, \'background\', accounts.user) = mem.user GROUP BY IF(accounts.user IS NULL, \'background\', accounts.user) ORDER BY SUM(stmt.total_latency) DESC +client_cs_name=utf8 +connection_cl_name=utf8_general_ci +view_body_utf8=select if(isnull(`performance_schema`.`accounts`.`USER`),\'background\',`performance_schema`.`accounts`.`USER`) AS `user`,sum(`stmt`.`total`) AS `statements`,`sys`.`format_time`(sum(`stmt`.`total_latency`)) AS `statement_latency`,`sys`.`format_time`(ifnull((sum(`stmt`.`total_latency`) / nullif(sum(`stmt`.`total`),0)),0)) AS `statement_avg_latency`,sum(`stmt`.`full_scans`) AS `table_scans`,sum(`io`.`ios`) AS `file_ios`,`sys`.`format_time`(sum(`io`.`io_latency`)) AS `file_io_latency`,sum(`performance_schema`.`accounts`.`CURRENT_CONNECTIONS`) AS `current_connections`,sum(`performance_schema`.`accounts`.`TOTAL_CONNECTIONS`) AS `total_connections`,count(distinct `performance_schema`.`accounts`.`HOST`) AS `unique_hosts`,`sys`.`format_bytes`(sum(`mem`.`current_allocated`)) AS `current_memory`,`sys`.`format_bytes`(sum(`mem`.`total_allocated`)) AS `total_memory_allocated` from (((`performance_schema`.`accounts` left join `sys`.`x$user_summary_by_statement_latency` `stmt` on((if(isnull(`performance_schema`.`accounts`.`USER`),\'background\',`performance_schema`.`accounts`.`USER`) = `stmt`.`user`))) left join `sys`.`x$user_summary_by_file_io` `io` on((if(isnull(`performance_schema`.`accounts`.`USER`),\'background\',`performance_schema`.`accounts`.`USER`) = `io`.`user`))) left join `sys`.`x$memory_by_user_by_current_bytes` `mem` on((if(isnull(`performance_schema`.`accounts`.`USER`),\'background\',`performance_schema`.`accounts`.`USER`) = `mem`.`user`))) group by if(isnull(`performance_schema`.`accounts`.`USER`),\'background\',`performance_schema`.`accounts`.`USER`) order by sum(`stmt`.`total_latency`) desc diff --git a/zbx_env/var/lib/mysql/sys/user_summary_by_file_io.frm b/zbx_env/var/lib/mysql/sys/user_summary_by_file_io.frm new file mode 100644 index 000000000..5e8d83709 --- /dev/null +++ b/zbx_env/var/lib/mysql/sys/user_summary_by_file_io.frm @@ -0,0 +1,15 @@ +TYPE=VIEW +query=select if(isnull(`performance_schema`.`events_waits_summary_by_user_by_event_name`.`USER`),\'background\',`performance_schema`.`events_waits_summary_by_user_by_event_name`.`USER`) AS `user`,sum(`performance_schema`.`events_waits_summary_by_user_by_event_name`.`COUNT_STAR`) AS `ios`,`sys`.`format_time`(sum(`performance_schema`.`events_waits_summary_by_user_by_event_name`.`SUM_TIMER_WAIT`)) AS `io_latency` from `performance_schema`.`events_waits_summary_by_user_by_event_name` where (`performance_schema`.`events_waits_summary_by_user_by_event_name`.`EVENT_NAME` like \'wait/io/file/%\') group by if(isnull(`performance_schema`.`events_waits_summary_by_user_by_event_name`.`USER`),\'background\',`performance_schema`.`events_waits_summary_by_user_by_event_name`.`USER`) order by sum(`performance_schema`.`events_waits_summary_by_user_by_event_name`.`SUM_TIMER_WAIT`) desc +md5=08171b54a594819d1cd686ef84f12e31 +updatable=0 +algorithm=1 +definer_user=mysql.sys +definer_host=localhost +suid=0 +with_check_option=0 +timestamp=2018-07-20 01:51:25 +create-version=1 +source=SELECT IF(user IS NULL, \'background\', user) AS user, SUM(count_star) AS ios, sys.format_time(SUM(sum_timer_wait)) AS io_latency FROM performance_schema.events_waits_summary_by_user_by_event_name WHERE event_name LIKE \'wait/io/file/%\' GROUP BY IF(user IS NULL, \'background\', user) ORDER BY SUM(sum_timer_wait) DESC +client_cs_name=utf8 +connection_cl_name=utf8_general_ci +view_body_utf8=select if(isnull(`performance_schema`.`events_waits_summary_by_user_by_event_name`.`USER`),\'background\',`performance_schema`.`events_waits_summary_by_user_by_event_name`.`USER`) AS `user`,sum(`performance_schema`.`events_waits_summary_by_user_by_event_name`.`COUNT_STAR`) AS `ios`,`sys`.`format_time`(sum(`performance_schema`.`events_waits_summary_by_user_by_event_name`.`SUM_TIMER_WAIT`)) AS `io_latency` from `performance_schema`.`events_waits_summary_by_user_by_event_name` where (`performance_schema`.`events_waits_summary_by_user_by_event_name`.`EVENT_NAME` like \'wait/io/file/%\') group by if(isnull(`performance_schema`.`events_waits_summary_by_user_by_event_name`.`USER`),\'background\',`performance_schema`.`events_waits_summary_by_user_by_event_name`.`USER`) order by sum(`performance_schema`.`events_waits_summary_by_user_by_event_name`.`SUM_TIMER_WAIT`) desc diff --git a/zbx_env/var/lib/mysql/sys/user_summary_by_file_io_type.frm b/zbx_env/var/lib/mysql/sys/user_summary_by_file_io_type.frm new file mode 100644 index 000000000..49f2b2334 --- /dev/null +++ b/zbx_env/var/lib/mysql/sys/user_summary_by_file_io_type.frm @@ -0,0 +1,15 @@ +TYPE=VIEW +query=select if(isnull(`performance_schema`.`events_waits_summary_by_user_by_event_name`.`USER`),\'background\',`performance_schema`.`events_waits_summary_by_user_by_event_name`.`USER`) AS `user`,`performance_schema`.`events_waits_summary_by_user_by_event_name`.`EVENT_NAME` AS `event_name`,`performance_schema`.`events_waits_summary_by_user_by_event_name`.`COUNT_STAR` AS `total`,`sys`.`format_time`(`performance_schema`.`events_waits_summary_by_user_by_event_name`.`SUM_TIMER_WAIT`) AS `latency`,`sys`.`format_time`(`performance_schema`.`events_waits_summary_by_user_by_event_name`.`MAX_TIMER_WAIT`) AS `max_latency` from `performance_schema`.`events_waits_summary_by_user_by_event_name` where ((`performance_schema`.`events_waits_summary_by_user_by_event_name`.`EVENT_NAME` like \'wait/io/file%\') and (`performance_schema`.`events_waits_summary_by_user_by_event_name`.`COUNT_STAR` > 0)) order by if(isnull(`performance_schema`.`events_waits_summary_by_user_by_event_name`.`USER`),\'background\',`performance_schema`.`events_waits_summary_by_user_by_event_name`.`USER`),`performance_schema`.`events_waits_summary_by_user_by_event_name`.`SUM_TIMER_WAIT` desc +md5=bb1eca95354ebd09efbc2f63a5592c17 +updatable=1 +algorithm=2 +definer_user=mysql.sys +definer_host=localhost +suid=0 +with_check_option=0 +timestamp=2018-07-20 01:51:25 +create-version=1 +source=SELECT IF(user IS NULL, \'background\', user) AS user, event_name, count_star AS total, sys.format_time(sum_timer_wait) AS latency, sys.format_time(max_timer_wait) AS max_latency FROM performance_schema.events_waits_summary_by_user_by_event_name WHERE event_name LIKE \'wait/io/file%\' AND count_star > 0 ORDER BY user, sum_timer_wait DESC +client_cs_name=utf8 +connection_cl_name=utf8_general_ci +view_body_utf8=select if(isnull(`performance_schema`.`events_waits_summary_by_user_by_event_name`.`USER`),\'background\',`performance_schema`.`events_waits_summary_by_user_by_event_name`.`USER`) AS `user`,`performance_schema`.`events_waits_summary_by_user_by_event_name`.`EVENT_NAME` AS `event_name`,`performance_schema`.`events_waits_summary_by_user_by_event_name`.`COUNT_STAR` AS `total`,`sys`.`format_time`(`performance_schema`.`events_waits_summary_by_user_by_event_name`.`SUM_TIMER_WAIT`) AS `latency`,`sys`.`format_time`(`performance_schema`.`events_waits_summary_by_user_by_event_name`.`MAX_TIMER_WAIT`) AS `max_latency` from `performance_schema`.`events_waits_summary_by_user_by_event_name` where ((`performance_schema`.`events_waits_summary_by_user_by_event_name`.`EVENT_NAME` like \'wait/io/file%\') and (`performance_schema`.`events_waits_summary_by_user_by_event_name`.`COUNT_STAR` > 0)) order by if(isnull(`performance_schema`.`events_waits_summary_by_user_by_event_name`.`USER`),\'background\',`performance_schema`.`events_waits_summary_by_user_by_event_name`.`USER`),`performance_schema`.`events_waits_summary_by_user_by_event_name`.`SUM_TIMER_WAIT` desc diff --git a/zbx_env/var/lib/mysql/sys/user_summary_by_stages.frm b/zbx_env/var/lib/mysql/sys/user_summary_by_stages.frm new file mode 100644 index 000000000..62f01d4cb --- /dev/null +++ b/zbx_env/var/lib/mysql/sys/user_summary_by_stages.frm @@ -0,0 +1,15 @@ +TYPE=VIEW +query=select if(isnull(`performance_schema`.`events_stages_summary_by_user_by_event_name`.`USER`),\'background\',`performance_schema`.`events_stages_summary_by_user_by_event_name`.`USER`) AS `user`,`performance_schema`.`events_stages_summary_by_user_by_event_name`.`EVENT_NAME` AS `event_name`,`performance_schema`.`events_stages_summary_by_user_by_event_name`.`COUNT_STAR` AS `total`,`sys`.`format_time`(`performance_schema`.`events_stages_summary_by_user_by_event_name`.`SUM_TIMER_WAIT`) AS `total_latency`,`sys`.`format_time`(`performance_schema`.`events_stages_summary_by_user_by_event_name`.`AVG_TIMER_WAIT`) AS `avg_latency` from `performance_schema`.`events_stages_summary_by_user_by_event_name` where (`performance_schema`.`events_stages_summary_by_user_by_event_name`.`SUM_TIMER_WAIT` <> 0) order by if(isnull(`performance_schema`.`events_stages_summary_by_user_by_event_name`.`USER`),\'background\',`performance_schema`.`events_stages_summary_by_user_by_event_name`.`USER`),`performance_schema`.`events_stages_summary_by_user_by_event_name`.`SUM_TIMER_WAIT` desc +md5=921d12c21bf3cde11e6224b3719e1c57 +updatable=1 +algorithm=2 +definer_user=mysql.sys +definer_host=localhost +suid=0 +with_check_option=0 +timestamp=2018-07-20 01:51:25 +create-version=1 +source=SELECT IF(user IS NULL, \'background\', user) AS user, event_name, count_star AS total, sys.format_time(sum_timer_wait) AS total_latency, sys.format_time(avg_timer_wait) AS avg_latency FROM performance_schema.events_stages_summary_by_user_by_event_name WHERE sum_timer_wait != 0 ORDER BY user, sum_timer_wait DESC +client_cs_name=utf8 +connection_cl_name=utf8_general_ci +view_body_utf8=select if(isnull(`performance_schema`.`events_stages_summary_by_user_by_event_name`.`USER`),\'background\',`performance_schema`.`events_stages_summary_by_user_by_event_name`.`USER`) AS `user`,`performance_schema`.`events_stages_summary_by_user_by_event_name`.`EVENT_NAME` AS `event_name`,`performance_schema`.`events_stages_summary_by_user_by_event_name`.`COUNT_STAR` AS `total`,`sys`.`format_time`(`performance_schema`.`events_stages_summary_by_user_by_event_name`.`SUM_TIMER_WAIT`) AS `total_latency`,`sys`.`format_time`(`performance_schema`.`events_stages_summary_by_user_by_event_name`.`AVG_TIMER_WAIT`) AS `avg_latency` from `performance_schema`.`events_stages_summary_by_user_by_event_name` where (`performance_schema`.`events_stages_summary_by_user_by_event_name`.`SUM_TIMER_WAIT` <> 0) order by if(isnull(`performance_schema`.`events_stages_summary_by_user_by_event_name`.`USER`),\'background\',`performance_schema`.`events_stages_summary_by_user_by_event_name`.`USER`),`performance_schema`.`events_stages_summary_by_user_by_event_name`.`SUM_TIMER_WAIT` desc diff --git a/zbx_env/var/lib/mysql/sys/user_summary_by_statement_latency.frm b/zbx_env/var/lib/mysql/sys/user_summary_by_statement_latency.frm new file mode 100644 index 000000000..38df2b8e5 --- /dev/null +++ b/zbx_env/var/lib/mysql/sys/user_summary_by_statement_latency.frm @@ -0,0 +1,15 @@ +TYPE=VIEW +query=select if(isnull(`performance_schema`.`events_statements_summary_by_user_by_event_name`.`USER`),\'background\',`performance_schema`.`events_statements_summary_by_user_by_event_name`.`USER`) AS `user`,sum(`performance_schema`.`events_statements_summary_by_user_by_event_name`.`COUNT_STAR`) AS `total`,`sys`.`format_time`(sum(`performance_schema`.`events_statements_summary_by_user_by_event_name`.`SUM_TIMER_WAIT`)) AS `total_latency`,`sys`.`format_time`(sum(`performance_schema`.`events_statements_summary_by_user_by_event_name`.`MAX_TIMER_WAIT`)) AS `max_latency`,`sys`.`format_time`(sum(`performance_schema`.`events_statements_summary_by_user_by_event_name`.`SUM_LOCK_TIME`)) AS `lock_latency`,sum(`performance_schema`.`events_statements_summary_by_user_by_event_name`.`SUM_ROWS_SENT`) AS `rows_sent`,sum(`performance_schema`.`events_statements_summary_by_user_by_event_name`.`SUM_ROWS_EXAMINED`) AS `rows_examined`,sum(`performance_schema`.`events_statements_summary_by_user_by_event_name`.`SUM_ROWS_AFFECTED`) AS `rows_affected`,(sum(`performance_schema`.`events_statements_summary_by_user_by_event_name`.`SUM_NO_INDEX_USED`) + sum(`performance_schema`.`events_statements_summary_by_user_by_event_name`.`SUM_NO_GOOD_INDEX_USED`)) AS `full_scans` from `performance_schema`.`events_statements_summary_by_user_by_event_name` group by if(isnull(`performance_schema`.`events_statements_summary_by_user_by_event_name`.`USER`),\'background\',`performance_schema`.`events_statements_summary_by_user_by_event_name`.`USER`) order by sum(`performance_schema`.`events_statements_summary_by_user_by_event_name`.`SUM_TIMER_WAIT`) desc +md5=64c0623e7a68382503fd211a4887fc40 +updatable=0 +algorithm=1 +definer_user=mysql.sys +definer_host=localhost +suid=0 +with_check_option=0 +timestamp=2018-07-20 01:51:25 +create-version=1 +source=SELECT IF(user IS NULL, \'background\', user) AS user, SUM(count_star) AS total, sys.format_time(SUM(sum_timer_wait)) AS total_latency, sys.format_time(SUM(max_timer_wait)) AS max_latency, sys.format_time(SUM(sum_lock_time)) AS lock_latency, SUM(sum_rows_sent) AS rows_sent, SUM(sum_rows_examined) AS rows_examined, SUM(sum_rows_affected) AS rows_affected, SUM(sum_no_index_used) + SUM(sum_no_good_index_used) AS full_scans FROM performance_schema.events_statements_summary_by_user_by_event_name GROUP BY IF(user IS NULL, \'background\', user) ORDER BY SUM(sum_timer_wait) DESC +client_cs_name=utf8 +connection_cl_name=utf8_general_ci +view_body_utf8=select if(isnull(`performance_schema`.`events_statements_summary_by_user_by_event_name`.`USER`),\'background\',`performance_schema`.`events_statements_summary_by_user_by_event_name`.`USER`) AS `user`,sum(`performance_schema`.`events_statements_summary_by_user_by_event_name`.`COUNT_STAR`) AS `total`,`sys`.`format_time`(sum(`performance_schema`.`events_statements_summary_by_user_by_event_name`.`SUM_TIMER_WAIT`)) AS `total_latency`,`sys`.`format_time`(sum(`performance_schema`.`events_statements_summary_by_user_by_event_name`.`MAX_TIMER_WAIT`)) AS `max_latency`,`sys`.`format_time`(sum(`performance_schema`.`events_statements_summary_by_user_by_event_name`.`SUM_LOCK_TIME`)) AS `lock_latency`,sum(`performance_schema`.`events_statements_summary_by_user_by_event_name`.`SUM_ROWS_SENT`) AS `rows_sent`,sum(`performance_schema`.`events_statements_summary_by_user_by_event_name`.`SUM_ROWS_EXAMINED`) AS `rows_examined`,sum(`performance_schema`.`events_statements_summary_by_user_by_event_name`.`SUM_ROWS_AFFECTED`) AS `rows_affected`,(sum(`performance_schema`.`events_statements_summary_by_user_by_event_name`.`SUM_NO_INDEX_USED`) + sum(`performance_schema`.`events_statements_summary_by_user_by_event_name`.`SUM_NO_GOOD_INDEX_USED`)) AS `full_scans` from `performance_schema`.`events_statements_summary_by_user_by_event_name` group by if(isnull(`performance_schema`.`events_statements_summary_by_user_by_event_name`.`USER`),\'background\',`performance_schema`.`events_statements_summary_by_user_by_event_name`.`USER`) order by sum(`performance_schema`.`events_statements_summary_by_user_by_event_name`.`SUM_TIMER_WAIT`) desc diff --git a/zbx_env/var/lib/mysql/sys/user_summary_by_statement_type.frm b/zbx_env/var/lib/mysql/sys/user_summary_by_statement_type.frm new file mode 100644 index 000000000..780d028f0 --- /dev/null +++ b/zbx_env/var/lib/mysql/sys/user_summary_by_statement_type.frm @@ -0,0 +1,15 @@ +TYPE=VIEW +query=select if(isnull(`performance_schema`.`events_statements_summary_by_user_by_event_name`.`USER`),\'background\',`performance_schema`.`events_statements_summary_by_user_by_event_name`.`USER`) AS `user`,substring_index(`performance_schema`.`events_statements_summary_by_user_by_event_name`.`EVENT_NAME`,\'/\',-(1)) AS `statement`,`performance_schema`.`events_statements_summary_by_user_by_event_name`.`COUNT_STAR` AS `total`,`sys`.`format_time`(`performance_schema`.`events_statements_summary_by_user_by_event_name`.`SUM_TIMER_WAIT`) AS `total_latency`,`sys`.`format_time`(`performance_schema`.`events_statements_summary_by_user_by_event_name`.`MAX_TIMER_WAIT`) AS `max_latency`,`sys`.`format_time`(`performance_schema`.`events_statements_summary_by_user_by_event_name`.`SUM_LOCK_TIME`) AS `lock_latency`,`performance_schema`.`events_statements_summary_by_user_by_event_name`.`SUM_ROWS_SENT` AS `rows_sent`,`performance_schema`.`events_statements_summary_by_user_by_event_name`.`SUM_ROWS_EXAMINED` AS `rows_examined`,`performance_schema`.`events_statements_summary_by_user_by_event_name`.`SUM_ROWS_AFFECTED` AS `rows_affected`,(`performance_schema`.`events_statements_summary_by_user_by_event_name`.`SUM_NO_INDEX_USED` + `performance_schema`.`events_statements_summary_by_user_by_event_name`.`SUM_NO_GOOD_INDEX_USED`) AS `full_scans` from `performance_schema`.`events_statements_summary_by_user_by_event_name` where (`performance_schema`.`events_statements_summary_by_user_by_event_name`.`SUM_TIMER_WAIT` <> 0) order by if(isnull(`performance_schema`.`events_statements_summary_by_user_by_event_name`.`USER`),\'background\',`performance_schema`.`events_statements_summary_by_user_by_event_name`.`USER`),`performance_schema`.`events_statements_summary_by_user_by_event_name`.`SUM_TIMER_WAIT` desc +md5=b6c16365a054d86720294f7524560282 +updatable=1 +algorithm=2 +definer_user=mysql.sys +definer_host=localhost +suid=0 +with_check_option=0 +timestamp=2018-07-20 01:51:25 +create-version=1 +source=SELECT IF(user IS NULL, \'background\', user) AS user, SUBSTRING_INDEX(event_name, \'/\', -1) AS statement, count_star AS total, sys.format_time(sum_timer_wait) AS total_latency, sys.format_time(max_timer_wait) AS max_latency, sys.format_time(sum_lock_time) AS lock_latency, sum_rows_sent AS rows_sent, sum_rows_examined AS rows_examined, sum_rows_affected AS rows_affected, sum_no_index_used + sum_no_good_index_used AS full_scans FROM performance_schema.events_statements_summary_by_user_by_event_name WHERE sum_timer_wait != 0 ORDER BY user, sum_timer_wait DESC +client_cs_name=utf8 +connection_cl_name=utf8_general_ci +view_body_utf8=select if(isnull(`performance_schema`.`events_statements_summary_by_user_by_event_name`.`USER`),\'background\',`performance_schema`.`events_statements_summary_by_user_by_event_name`.`USER`) AS `user`,substring_index(`performance_schema`.`events_statements_summary_by_user_by_event_name`.`EVENT_NAME`,\'/\',-(1)) AS `statement`,`performance_schema`.`events_statements_summary_by_user_by_event_name`.`COUNT_STAR` AS `total`,`sys`.`format_time`(`performance_schema`.`events_statements_summary_by_user_by_event_name`.`SUM_TIMER_WAIT`) AS `total_latency`,`sys`.`format_time`(`performance_schema`.`events_statements_summary_by_user_by_event_name`.`MAX_TIMER_WAIT`) AS `max_latency`,`sys`.`format_time`(`performance_schema`.`events_statements_summary_by_user_by_event_name`.`SUM_LOCK_TIME`) AS `lock_latency`,`performance_schema`.`events_statements_summary_by_user_by_event_name`.`SUM_ROWS_SENT` AS `rows_sent`,`performance_schema`.`events_statements_summary_by_user_by_event_name`.`SUM_ROWS_EXAMINED` AS `rows_examined`,`performance_schema`.`events_statements_summary_by_user_by_event_name`.`SUM_ROWS_AFFECTED` AS `rows_affected`,(`performance_schema`.`events_statements_summary_by_user_by_event_name`.`SUM_NO_INDEX_USED` + `performance_schema`.`events_statements_summary_by_user_by_event_name`.`SUM_NO_GOOD_INDEX_USED`) AS `full_scans` from `performance_schema`.`events_statements_summary_by_user_by_event_name` where (`performance_schema`.`events_statements_summary_by_user_by_event_name`.`SUM_TIMER_WAIT` <> 0) order by if(isnull(`performance_schema`.`events_statements_summary_by_user_by_event_name`.`USER`),\'background\',`performance_schema`.`events_statements_summary_by_user_by_event_name`.`USER`),`performance_schema`.`events_statements_summary_by_user_by_event_name`.`SUM_TIMER_WAIT` desc diff --git a/zbx_env/var/lib/mysql/sys/version.frm b/zbx_env/var/lib/mysql/sys/version.frm new file mode 100644 index 000000000..026d1363c --- /dev/null +++ b/zbx_env/var/lib/mysql/sys/version.frm @@ -0,0 +1,15 @@ +TYPE=VIEW +query=select \'1.5.1\' AS `sys_version`,version() AS `mysql_version` +md5=91a844b992f5531ded209bb44c10bae7 +updatable=0 +algorithm=0 +definer_user=mysql.sys +definer_host=localhost +suid=0 +with_check_option=0 +timestamp=2018-07-20 01:51:25 +create-version=1 +source=SELECT \'1.5.1\' AS sys_version, version() AS mysql_version +client_cs_name=utf8 +connection_cl_name=utf8_general_ci +view_body_utf8=select \'1.5.1\' AS `sys_version`,version() AS `mysql_version` diff --git a/zbx_env/var/lib/mysql/sys/wait_classes_global_by_avg_latency.frm b/zbx_env/var/lib/mysql/sys/wait_classes_global_by_avg_latency.frm new file mode 100644 index 000000000..271208268 --- /dev/null +++ b/zbx_env/var/lib/mysql/sys/wait_classes_global_by_avg_latency.frm @@ -0,0 +1,15 @@ +TYPE=VIEW +query=select substring_index(`performance_schema`.`events_waits_summary_global_by_event_name`.`EVENT_NAME`,\'/\',3) AS `event_class`,sum(`performance_schema`.`events_waits_summary_global_by_event_name`.`COUNT_STAR`) AS `total`,`sys`.`format_time`(cast(sum(`performance_schema`.`events_waits_summary_global_by_event_name`.`SUM_TIMER_WAIT`) as unsigned)) AS `total_latency`,`sys`.`format_time`(min(`performance_schema`.`events_waits_summary_global_by_event_name`.`MIN_TIMER_WAIT`)) AS `min_latency`,`sys`.`format_time`(ifnull((sum(`performance_schema`.`events_waits_summary_global_by_event_name`.`SUM_TIMER_WAIT`) / nullif(sum(`performance_schema`.`events_waits_summary_global_by_event_name`.`COUNT_STAR`),0)),0)) AS `avg_latency`,`sys`.`format_time`(cast(max(`performance_schema`.`events_waits_summary_global_by_event_name`.`MAX_TIMER_WAIT`) as unsigned)) AS `max_latency` from `performance_schema`.`events_waits_summary_global_by_event_name` where ((`performance_schema`.`events_waits_summary_global_by_event_name`.`SUM_TIMER_WAIT` > 0) and (`performance_schema`.`events_waits_summary_global_by_event_name`.`EVENT_NAME` <> \'idle\')) group by `event_class` order by ifnull((sum(`performance_schema`.`events_waits_summary_global_by_event_name`.`SUM_TIMER_WAIT`) / nullif(sum(`performance_schema`.`events_waits_summary_global_by_event_name`.`COUNT_STAR`),0)),0) desc +md5=e15c3f083ad054b3c5e6b11c8d5e96df +updatable=0 +algorithm=1 +definer_user=mysql.sys +definer_host=localhost +suid=0 +with_check_option=0 +timestamp=2018-07-20 01:51:25 +create-version=1 +source=SELECT SUBSTRING_INDEX(event_name,\'/\', 3) AS event_class, SUM(COUNT_STAR) AS total, sys.format_time(CAST(SUM(sum_timer_wait) AS UNSIGNED)) AS total_latency, sys.format_time(MIN(min_timer_wait)) AS min_latency, sys.format_time(IFNULL(SUM(sum_timer_wait) / NULLIF(SUM(COUNT_STAR), 0), 0)) AS avg_latency, sys.format_time(CAST(MAX(max_timer_wait) AS UNSIGNED)) AS max_latency FROM performance_schema.events_waits_summary_global_by_event_name WHERE sum_timer_wait > 0 AND event_name != \'idle\' GROUP BY event_class ORDER BY IFNULL(SUM(sum_timer_wait) / NULLIF(SUM(COUNT_STAR), 0), 0) DESC +client_cs_name=utf8 +connection_cl_name=utf8_general_ci +view_body_utf8=select substring_index(`performance_schema`.`events_waits_summary_global_by_event_name`.`EVENT_NAME`,\'/\',3) AS `event_class`,sum(`performance_schema`.`events_waits_summary_global_by_event_name`.`COUNT_STAR`) AS `total`,`sys`.`format_time`(cast(sum(`performance_schema`.`events_waits_summary_global_by_event_name`.`SUM_TIMER_WAIT`) as unsigned)) AS `total_latency`,`sys`.`format_time`(min(`performance_schema`.`events_waits_summary_global_by_event_name`.`MIN_TIMER_WAIT`)) AS `min_latency`,`sys`.`format_time`(ifnull((sum(`performance_schema`.`events_waits_summary_global_by_event_name`.`SUM_TIMER_WAIT`) / nullif(sum(`performance_schema`.`events_waits_summary_global_by_event_name`.`COUNT_STAR`),0)),0)) AS `avg_latency`,`sys`.`format_time`(cast(max(`performance_schema`.`events_waits_summary_global_by_event_name`.`MAX_TIMER_WAIT`) as unsigned)) AS `max_latency` from `performance_schema`.`events_waits_summary_global_by_event_name` where ((`performance_schema`.`events_waits_summary_global_by_event_name`.`SUM_TIMER_WAIT` > 0) and (`performance_schema`.`events_waits_summary_global_by_event_name`.`EVENT_NAME` <> \'idle\')) group by `event_class` order by ifnull((sum(`performance_schema`.`events_waits_summary_global_by_event_name`.`SUM_TIMER_WAIT`) / nullif(sum(`performance_schema`.`events_waits_summary_global_by_event_name`.`COUNT_STAR`),0)),0) desc diff --git a/zbx_env/var/lib/mysql/sys/wait_classes_global_by_latency.frm b/zbx_env/var/lib/mysql/sys/wait_classes_global_by_latency.frm new file mode 100644 index 000000000..017825691 --- /dev/null +++ b/zbx_env/var/lib/mysql/sys/wait_classes_global_by_latency.frm @@ -0,0 +1,15 @@ +TYPE=VIEW +query=select substring_index(`performance_schema`.`events_waits_summary_global_by_event_name`.`EVENT_NAME`,\'/\',3) AS `event_class`,sum(`performance_schema`.`events_waits_summary_global_by_event_name`.`COUNT_STAR`) AS `total`,`sys`.`format_time`(sum(`performance_schema`.`events_waits_summary_global_by_event_name`.`SUM_TIMER_WAIT`)) AS `total_latency`,`sys`.`format_time`(min(`performance_schema`.`events_waits_summary_global_by_event_name`.`MIN_TIMER_WAIT`)) AS `min_latency`,`sys`.`format_time`(ifnull((sum(`performance_schema`.`events_waits_summary_global_by_event_name`.`SUM_TIMER_WAIT`) / nullif(sum(`performance_schema`.`events_waits_summary_global_by_event_name`.`COUNT_STAR`),0)),0)) AS `avg_latency`,`sys`.`format_time`(max(`performance_schema`.`events_waits_summary_global_by_event_name`.`MAX_TIMER_WAIT`)) AS `max_latency` from `performance_schema`.`events_waits_summary_global_by_event_name` where ((`performance_schema`.`events_waits_summary_global_by_event_name`.`SUM_TIMER_WAIT` > 0) and (`performance_schema`.`events_waits_summary_global_by_event_name`.`EVENT_NAME` <> \'idle\')) group by substring_index(`performance_schema`.`events_waits_summary_global_by_event_name`.`EVENT_NAME`,\'/\',3) order by sum(`performance_schema`.`events_waits_summary_global_by_event_name`.`SUM_TIMER_WAIT`) desc +md5=63e3f027629b1f5cc8803fe075d5b87a +updatable=0 +algorithm=1 +definer_user=mysql.sys +definer_host=localhost +suid=0 +with_check_option=0 +timestamp=2018-07-20 01:51:25 +create-version=1 +source=SELECT SUBSTRING_INDEX(event_name,\'/\', 3) AS event_class, SUM(COUNT_STAR) AS total, sys.format_time(SUM(sum_timer_wait)) AS total_latency, sys.format_time(MIN(min_timer_wait)) min_latency, sys.format_time(IFNULL(SUM(sum_timer_wait) / NULLIF(SUM(COUNT_STAR), 0), 0)) AS avg_latency, sys.format_time(MAX(max_timer_wait)) AS max_latency FROM performance_schema.events_waits_summary_global_by_event_name WHERE sum_timer_wait > 0 AND event_name != \'idle\' GROUP BY SUBSTRING_INDEX(event_name,\'/\', 3) ORDER BY SUM(sum_timer_wait) DESC +client_cs_name=utf8 +connection_cl_name=utf8_general_ci +view_body_utf8=select substring_index(`performance_schema`.`events_waits_summary_global_by_event_name`.`EVENT_NAME`,\'/\',3) AS `event_class`,sum(`performance_schema`.`events_waits_summary_global_by_event_name`.`COUNT_STAR`) AS `total`,`sys`.`format_time`(sum(`performance_schema`.`events_waits_summary_global_by_event_name`.`SUM_TIMER_WAIT`)) AS `total_latency`,`sys`.`format_time`(min(`performance_schema`.`events_waits_summary_global_by_event_name`.`MIN_TIMER_WAIT`)) AS `min_latency`,`sys`.`format_time`(ifnull((sum(`performance_schema`.`events_waits_summary_global_by_event_name`.`SUM_TIMER_WAIT`) / nullif(sum(`performance_schema`.`events_waits_summary_global_by_event_name`.`COUNT_STAR`),0)),0)) AS `avg_latency`,`sys`.`format_time`(max(`performance_schema`.`events_waits_summary_global_by_event_name`.`MAX_TIMER_WAIT`)) AS `max_latency` from `performance_schema`.`events_waits_summary_global_by_event_name` where ((`performance_schema`.`events_waits_summary_global_by_event_name`.`SUM_TIMER_WAIT` > 0) and (`performance_schema`.`events_waits_summary_global_by_event_name`.`EVENT_NAME` <> \'idle\')) group by substring_index(`performance_schema`.`events_waits_summary_global_by_event_name`.`EVENT_NAME`,\'/\',3) order by sum(`performance_schema`.`events_waits_summary_global_by_event_name`.`SUM_TIMER_WAIT`) desc diff --git a/zbx_env/var/lib/mysql/sys/waits_by_host_by_latency.frm b/zbx_env/var/lib/mysql/sys/waits_by_host_by_latency.frm new file mode 100644 index 000000000..ac311803a --- /dev/null +++ b/zbx_env/var/lib/mysql/sys/waits_by_host_by_latency.frm @@ -0,0 +1,15 @@ +TYPE=VIEW +query=select if(isnull(`performance_schema`.`events_waits_summary_by_host_by_event_name`.`HOST`),\'background\',`performance_schema`.`events_waits_summary_by_host_by_event_name`.`HOST`) AS `host`,`performance_schema`.`events_waits_summary_by_host_by_event_name`.`EVENT_NAME` AS `event`,`performance_schema`.`events_waits_summary_by_host_by_event_name`.`COUNT_STAR` AS `total`,`sys`.`format_time`(`performance_schema`.`events_waits_summary_by_host_by_event_name`.`SUM_TIMER_WAIT`) AS `total_latency`,`sys`.`format_time`(`performance_schema`.`events_waits_summary_by_host_by_event_name`.`AVG_TIMER_WAIT`) AS `avg_latency`,`sys`.`format_time`(`performance_schema`.`events_waits_summary_by_host_by_event_name`.`MAX_TIMER_WAIT`) AS `max_latency` from `performance_schema`.`events_waits_summary_by_host_by_event_name` where ((`performance_schema`.`events_waits_summary_by_host_by_event_name`.`EVENT_NAME` <> \'idle\') and (`performance_schema`.`events_waits_summary_by_host_by_event_name`.`SUM_TIMER_WAIT` > 0)) order by if(isnull(`performance_schema`.`events_waits_summary_by_host_by_event_name`.`HOST`),\'background\',`performance_schema`.`events_waits_summary_by_host_by_event_name`.`HOST`),`performance_schema`.`events_waits_summary_by_host_by_event_name`.`SUM_TIMER_WAIT` desc +md5=6a2ef7987b3d54b9ee36478de51f86c6 +updatable=1 +algorithm=2 +definer_user=mysql.sys +definer_host=localhost +suid=0 +with_check_option=0 +timestamp=2018-07-20 01:51:25 +create-version=1 +source=SELECT IF(host IS NULL, \'background\', host) AS host, event_name AS event, count_star AS total, sys.format_time(sum_timer_wait) AS total_latency, sys.format_time(avg_timer_wait) AS avg_latency, sys.format_time(max_timer_wait) AS max_latency FROM performance_schema.events_waits_summary_by_host_by_event_name WHERE event_name != \'idle\' AND sum_timer_wait > 0 ORDER BY host, sum_timer_wait DESC +client_cs_name=utf8 +connection_cl_name=utf8_general_ci +view_body_utf8=select if(isnull(`performance_schema`.`events_waits_summary_by_host_by_event_name`.`HOST`),\'background\',`performance_schema`.`events_waits_summary_by_host_by_event_name`.`HOST`) AS `host`,`performance_schema`.`events_waits_summary_by_host_by_event_name`.`EVENT_NAME` AS `event`,`performance_schema`.`events_waits_summary_by_host_by_event_name`.`COUNT_STAR` AS `total`,`sys`.`format_time`(`performance_schema`.`events_waits_summary_by_host_by_event_name`.`SUM_TIMER_WAIT`) AS `total_latency`,`sys`.`format_time`(`performance_schema`.`events_waits_summary_by_host_by_event_name`.`AVG_TIMER_WAIT`) AS `avg_latency`,`sys`.`format_time`(`performance_schema`.`events_waits_summary_by_host_by_event_name`.`MAX_TIMER_WAIT`) AS `max_latency` from `performance_schema`.`events_waits_summary_by_host_by_event_name` where ((`performance_schema`.`events_waits_summary_by_host_by_event_name`.`EVENT_NAME` <> \'idle\') and (`performance_schema`.`events_waits_summary_by_host_by_event_name`.`SUM_TIMER_WAIT` > 0)) order by if(isnull(`performance_schema`.`events_waits_summary_by_host_by_event_name`.`HOST`),\'background\',`performance_schema`.`events_waits_summary_by_host_by_event_name`.`HOST`),`performance_schema`.`events_waits_summary_by_host_by_event_name`.`SUM_TIMER_WAIT` desc diff --git a/zbx_env/var/lib/mysql/sys/waits_by_user_by_latency.frm b/zbx_env/var/lib/mysql/sys/waits_by_user_by_latency.frm new file mode 100644 index 000000000..914e79f57 --- /dev/null +++ b/zbx_env/var/lib/mysql/sys/waits_by_user_by_latency.frm @@ -0,0 +1,15 @@ +TYPE=VIEW +query=select if(isnull(`performance_schema`.`events_waits_summary_by_user_by_event_name`.`USER`),\'background\',`performance_schema`.`events_waits_summary_by_user_by_event_name`.`USER`) AS `user`,`performance_schema`.`events_waits_summary_by_user_by_event_name`.`EVENT_NAME` AS `event`,`performance_schema`.`events_waits_summary_by_user_by_event_name`.`COUNT_STAR` AS `total`,`sys`.`format_time`(`performance_schema`.`events_waits_summary_by_user_by_event_name`.`SUM_TIMER_WAIT`) AS `total_latency`,`sys`.`format_time`(`performance_schema`.`events_waits_summary_by_user_by_event_name`.`AVG_TIMER_WAIT`) AS `avg_latency`,`sys`.`format_time`(`performance_schema`.`events_waits_summary_by_user_by_event_name`.`MAX_TIMER_WAIT`) AS `max_latency` from `performance_schema`.`events_waits_summary_by_user_by_event_name` where ((`performance_schema`.`events_waits_summary_by_user_by_event_name`.`EVENT_NAME` <> \'idle\') and (`performance_schema`.`events_waits_summary_by_user_by_event_name`.`USER` is not null) and (`performance_schema`.`events_waits_summary_by_user_by_event_name`.`SUM_TIMER_WAIT` > 0)) order by if(isnull(`performance_schema`.`events_waits_summary_by_user_by_event_name`.`USER`),\'background\',`performance_schema`.`events_waits_summary_by_user_by_event_name`.`USER`),`performance_schema`.`events_waits_summary_by_user_by_event_name`.`SUM_TIMER_WAIT` desc +md5=75c47169d97af0ea414a9237f9d26ed2 +updatable=1 +algorithm=2 +definer_user=mysql.sys +definer_host=localhost +suid=0 +with_check_option=0 +timestamp=2018-07-20 01:51:25 +create-version=1 +source=SELECT IF(user IS NULL, \'background\', user) AS user, event_name AS event, count_star AS total, sys.format_time(sum_timer_wait) AS total_latency, sys.format_time(avg_timer_wait) AS avg_latency, sys.format_time(max_timer_wait) AS max_latency FROM performance_schema.events_waits_summary_by_user_by_event_name WHERE event_name != \'idle\' AND user IS NOT NULL AND sum_timer_wait > 0 ORDER BY user, sum_timer_wait DESC +client_cs_name=utf8 +connection_cl_name=utf8_general_ci +view_body_utf8=select if(isnull(`performance_schema`.`events_waits_summary_by_user_by_event_name`.`USER`),\'background\',`performance_schema`.`events_waits_summary_by_user_by_event_name`.`USER`) AS `user`,`performance_schema`.`events_waits_summary_by_user_by_event_name`.`EVENT_NAME` AS `event`,`performance_schema`.`events_waits_summary_by_user_by_event_name`.`COUNT_STAR` AS `total`,`sys`.`format_time`(`performance_schema`.`events_waits_summary_by_user_by_event_name`.`SUM_TIMER_WAIT`) AS `total_latency`,`sys`.`format_time`(`performance_schema`.`events_waits_summary_by_user_by_event_name`.`AVG_TIMER_WAIT`) AS `avg_latency`,`sys`.`format_time`(`performance_schema`.`events_waits_summary_by_user_by_event_name`.`MAX_TIMER_WAIT`) AS `max_latency` from `performance_schema`.`events_waits_summary_by_user_by_event_name` where ((`performance_schema`.`events_waits_summary_by_user_by_event_name`.`EVENT_NAME` <> \'idle\') and (`performance_schema`.`events_waits_summary_by_user_by_event_name`.`USER` is not null) and (`performance_schema`.`events_waits_summary_by_user_by_event_name`.`SUM_TIMER_WAIT` > 0)) order by if(isnull(`performance_schema`.`events_waits_summary_by_user_by_event_name`.`USER`),\'background\',`performance_schema`.`events_waits_summary_by_user_by_event_name`.`USER`),`performance_schema`.`events_waits_summary_by_user_by_event_name`.`SUM_TIMER_WAIT` desc diff --git a/zbx_env/var/lib/mysql/sys/waits_global_by_latency.frm b/zbx_env/var/lib/mysql/sys/waits_global_by_latency.frm new file mode 100644 index 000000000..f6396e4a2 --- /dev/null +++ b/zbx_env/var/lib/mysql/sys/waits_global_by_latency.frm @@ -0,0 +1,15 @@ +TYPE=VIEW +query=select `performance_schema`.`events_waits_summary_global_by_event_name`.`EVENT_NAME` AS `events`,`performance_schema`.`events_waits_summary_global_by_event_name`.`COUNT_STAR` AS `total`,`sys`.`format_time`(`performance_schema`.`events_waits_summary_global_by_event_name`.`SUM_TIMER_WAIT`) AS `total_latency`,`sys`.`format_time`(`performance_schema`.`events_waits_summary_global_by_event_name`.`AVG_TIMER_WAIT`) AS `avg_latency`,`sys`.`format_time`(`performance_schema`.`events_waits_summary_global_by_event_name`.`MAX_TIMER_WAIT`) AS `max_latency` from `performance_schema`.`events_waits_summary_global_by_event_name` where ((`performance_schema`.`events_waits_summary_global_by_event_name`.`EVENT_NAME` <> \'idle\') and (`performance_schema`.`events_waits_summary_global_by_event_name`.`SUM_TIMER_WAIT` > 0)) order by `performance_schema`.`events_waits_summary_global_by_event_name`.`SUM_TIMER_WAIT` desc +md5=1829bdc0b005dd5de530fa44c0430f42 +updatable=1 +algorithm=2 +definer_user=mysql.sys +definer_host=localhost +suid=0 +with_check_option=0 +timestamp=2018-07-20 01:51:25 +create-version=1 +source=SELECT event_name AS event, count_star AS total, sys.format_time(sum_timer_wait) AS total_latency, sys.format_time(avg_timer_wait) AS avg_latency, sys.format_time(max_timer_wait) AS max_latency FROM performance_schema.events_waits_summary_global_by_event_name WHERE event_name != \'idle\' AND sum_timer_wait > 0 ORDER BY sum_timer_wait DESC +client_cs_name=utf8 +connection_cl_name=utf8_general_ci +view_body_utf8=select `performance_schema`.`events_waits_summary_global_by_event_name`.`EVENT_NAME` AS `events`,`performance_schema`.`events_waits_summary_global_by_event_name`.`COUNT_STAR` AS `total`,`sys`.`format_time`(`performance_schema`.`events_waits_summary_global_by_event_name`.`SUM_TIMER_WAIT`) AS `total_latency`,`sys`.`format_time`(`performance_schema`.`events_waits_summary_global_by_event_name`.`AVG_TIMER_WAIT`) AS `avg_latency`,`sys`.`format_time`(`performance_schema`.`events_waits_summary_global_by_event_name`.`MAX_TIMER_WAIT`) AS `max_latency` from `performance_schema`.`events_waits_summary_global_by_event_name` where ((`performance_schema`.`events_waits_summary_global_by_event_name`.`EVENT_NAME` <> \'idle\') and (`performance_schema`.`events_waits_summary_global_by_event_name`.`SUM_TIMER_WAIT` > 0)) order by `performance_schema`.`events_waits_summary_global_by_event_name`.`SUM_TIMER_WAIT` desc diff --git a/zbx_env/var/lib/mysql/sys/x@0024host_summary.frm b/zbx_env/var/lib/mysql/sys/x@0024host_summary.frm new file mode 100644 index 000000000..7931c677f --- /dev/null +++ b/zbx_env/var/lib/mysql/sys/x@0024host_summary.frm @@ -0,0 +1,15 @@ +TYPE=VIEW +query=select if(isnull(`performance_schema`.`accounts`.`HOST`),\'background\',`performance_schema`.`accounts`.`HOST`) AS `host`,sum(`stmt`.`total`) AS `statements`,sum(`stmt`.`total_latency`) AS `statement_latency`,(sum(`stmt`.`total_latency`) / sum(`stmt`.`total`)) AS `statement_avg_latency`,sum(`stmt`.`full_scans`) AS `table_scans`,sum(`io`.`ios`) AS `file_ios`,sum(`io`.`io_latency`) AS `file_io_latency`,sum(`performance_schema`.`accounts`.`CURRENT_CONNECTIONS`) AS `current_connections`,sum(`performance_schema`.`accounts`.`TOTAL_CONNECTIONS`) AS `total_connections`,count(distinct `performance_schema`.`accounts`.`USER`) AS `unique_users`,sum(`mem`.`current_allocated`) AS `current_memory`,sum(`mem`.`total_allocated`) AS `total_memory_allocated` from (((`performance_schema`.`accounts` join `sys`.`x$host_summary_by_statement_latency` `stmt` on((`performance_schema`.`accounts`.`HOST` = `stmt`.`host`))) join `sys`.`x$host_summary_by_file_io` `io` on((`performance_schema`.`accounts`.`HOST` = `io`.`host`))) join `sys`.`x$memory_by_host_by_current_bytes` `mem` on((`performance_schema`.`accounts`.`HOST` = `mem`.`host`))) group by if(isnull(`performance_schema`.`accounts`.`HOST`),\'background\',`performance_schema`.`accounts`.`HOST`) +md5=f66f55631884ccf08c40d226be32f1b0 +updatable=0 +algorithm=1 +definer_user=mysql.sys +definer_host=localhost +suid=0 +with_check_option=0 +timestamp=2018-07-20 01:51:25 +create-version=1 +source=SELECT IF(accounts.host IS NULL, \'background\', accounts.host) AS host, SUM(stmt.total) AS statements, SUM(stmt.total_latency) AS statement_latency, SUM(stmt.total_latency) / SUM(stmt.total) AS statement_avg_latency, SUM(stmt.full_scans) AS table_scans, SUM(io.ios) AS file_ios, SUM(io.io_latency) AS file_io_latency, SUM(accounts.current_connections) AS current_connections, SUM(accounts.total_connections) AS total_connections, COUNT(DISTINCT accounts.user) AS unique_users, SUM(mem.current_allocated) AS current_memory, SUM(mem.total_allocated) AS total_memory_allocated FROM performance_schema.accounts JOIN sys.x$host_summary_by_statement_latency AS stmt ON accounts.host = stmt.host JOIN sys.x$host_summary_by_file_io AS io ON accounts.host = io.host JOIN sys.x$memory_by_host_by_current_bytes mem ON accounts.host = mem.host GROUP BY IF(accounts.host IS NULL, \'background\', accounts.host) +client_cs_name=utf8 +connection_cl_name=utf8_general_ci +view_body_utf8=select if(isnull(`performance_schema`.`accounts`.`HOST`),\'background\',`performance_schema`.`accounts`.`HOST`) AS `host`,sum(`stmt`.`total`) AS `statements`,sum(`stmt`.`total_latency`) AS `statement_latency`,(sum(`stmt`.`total_latency`) / sum(`stmt`.`total`)) AS `statement_avg_latency`,sum(`stmt`.`full_scans`) AS `table_scans`,sum(`io`.`ios`) AS `file_ios`,sum(`io`.`io_latency`) AS `file_io_latency`,sum(`performance_schema`.`accounts`.`CURRENT_CONNECTIONS`) AS `current_connections`,sum(`performance_schema`.`accounts`.`TOTAL_CONNECTIONS`) AS `total_connections`,count(distinct `performance_schema`.`accounts`.`USER`) AS `unique_users`,sum(`mem`.`current_allocated`) AS `current_memory`,sum(`mem`.`total_allocated`) AS `total_memory_allocated` from (((`performance_schema`.`accounts` join `sys`.`x$host_summary_by_statement_latency` `stmt` on((`performance_schema`.`accounts`.`HOST` = `stmt`.`host`))) join `sys`.`x$host_summary_by_file_io` `io` on((`performance_schema`.`accounts`.`HOST` = `io`.`host`))) join `sys`.`x$memory_by_host_by_current_bytes` `mem` on((`performance_schema`.`accounts`.`HOST` = `mem`.`host`))) group by if(isnull(`performance_schema`.`accounts`.`HOST`),\'background\',`performance_schema`.`accounts`.`HOST`) diff --git a/zbx_env/var/lib/mysql/sys/x@0024host_summary_by_file_io.frm b/zbx_env/var/lib/mysql/sys/x@0024host_summary_by_file_io.frm new file mode 100644 index 000000000..274d62432 --- /dev/null +++ b/zbx_env/var/lib/mysql/sys/x@0024host_summary_by_file_io.frm @@ -0,0 +1,15 @@ +TYPE=VIEW +query=select if(isnull(`performance_schema`.`events_waits_summary_by_host_by_event_name`.`HOST`),\'background\',`performance_schema`.`events_waits_summary_by_host_by_event_name`.`HOST`) AS `host`,sum(`performance_schema`.`events_waits_summary_by_host_by_event_name`.`COUNT_STAR`) AS `ios`,sum(`performance_schema`.`events_waits_summary_by_host_by_event_name`.`SUM_TIMER_WAIT`) AS `io_latency` from `performance_schema`.`events_waits_summary_by_host_by_event_name` where (`performance_schema`.`events_waits_summary_by_host_by_event_name`.`EVENT_NAME` like \'wait/io/file/%\') group by if(isnull(`performance_schema`.`events_waits_summary_by_host_by_event_name`.`HOST`),\'background\',`performance_schema`.`events_waits_summary_by_host_by_event_name`.`HOST`) order by sum(`performance_schema`.`events_waits_summary_by_host_by_event_name`.`SUM_TIMER_WAIT`) desc +md5=dacbdae2dd69a150477114b88a491df1 +updatable=0 +algorithm=1 +definer_user=mysql.sys +definer_host=localhost +suid=0 +with_check_option=0 +timestamp=2018-07-20 01:51:25 +create-version=1 +source=SELECT IF(host IS NULL, \'background\', host) AS host, SUM(count_star) AS ios, SUM(sum_timer_wait) AS io_latency FROM performance_schema.events_waits_summary_by_host_by_event_name WHERE event_name LIKE \'wait/io/file/%\' GROUP BY IF(host IS NULL, \'background\', host) ORDER BY SUM(sum_timer_wait) DESC +client_cs_name=utf8 +connection_cl_name=utf8_general_ci +view_body_utf8=select if(isnull(`performance_schema`.`events_waits_summary_by_host_by_event_name`.`HOST`),\'background\',`performance_schema`.`events_waits_summary_by_host_by_event_name`.`HOST`) AS `host`,sum(`performance_schema`.`events_waits_summary_by_host_by_event_name`.`COUNT_STAR`) AS `ios`,sum(`performance_schema`.`events_waits_summary_by_host_by_event_name`.`SUM_TIMER_WAIT`) AS `io_latency` from `performance_schema`.`events_waits_summary_by_host_by_event_name` where (`performance_schema`.`events_waits_summary_by_host_by_event_name`.`EVENT_NAME` like \'wait/io/file/%\') group by if(isnull(`performance_schema`.`events_waits_summary_by_host_by_event_name`.`HOST`),\'background\',`performance_schema`.`events_waits_summary_by_host_by_event_name`.`HOST`) order by sum(`performance_schema`.`events_waits_summary_by_host_by_event_name`.`SUM_TIMER_WAIT`) desc diff --git a/zbx_env/var/lib/mysql/sys/x@0024host_summary_by_file_io_type.frm b/zbx_env/var/lib/mysql/sys/x@0024host_summary_by_file_io_type.frm new file mode 100644 index 000000000..71a6133a0 --- /dev/null +++ b/zbx_env/var/lib/mysql/sys/x@0024host_summary_by_file_io_type.frm @@ -0,0 +1,15 @@ +TYPE=VIEW +query=select if(isnull(`performance_schema`.`events_waits_summary_by_host_by_event_name`.`HOST`),\'background\',`performance_schema`.`events_waits_summary_by_host_by_event_name`.`HOST`) AS `host`,`performance_schema`.`events_waits_summary_by_host_by_event_name`.`EVENT_NAME` AS `event_name`,`performance_schema`.`events_waits_summary_by_host_by_event_name`.`COUNT_STAR` AS `total`,`performance_schema`.`events_waits_summary_by_host_by_event_name`.`SUM_TIMER_WAIT` AS `total_latency`,`performance_schema`.`events_waits_summary_by_host_by_event_name`.`MAX_TIMER_WAIT` AS `max_latency` from `performance_schema`.`events_waits_summary_by_host_by_event_name` where ((`performance_schema`.`events_waits_summary_by_host_by_event_name`.`EVENT_NAME` like \'wait/io/file%\') and (`performance_schema`.`events_waits_summary_by_host_by_event_name`.`COUNT_STAR` > 0)) order by if(isnull(`performance_schema`.`events_waits_summary_by_host_by_event_name`.`HOST`),\'background\',`performance_schema`.`events_waits_summary_by_host_by_event_name`.`HOST`),`performance_schema`.`events_waits_summary_by_host_by_event_name`.`SUM_TIMER_WAIT` desc +md5=10769ef5bc6d3c8906e4935b0c87aed6 +updatable=1 +algorithm=2 +definer_user=mysql.sys +definer_host=localhost +suid=0 +with_check_option=0 +timestamp=2018-07-20 01:51:25 +create-version=1 +source=SELECT IF(host IS NULL, \'background\', host) AS host, event_name, count_star AS total, sum_timer_wait AS total_latency, max_timer_wait AS max_latency FROM performance_schema.events_waits_summary_by_host_by_event_name WHERE event_name LIKE \'wait/io/file%\' AND count_star > 0 ORDER BY IF(host IS NULL, \'background\', host), sum_timer_wait DESC +client_cs_name=utf8 +connection_cl_name=utf8_general_ci +view_body_utf8=select if(isnull(`performance_schema`.`events_waits_summary_by_host_by_event_name`.`HOST`),\'background\',`performance_schema`.`events_waits_summary_by_host_by_event_name`.`HOST`) AS `host`,`performance_schema`.`events_waits_summary_by_host_by_event_name`.`EVENT_NAME` AS `event_name`,`performance_schema`.`events_waits_summary_by_host_by_event_name`.`COUNT_STAR` AS `total`,`performance_schema`.`events_waits_summary_by_host_by_event_name`.`SUM_TIMER_WAIT` AS `total_latency`,`performance_schema`.`events_waits_summary_by_host_by_event_name`.`MAX_TIMER_WAIT` AS `max_latency` from `performance_schema`.`events_waits_summary_by_host_by_event_name` where ((`performance_schema`.`events_waits_summary_by_host_by_event_name`.`EVENT_NAME` like \'wait/io/file%\') and (`performance_schema`.`events_waits_summary_by_host_by_event_name`.`COUNT_STAR` > 0)) order by if(isnull(`performance_schema`.`events_waits_summary_by_host_by_event_name`.`HOST`),\'background\',`performance_schema`.`events_waits_summary_by_host_by_event_name`.`HOST`),`performance_schema`.`events_waits_summary_by_host_by_event_name`.`SUM_TIMER_WAIT` desc diff --git a/zbx_env/var/lib/mysql/sys/x@0024host_summary_by_stages.frm b/zbx_env/var/lib/mysql/sys/x@0024host_summary_by_stages.frm new file mode 100644 index 000000000..6671b8efa --- /dev/null +++ b/zbx_env/var/lib/mysql/sys/x@0024host_summary_by_stages.frm @@ -0,0 +1,15 @@ +TYPE=VIEW +query=select if(isnull(`performance_schema`.`events_stages_summary_by_host_by_event_name`.`HOST`),\'background\',`performance_schema`.`events_stages_summary_by_host_by_event_name`.`HOST`) AS `host`,`performance_schema`.`events_stages_summary_by_host_by_event_name`.`EVENT_NAME` AS `event_name`,`performance_schema`.`events_stages_summary_by_host_by_event_name`.`COUNT_STAR` AS `total`,`performance_schema`.`events_stages_summary_by_host_by_event_name`.`SUM_TIMER_WAIT` AS `total_latency`,`performance_schema`.`events_stages_summary_by_host_by_event_name`.`AVG_TIMER_WAIT` AS `avg_latency` from `performance_schema`.`events_stages_summary_by_host_by_event_name` where (`performance_schema`.`events_stages_summary_by_host_by_event_name`.`SUM_TIMER_WAIT` <> 0) order by if(isnull(`performance_schema`.`events_stages_summary_by_host_by_event_name`.`HOST`),\'background\',`performance_schema`.`events_stages_summary_by_host_by_event_name`.`HOST`),`performance_schema`.`events_stages_summary_by_host_by_event_name`.`SUM_TIMER_WAIT` desc +md5=5a74ad222eb619620ba31a9d39473706 +updatable=1 +algorithm=2 +definer_user=mysql.sys +definer_host=localhost +suid=0 +with_check_option=0 +timestamp=2018-07-20 01:51:25 +create-version=1 +source=SELECT IF(host IS NULL, \'background\', host) AS host, event_name, count_star AS total, sum_timer_wait AS total_latency, avg_timer_wait AS avg_latency FROM performance_schema.events_stages_summary_by_host_by_event_name WHERE sum_timer_wait != 0 ORDER BY IF(host IS NULL, \'background\', host), sum_timer_wait DESC +client_cs_name=utf8 +connection_cl_name=utf8_general_ci +view_body_utf8=select if(isnull(`performance_schema`.`events_stages_summary_by_host_by_event_name`.`HOST`),\'background\',`performance_schema`.`events_stages_summary_by_host_by_event_name`.`HOST`) AS `host`,`performance_schema`.`events_stages_summary_by_host_by_event_name`.`EVENT_NAME` AS `event_name`,`performance_schema`.`events_stages_summary_by_host_by_event_name`.`COUNT_STAR` AS `total`,`performance_schema`.`events_stages_summary_by_host_by_event_name`.`SUM_TIMER_WAIT` AS `total_latency`,`performance_schema`.`events_stages_summary_by_host_by_event_name`.`AVG_TIMER_WAIT` AS `avg_latency` from `performance_schema`.`events_stages_summary_by_host_by_event_name` where (`performance_schema`.`events_stages_summary_by_host_by_event_name`.`SUM_TIMER_WAIT` <> 0) order by if(isnull(`performance_schema`.`events_stages_summary_by_host_by_event_name`.`HOST`),\'background\',`performance_schema`.`events_stages_summary_by_host_by_event_name`.`HOST`),`performance_schema`.`events_stages_summary_by_host_by_event_name`.`SUM_TIMER_WAIT` desc diff --git a/zbx_env/var/lib/mysql/sys/x@0024host_summary_by_statement_latency.frm b/zbx_env/var/lib/mysql/sys/x@0024host_summary_by_statement_latency.frm new file mode 100644 index 000000000..bef43a0d7 --- /dev/null +++ b/zbx_env/var/lib/mysql/sys/x@0024host_summary_by_statement_latency.frm @@ -0,0 +1,15 @@ +TYPE=VIEW +query=select if(isnull(`performance_schema`.`events_statements_summary_by_host_by_event_name`.`HOST`),\'background\',`performance_schema`.`events_statements_summary_by_host_by_event_name`.`HOST`) AS `host`,sum(`performance_schema`.`events_statements_summary_by_host_by_event_name`.`COUNT_STAR`) AS `total`,sum(`performance_schema`.`events_statements_summary_by_host_by_event_name`.`SUM_TIMER_WAIT`) AS `total_latency`,max(`performance_schema`.`events_statements_summary_by_host_by_event_name`.`MAX_TIMER_WAIT`) AS `max_latency`,sum(`performance_schema`.`events_statements_summary_by_host_by_event_name`.`SUM_LOCK_TIME`) AS `lock_latency`,sum(`performance_schema`.`events_statements_summary_by_host_by_event_name`.`SUM_ROWS_SENT`) AS `rows_sent`,sum(`performance_schema`.`events_statements_summary_by_host_by_event_name`.`SUM_ROWS_EXAMINED`) AS `rows_examined`,sum(`performance_schema`.`events_statements_summary_by_host_by_event_name`.`SUM_ROWS_AFFECTED`) AS `rows_affected`,(sum(`performance_schema`.`events_statements_summary_by_host_by_event_name`.`SUM_NO_INDEX_USED`) + sum(`performance_schema`.`events_statements_summary_by_host_by_event_name`.`SUM_NO_GOOD_INDEX_USED`)) AS `full_scans` from `performance_schema`.`events_statements_summary_by_host_by_event_name` group by if(isnull(`performance_schema`.`events_statements_summary_by_host_by_event_name`.`HOST`),\'background\',`performance_schema`.`events_statements_summary_by_host_by_event_name`.`HOST`) order by sum(`performance_schema`.`events_statements_summary_by_host_by_event_name`.`SUM_TIMER_WAIT`) desc +md5=380ac7b700c16bf6f8c20c61a6bb7c40 +updatable=0 +algorithm=1 +definer_user=mysql.sys +definer_host=localhost +suid=0 +with_check_option=0 +timestamp=2018-07-20 01:51:25 +create-version=1 +source=SELECT IF(host IS NULL, \'background\', host) AS host, SUM(count_star) AS total, SUM(sum_timer_wait) AS total_latency, MAX(max_timer_wait) AS max_latency, SUM(sum_lock_time) AS lock_latency, SUM(sum_rows_sent) AS rows_sent, SUM(sum_rows_examined) AS rows_examined, SUM(sum_rows_affected) AS rows_affected, SUM(sum_no_index_used) + SUM(sum_no_good_index_used) AS full_scans FROM performance_schema.events_statements_summary_by_host_by_event_name GROUP BY IF(host IS NULL, \'background\', host) ORDER BY SUM(sum_timer_wait) DESC +client_cs_name=utf8 +connection_cl_name=utf8_general_ci +view_body_utf8=select if(isnull(`performance_schema`.`events_statements_summary_by_host_by_event_name`.`HOST`),\'background\',`performance_schema`.`events_statements_summary_by_host_by_event_name`.`HOST`) AS `host`,sum(`performance_schema`.`events_statements_summary_by_host_by_event_name`.`COUNT_STAR`) AS `total`,sum(`performance_schema`.`events_statements_summary_by_host_by_event_name`.`SUM_TIMER_WAIT`) AS `total_latency`,max(`performance_schema`.`events_statements_summary_by_host_by_event_name`.`MAX_TIMER_WAIT`) AS `max_latency`,sum(`performance_schema`.`events_statements_summary_by_host_by_event_name`.`SUM_LOCK_TIME`) AS `lock_latency`,sum(`performance_schema`.`events_statements_summary_by_host_by_event_name`.`SUM_ROWS_SENT`) AS `rows_sent`,sum(`performance_schema`.`events_statements_summary_by_host_by_event_name`.`SUM_ROWS_EXAMINED`) AS `rows_examined`,sum(`performance_schema`.`events_statements_summary_by_host_by_event_name`.`SUM_ROWS_AFFECTED`) AS `rows_affected`,(sum(`performance_schema`.`events_statements_summary_by_host_by_event_name`.`SUM_NO_INDEX_USED`) + sum(`performance_schema`.`events_statements_summary_by_host_by_event_name`.`SUM_NO_GOOD_INDEX_USED`)) AS `full_scans` from `performance_schema`.`events_statements_summary_by_host_by_event_name` group by if(isnull(`performance_schema`.`events_statements_summary_by_host_by_event_name`.`HOST`),\'background\',`performance_schema`.`events_statements_summary_by_host_by_event_name`.`HOST`) order by sum(`performance_schema`.`events_statements_summary_by_host_by_event_name`.`SUM_TIMER_WAIT`) desc diff --git a/zbx_env/var/lib/mysql/sys/x@0024host_summary_by_statement_type.frm b/zbx_env/var/lib/mysql/sys/x@0024host_summary_by_statement_type.frm new file mode 100644 index 000000000..e76c4dcd9 --- /dev/null +++ b/zbx_env/var/lib/mysql/sys/x@0024host_summary_by_statement_type.frm @@ -0,0 +1,15 @@ +TYPE=VIEW +query=select if(isnull(`performance_schema`.`events_statements_summary_by_host_by_event_name`.`HOST`),\'background\',`performance_schema`.`events_statements_summary_by_host_by_event_name`.`HOST`) AS `host`,substring_index(`performance_schema`.`events_statements_summary_by_host_by_event_name`.`EVENT_NAME`,\'/\',-(1)) AS `statement`,`performance_schema`.`events_statements_summary_by_host_by_event_name`.`COUNT_STAR` AS `total`,`performance_schema`.`events_statements_summary_by_host_by_event_name`.`SUM_TIMER_WAIT` AS `total_latency`,`performance_schema`.`events_statements_summary_by_host_by_event_name`.`MAX_TIMER_WAIT` AS `max_latency`,`performance_schema`.`events_statements_summary_by_host_by_event_name`.`SUM_LOCK_TIME` AS `lock_latency`,`performance_schema`.`events_statements_summary_by_host_by_event_name`.`SUM_ROWS_SENT` AS `rows_sent`,`performance_schema`.`events_statements_summary_by_host_by_event_name`.`SUM_ROWS_EXAMINED` AS `rows_examined`,`performance_schema`.`events_statements_summary_by_host_by_event_name`.`SUM_ROWS_AFFECTED` AS `rows_affected`,(`performance_schema`.`events_statements_summary_by_host_by_event_name`.`SUM_NO_INDEX_USED` + `performance_schema`.`events_statements_summary_by_host_by_event_name`.`SUM_NO_GOOD_INDEX_USED`) AS `full_scans` from `performance_schema`.`events_statements_summary_by_host_by_event_name` where (`performance_schema`.`events_statements_summary_by_host_by_event_name`.`SUM_TIMER_WAIT` <> 0) order by if(isnull(`performance_schema`.`events_statements_summary_by_host_by_event_name`.`HOST`),\'background\',`performance_schema`.`events_statements_summary_by_host_by_event_name`.`HOST`),`performance_schema`.`events_statements_summary_by_host_by_event_name`.`SUM_TIMER_WAIT` desc +md5=cb9b1f64455bd13b051727d7a2cd57b4 +updatable=1 +algorithm=2 +definer_user=mysql.sys +definer_host=localhost +suid=0 +with_check_option=0 +timestamp=2018-07-20 01:51:25 +create-version=1 +source=SELECT IF(host IS NULL, \'background\', host) AS host, SUBSTRING_INDEX(event_name, \'/\', -1) AS statement, count_star AS total, sum_timer_wait AS total_latency, max_timer_wait AS max_latency, sum_lock_time AS lock_latency, sum_rows_sent AS rows_sent, sum_rows_examined AS rows_examined, sum_rows_affected AS rows_affected, sum_no_index_used + sum_no_good_index_used AS full_scans FROM performance_schema.events_statements_summary_by_host_by_event_name WHERE sum_timer_wait != 0 ORDER BY IF(host IS NULL, \'background\', host), sum_timer_wait DESC +client_cs_name=utf8 +connection_cl_name=utf8_general_ci +view_body_utf8=select if(isnull(`performance_schema`.`events_statements_summary_by_host_by_event_name`.`HOST`),\'background\',`performance_schema`.`events_statements_summary_by_host_by_event_name`.`HOST`) AS `host`,substring_index(`performance_schema`.`events_statements_summary_by_host_by_event_name`.`EVENT_NAME`,\'/\',-(1)) AS `statement`,`performance_schema`.`events_statements_summary_by_host_by_event_name`.`COUNT_STAR` AS `total`,`performance_schema`.`events_statements_summary_by_host_by_event_name`.`SUM_TIMER_WAIT` AS `total_latency`,`performance_schema`.`events_statements_summary_by_host_by_event_name`.`MAX_TIMER_WAIT` AS `max_latency`,`performance_schema`.`events_statements_summary_by_host_by_event_name`.`SUM_LOCK_TIME` AS `lock_latency`,`performance_schema`.`events_statements_summary_by_host_by_event_name`.`SUM_ROWS_SENT` AS `rows_sent`,`performance_schema`.`events_statements_summary_by_host_by_event_name`.`SUM_ROWS_EXAMINED` AS `rows_examined`,`performance_schema`.`events_statements_summary_by_host_by_event_name`.`SUM_ROWS_AFFECTED` AS `rows_affected`,(`performance_schema`.`events_statements_summary_by_host_by_event_name`.`SUM_NO_INDEX_USED` + `performance_schema`.`events_statements_summary_by_host_by_event_name`.`SUM_NO_GOOD_INDEX_USED`) AS `full_scans` from `performance_schema`.`events_statements_summary_by_host_by_event_name` where (`performance_schema`.`events_statements_summary_by_host_by_event_name`.`SUM_TIMER_WAIT` <> 0) order by if(isnull(`performance_schema`.`events_statements_summary_by_host_by_event_name`.`HOST`),\'background\',`performance_schema`.`events_statements_summary_by_host_by_event_name`.`HOST`),`performance_schema`.`events_statements_summary_by_host_by_event_name`.`SUM_TIMER_WAIT` desc diff --git a/zbx_env/var/lib/mysql/sys/x@0024innodb_buffer_stats_by_schema.frm b/zbx_env/var/lib/mysql/sys/x@0024innodb_buffer_stats_by_schema.frm new file mode 100644 index 000000000..0beed245f --- /dev/null +++ b/zbx_env/var/lib/mysql/sys/x@0024innodb_buffer_stats_by_schema.frm @@ -0,0 +1,15 @@ +TYPE=VIEW +query=select if((locate(\'.\',`ibp`.`TABLE_NAME`) = 0),\'InnoDB System\',replace(substring_index(`ibp`.`TABLE_NAME`,\'.\',1),\'`\',\'\')) AS `object_schema`,sum(if((`ibp`.`COMPRESSED_SIZE` = 0),16384,`ibp`.`COMPRESSED_SIZE`)) AS `allocated`,sum(`ibp`.`DATA_SIZE`) AS `data`,count(`ibp`.`PAGE_NUMBER`) AS `pages`,count(if((`ibp`.`IS_HASHED` = \'YES\'),1,NULL)) AS `pages_hashed`,count(if((`ibp`.`IS_OLD` = \'YES\'),1,NULL)) AS `pages_old`,round(ifnull((sum(`ibp`.`NUMBER_RECORDS`) / nullif(count(distinct `ibp`.`INDEX_NAME`),0)),0),0) AS `rows_cached` from `information_schema`.`innodb_buffer_page` `ibp` where (`ibp`.`TABLE_NAME` is not null) group by `object_schema` order by sum(if((`ibp`.`COMPRESSED_SIZE` = 0),16384,`ibp`.`COMPRESSED_SIZE`)) desc +md5=6f94a02a2bc462b3845358d5588eb416 +updatable=0 +algorithm=1 +definer_user=mysql.sys +definer_host=localhost +suid=0 +with_check_option=0 +timestamp=2018-07-20 01:51:25 +create-version=1 +source=SELECT IF(LOCATE(\'.\', ibp.table_name) = 0, \'InnoDB System\', REPLACE(SUBSTRING_INDEX(ibp.table_name, \'.\', 1), \'`\', \'\')) AS object_schema, SUM(IF(ibp.compressed_size = 0, 16384, compressed_size)) AS allocated, SUM(ibp.data_size) AS data, COUNT(ibp.page_number) AS pages, COUNT(IF(ibp.is_hashed = \'YES\', 1, NULL)) AS pages_hashed, COUNT(IF(ibp.is_old = \'YES\', 1, NULL)) AS pages_old, ROUND(IFNULL(SUM(ibp.number_records)/NULLIF(COUNT(DISTINCT ibp.index_name), 0), 0)) AS rows_cached FROM information_schema.innodb_buffer_page ibp WHERE table_name IS NOT NULL GROUP BY object_schema ORDER BY SUM(IF(ibp.compressed_size = 0, 16384, compressed_size)) DESC +client_cs_name=utf8 +connection_cl_name=utf8_general_ci +view_body_utf8=select if((locate(\'.\',`ibp`.`TABLE_NAME`) = 0),\'InnoDB System\',replace(substring_index(`ibp`.`TABLE_NAME`,\'.\',1),\'`\',\'\')) AS `object_schema`,sum(if((`ibp`.`COMPRESSED_SIZE` = 0),16384,`ibp`.`COMPRESSED_SIZE`)) AS `allocated`,sum(`ibp`.`DATA_SIZE`) AS `data`,count(`ibp`.`PAGE_NUMBER`) AS `pages`,count(if((`ibp`.`IS_HASHED` = \'YES\'),1,NULL)) AS `pages_hashed`,count(if((`ibp`.`IS_OLD` = \'YES\'),1,NULL)) AS `pages_old`,round(ifnull((sum(`ibp`.`NUMBER_RECORDS`) / nullif(count(distinct `ibp`.`INDEX_NAME`),0)),0),0) AS `rows_cached` from `information_schema`.`innodb_buffer_page` `ibp` where (`ibp`.`TABLE_NAME` is not null) group by `object_schema` order by sum(if((`ibp`.`COMPRESSED_SIZE` = 0),16384,`ibp`.`COMPRESSED_SIZE`)) desc diff --git a/zbx_env/var/lib/mysql/sys/x@0024innodb_buffer_stats_by_table.frm b/zbx_env/var/lib/mysql/sys/x@0024innodb_buffer_stats_by_table.frm new file mode 100644 index 000000000..a6d0f4cf6 --- /dev/null +++ b/zbx_env/var/lib/mysql/sys/x@0024innodb_buffer_stats_by_table.frm @@ -0,0 +1,15 @@ +TYPE=VIEW +query=select if((locate(\'.\',`ibp`.`TABLE_NAME`) = 0),\'InnoDB System\',replace(substring_index(`ibp`.`TABLE_NAME`,\'.\',1),\'`\',\'\')) AS `object_schema`,replace(substring_index(`ibp`.`TABLE_NAME`,\'.\',-(1)),\'`\',\'\') AS `object_name`,sum(if((`ibp`.`COMPRESSED_SIZE` = 0),16384,`ibp`.`COMPRESSED_SIZE`)) AS `allocated`,sum(`ibp`.`DATA_SIZE`) AS `data`,count(`ibp`.`PAGE_NUMBER`) AS `pages`,count(if((`ibp`.`IS_HASHED` = \'YES\'),1,NULL)) AS `pages_hashed`,count(if((`ibp`.`IS_OLD` = \'YES\'),1,NULL)) AS `pages_old`,round(ifnull((sum(`ibp`.`NUMBER_RECORDS`) / nullif(count(distinct `ibp`.`INDEX_NAME`),0)),0),0) AS `rows_cached` from `information_schema`.`innodb_buffer_page` `ibp` where (`ibp`.`TABLE_NAME` is not null) group by `object_schema`,`object_name` order by sum(if((`ibp`.`COMPRESSED_SIZE` = 0),16384,`ibp`.`COMPRESSED_SIZE`)) desc +md5=462e703a83dce7346c5ad0733c3c8d54 +updatable=0 +algorithm=1 +definer_user=mysql.sys +definer_host=localhost +suid=0 +with_check_option=0 +timestamp=2018-07-20 01:51:25 +create-version=1 +source=SELECT IF(LOCATE(\'.\', ibp.table_name) = 0, \'InnoDB System\', REPLACE(SUBSTRING_INDEX(ibp.table_name, \'.\', 1), \'`\', \'\')) AS object_schema, REPLACE(SUBSTRING_INDEX(ibp.table_name, \'.\', -1), \'`\', \'\') AS object_name, SUM(IF(ibp.compressed_size = 0, 16384, compressed_size)) AS allocated, SUM(ibp.data_size) AS data, COUNT(ibp.page_number) AS pages, COUNT(IF(ibp.is_hashed = \'YES\', 1, NULL)) AS pages_hashed, COUNT(IF(ibp.is_old = \'YES\', 1, NULL)) AS pages_old, ROUND(IFNULL(SUM(ibp.number_records)/NULLIF(COUNT(DISTINCT ibp.index_name), 0), 0)) AS rows_cached FROM information_schema.innodb_buffer_page ibp WHERE table_name IS NOT NULL GROUP BY object_schema, object_name ORDER BY SUM(IF(ibp.compressed_size = 0, 16384, compressed_size)) DESC +client_cs_name=utf8 +connection_cl_name=utf8_general_ci +view_body_utf8=select if((locate(\'.\',`ibp`.`TABLE_NAME`) = 0),\'InnoDB System\',replace(substring_index(`ibp`.`TABLE_NAME`,\'.\',1),\'`\',\'\')) AS `object_schema`,replace(substring_index(`ibp`.`TABLE_NAME`,\'.\',-(1)),\'`\',\'\') AS `object_name`,sum(if((`ibp`.`COMPRESSED_SIZE` = 0),16384,`ibp`.`COMPRESSED_SIZE`)) AS `allocated`,sum(`ibp`.`DATA_SIZE`) AS `data`,count(`ibp`.`PAGE_NUMBER`) AS `pages`,count(if((`ibp`.`IS_HASHED` = \'YES\'),1,NULL)) AS `pages_hashed`,count(if((`ibp`.`IS_OLD` = \'YES\'),1,NULL)) AS `pages_old`,round(ifnull((sum(`ibp`.`NUMBER_RECORDS`) / nullif(count(distinct `ibp`.`INDEX_NAME`),0)),0),0) AS `rows_cached` from `information_schema`.`innodb_buffer_page` `ibp` where (`ibp`.`TABLE_NAME` is not null) group by `object_schema`,`object_name` order by sum(if((`ibp`.`COMPRESSED_SIZE` = 0),16384,`ibp`.`COMPRESSED_SIZE`)) desc diff --git a/zbx_env/var/lib/mysql/sys/x@0024innodb_lock_waits.frm b/zbx_env/var/lib/mysql/sys/x@0024innodb_lock_waits.frm new file mode 100644 index 000000000..5216b70ac --- /dev/null +++ b/zbx_env/var/lib/mysql/sys/x@0024innodb_lock_waits.frm @@ -0,0 +1,15 @@ +TYPE=VIEW +query=select `r`.`trx_wait_started` AS `wait_started`,timediff(now(),`r`.`trx_wait_started`) AS `wait_age`,timestampdiff(SECOND,`r`.`trx_wait_started`,now()) AS `wait_age_secs`,`rl`.`lock_table` AS `locked_table`,`rl`.`lock_index` AS `locked_index`,`rl`.`lock_type` AS `locked_type`,`r`.`trx_id` AS `waiting_trx_id`,`r`.`trx_started` AS `waiting_trx_started`,timediff(now(),`r`.`trx_started`) AS `waiting_trx_age`,`r`.`trx_rows_locked` AS `waiting_trx_rows_locked`,`r`.`trx_rows_modified` AS `waiting_trx_rows_modified`,`r`.`trx_mysql_thread_id` AS `waiting_pid`,`r`.`trx_query` AS `waiting_query`,`rl`.`lock_id` AS `waiting_lock_id`,`rl`.`lock_mode` AS `waiting_lock_mode`,`b`.`trx_id` AS `blocking_trx_id`,`b`.`trx_mysql_thread_id` AS `blocking_pid`,`b`.`trx_query` AS `blocking_query`,`bl`.`lock_id` AS `blocking_lock_id`,`bl`.`lock_mode` AS `blocking_lock_mode`,`b`.`trx_started` AS `blocking_trx_started`,timediff(now(),`b`.`trx_started`) AS `blocking_trx_age`,`b`.`trx_rows_locked` AS `blocking_trx_rows_locked`,`b`.`trx_rows_modified` AS `blocking_trx_rows_modified`,concat(\'KILL QUERY \',`b`.`trx_mysql_thread_id`) AS `sql_kill_blocking_query`,concat(\'KILL \',`b`.`trx_mysql_thread_id`) AS `sql_kill_blocking_connection` from ((((`information_schema`.`innodb_lock_waits` `w` join `information_schema`.`innodb_trx` `b` on((`b`.`trx_id` = `w`.`blocking_trx_id`))) join `information_schema`.`innodb_trx` `r` on((`r`.`trx_id` = `w`.`requesting_trx_id`))) join `information_schema`.`innodb_locks` `bl` on((`bl`.`lock_id` = `w`.`blocking_lock_id`))) join `information_schema`.`innodb_locks` `rl` on((`rl`.`lock_id` = `w`.`requested_lock_id`))) order by `r`.`trx_wait_started` +md5=929bb457ad61f53c1bbf2329524fa499 +updatable=0 +algorithm=1 +definer_user=mysql.sys +definer_host=localhost +suid=0 +with_check_option=0 +timestamp=2018-07-20 01:51:25 +create-version=1 +source=SELECT r.trx_wait_started AS wait_started, TIMEDIFF(NOW(), r.trx_wait_started) AS wait_age, TIMESTAMPDIFF(SECOND, r.trx_wait_started, NOW()) AS wait_age_secs, rl.lock_table AS locked_table, rl.lock_index AS locked_index, rl.lock_type AS locked_type, r.trx_id AS waiting_trx_id, r.trx_started as waiting_trx_started, TIMEDIFF(NOW(), r.trx_started) AS waiting_trx_age, r.trx_rows_locked AS waiting_trx_rows_locked, r.trx_rows_modified AS waiting_trx_rows_modified, r.trx_mysql_thread_id AS waiting_pid, r.trx_query AS waiting_query, rl.lock_id AS waiting_lock_id, rl.lock_mode AS waiting_lock_mode, b.trx_id AS blocking_trx_id, b.trx_mysql_thread_id AS blocking_pid, b.trx_query AS blocking_query, bl.lock_id AS blocking_lock_id, bl.lock_mode AS blocking_lock_mode, b.trx_started AS blocking_trx_started, TIMEDIFF(NOW(), b.trx_started) AS blocking_trx_age, b.trx_rows_locked AS blocking_trx_rows_locked, b.trx_rows_modified AS blocking_trx_rows_modified, CONCAT(\'KILL QUERY \', b.trx_mysql_thread_id) AS sql_kill_blocking_query, CONCAT(\'KILL \', b.trx_mysql_thread_id) AS sql_kill_blocking_connection FROM information_schema.innodb_lock_waits w INNER JOIN information_schema.innodb_trx b ON b.trx_id = w.blocking_trx_id INNER JOIN information_schema.innodb_trx r ON r.trx_id = w.requesting_trx_id INNER JOIN information_schema.innodb_locks bl ON bl.lock_id = w.blocking_lock_id INNER JOIN information_schema.innodb_locks rl ON rl.lock_id = w.requested_lock_id ORDER BY r.trx_wait_started +client_cs_name=utf8 +connection_cl_name=utf8_general_ci +view_body_utf8=select `r`.`trx_wait_started` AS `wait_started`,timediff(now(),`r`.`trx_wait_started`) AS `wait_age`,timestampdiff(SECOND,`r`.`trx_wait_started`,now()) AS `wait_age_secs`,`rl`.`lock_table` AS `locked_table`,`rl`.`lock_index` AS `locked_index`,`rl`.`lock_type` AS `locked_type`,`r`.`trx_id` AS `waiting_trx_id`,`r`.`trx_started` AS `waiting_trx_started`,timediff(now(),`r`.`trx_started`) AS `waiting_trx_age`,`r`.`trx_rows_locked` AS `waiting_trx_rows_locked`,`r`.`trx_rows_modified` AS `waiting_trx_rows_modified`,`r`.`trx_mysql_thread_id` AS `waiting_pid`,`r`.`trx_query` AS `waiting_query`,`rl`.`lock_id` AS `waiting_lock_id`,`rl`.`lock_mode` AS `waiting_lock_mode`,`b`.`trx_id` AS `blocking_trx_id`,`b`.`trx_mysql_thread_id` AS `blocking_pid`,`b`.`trx_query` AS `blocking_query`,`bl`.`lock_id` AS `blocking_lock_id`,`bl`.`lock_mode` AS `blocking_lock_mode`,`b`.`trx_started` AS `blocking_trx_started`,timediff(now(),`b`.`trx_started`) AS `blocking_trx_age`,`b`.`trx_rows_locked` AS `blocking_trx_rows_locked`,`b`.`trx_rows_modified` AS `blocking_trx_rows_modified`,concat(\'KILL QUERY \',`b`.`trx_mysql_thread_id`) AS `sql_kill_blocking_query`,concat(\'KILL \',`b`.`trx_mysql_thread_id`) AS `sql_kill_blocking_connection` from ((((`information_schema`.`innodb_lock_waits` `w` join `information_schema`.`innodb_trx` `b` on((`b`.`trx_id` = `w`.`blocking_trx_id`))) join `information_schema`.`innodb_trx` `r` on((`r`.`trx_id` = `w`.`requesting_trx_id`))) join `information_schema`.`innodb_locks` `bl` on((`bl`.`lock_id` = `w`.`blocking_lock_id`))) join `information_schema`.`innodb_locks` `rl` on((`rl`.`lock_id` = `w`.`requested_lock_id`))) order by `r`.`trx_wait_started` diff --git a/zbx_env/var/lib/mysql/sys/x@0024io_by_thread_by_latency.frm b/zbx_env/var/lib/mysql/sys/x@0024io_by_thread_by_latency.frm new file mode 100644 index 000000000..7d01f914a --- /dev/null +++ b/zbx_env/var/lib/mysql/sys/x@0024io_by_thread_by_latency.frm @@ -0,0 +1,15 @@ +TYPE=VIEW +query=select if(isnull(`performance_schema`.`threads`.`PROCESSLIST_ID`),substring_index(`performance_schema`.`threads`.`NAME`,\'/\',-(1)),concat(`performance_schema`.`threads`.`PROCESSLIST_USER`,\'@\',`performance_schema`.`threads`.`PROCESSLIST_HOST`)) AS `user`,sum(`performance_schema`.`events_waits_summary_by_thread_by_event_name`.`COUNT_STAR`) AS `total`,sum(`performance_schema`.`events_waits_summary_by_thread_by_event_name`.`SUM_TIMER_WAIT`) AS `total_latency`,min(`performance_schema`.`events_waits_summary_by_thread_by_event_name`.`MIN_TIMER_WAIT`) AS `min_latency`,avg(`performance_schema`.`events_waits_summary_by_thread_by_event_name`.`AVG_TIMER_WAIT`) AS `avg_latency`,max(`performance_schema`.`events_waits_summary_by_thread_by_event_name`.`MAX_TIMER_WAIT`) AS `max_latency`,`performance_schema`.`events_waits_summary_by_thread_by_event_name`.`THREAD_ID` AS `thread_id`,`performance_schema`.`threads`.`PROCESSLIST_ID` AS `processlist_id` from (`performance_schema`.`events_waits_summary_by_thread_by_event_name` left join `performance_schema`.`threads` on((`performance_schema`.`events_waits_summary_by_thread_by_event_name`.`THREAD_ID` = `performance_schema`.`threads`.`THREAD_ID`))) where ((`performance_schema`.`events_waits_summary_by_thread_by_event_name`.`EVENT_NAME` like \'wait/io/file/%\') and (`performance_schema`.`events_waits_summary_by_thread_by_event_name`.`SUM_TIMER_WAIT` > 0)) group by `performance_schema`.`events_waits_summary_by_thread_by_event_name`.`THREAD_ID`,`performance_schema`.`threads`.`PROCESSLIST_ID`,`user` order by sum(`performance_schema`.`events_waits_summary_by_thread_by_event_name`.`SUM_TIMER_WAIT`) desc +md5=af72750fde16f9a7890465abef5fe8d8 +updatable=0 +algorithm=1 +definer_user=mysql.sys +definer_host=localhost +suid=0 +with_check_option=0 +timestamp=2018-07-20 01:51:25 +create-version=1 +source=SELECT IF(processlist_id IS NULL, SUBSTRING_INDEX(name, \'/\', -1), CONCAT(processlist_user, \'@\', processlist_host) ) user, SUM(count_star) total, SUM(sum_timer_wait) total_latency, MIN(min_timer_wait) min_latency, AVG(avg_timer_wait) avg_latency, MAX(max_timer_wait) max_latency, thread_id, processlist_id FROM performance_schema.events_waits_summary_by_thread_by_event_name LEFT JOIN performance_schema.threads USING (thread_id) WHERE event_name LIKE \'wait/io/file/%\' AND sum_timer_wait > 0 GROUP BY thread_id, processlist_id, user ORDER BY SUM(sum_timer_wait) DESC +client_cs_name=utf8 +connection_cl_name=utf8_general_ci +view_body_utf8=select if(isnull(`performance_schema`.`threads`.`PROCESSLIST_ID`),substring_index(`performance_schema`.`threads`.`NAME`,\'/\',-(1)),concat(`performance_schema`.`threads`.`PROCESSLIST_USER`,\'@\',`performance_schema`.`threads`.`PROCESSLIST_HOST`)) AS `user`,sum(`performance_schema`.`events_waits_summary_by_thread_by_event_name`.`COUNT_STAR`) AS `total`,sum(`performance_schema`.`events_waits_summary_by_thread_by_event_name`.`SUM_TIMER_WAIT`) AS `total_latency`,min(`performance_schema`.`events_waits_summary_by_thread_by_event_name`.`MIN_TIMER_WAIT`) AS `min_latency`,avg(`performance_schema`.`events_waits_summary_by_thread_by_event_name`.`AVG_TIMER_WAIT`) AS `avg_latency`,max(`performance_schema`.`events_waits_summary_by_thread_by_event_name`.`MAX_TIMER_WAIT`) AS `max_latency`,`performance_schema`.`events_waits_summary_by_thread_by_event_name`.`THREAD_ID` AS `thread_id`,`performance_schema`.`threads`.`PROCESSLIST_ID` AS `processlist_id` from (`performance_schema`.`events_waits_summary_by_thread_by_event_name` left join `performance_schema`.`threads` on((`performance_schema`.`events_waits_summary_by_thread_by_event_name`.`THREAD_ID` = `performance_schema`.`threads`.`THREAD_ID`))) where ((`performance_schema`.`events_waits_summary_by_thread_by_event_name`.`EVENT_NAME` like \'wait/io/file/%\') and (`performance_schema`.`events_waits_summary_by_thread_by_event_name`.`SUM_TIMER_WAIT` > 0)) group by `performance_schema`.`events_waits_summary_by_thread_by_event_name`.`THREAD_ID`,`performance_schema`.`threads`.`PROCESSLIST_ID`,`user` order by sum(`performance_schema`.`events_waits_summary_by_thread_by_event_name`.`SUM_TIMER_WAIT`) desc diff --git a/zbx_env/var/lib/mysql/sys/x@0024io_global_by_file_by_bytes.frm b/zbx_env/var/lib/mysql/sys/x@0024io_global_by_file_by_bytes.frm new file mode 100644 index 000000000..8c722629e --- /dev/null +++ b/zbx_env/var/lib/mysql/sys/x@0024io_global_by_file_by_bytes.frm @@ -0,0 +1,15 @@ +TYPE=VIEW +query=select `performance_schema`.`file_summary_by_instance`.`FILE_NAME` AS `file`,`performance_schema`.`file_summary_by_instance`.`COUNT_READ` AS `count_read`,`performance_schema`.`file_summary_by_instance`.`SUM_NUMBER_OF_BYTES_READ` AS `total_read`,ifnull((`performance_schema`.`file_summary_by_instance`.`SUM_NUMBER_OF_BYTES_READ` / nullif(`performance_schema`.`file_summary_by_instance`.`COUNT_READ`,0)),0) AS `avg_read`,`performance_schema`.`file_summary_by_instance`.`COUNT_WRITE` AS `count_write`,`performance_schema`.`file_summary_by_instance`.`SUM_NUMBER_OF_BYTES_WRITE` AS `total_written`,ifnull((`performance_schema`.`file_summary_by_instance`.`SUM_NUMBER_OF_BYTES_WRITE` / nullif(`performance_schema`.`file_summary_by_instance`.`COUNT_WRITE`,0)),0.00) AS `avg_write`,(`performance_schema`.`file_summary_by_instance`.`SUM_NUMBER_OF_BYTES_READ` + `performance_schema`.`file_summary_by_instance`.`SUM_NUMBER_OF_BYTES_WRITE`) AS `total`,ifnull(round((100 - ((`performance_schema`.`file_summary_by_instance`.`SUM_NUMBER_OF_BYTES_READ` / nullif((`performance_schema`.`file_summary_by_instance`.`SUM_NUMBER_OF_BYTES_READ` + `performance_schema`.`file_summary_by_instance`.`SUM_NUMBER_OF_BYTES_WRITE`),0)) * 100)),2),0.00) AS `write_pct` from `performance_schema`.`file_summary_by_instance` order by (`performance_schema`.`file_summary_by_instance`.`SUM_NUMBER_OF_BYTES_READ` + `performance_schema`.`file_summary_by_instance`.`SUM_NUMBER_OF_BYTES_WRITE`) desc +md5=5ebb1b416d85d1fcca42b4204f0341b4 +updatable=1 +algorithm=2 +definer_user=mysql.sys +definer_host=localhost +suid=0 +with_check_option=0 +timestamp=2018-07-20 01:51:25 +create-version=1 +source=SELECT file_name AS file, count_read, sum_number_of_bytes_read AS total_read, IFNULL(sum_number_of_bytes_read / NULLIF(count_read, 0), 0) AS avg_read, count_write, sum_number_of_bytes_write AS total_written, IFNULL(sum_number_of_bytes_write / NULLIF(count_write, 0), 0.00) AS avg_write, sum_number_of_bytes_read + sum_number_of_bytes_write AS total, IFNULL(ROUND(100-((sum_number_of_bytes_read/ NULLIF((sum_number_of_bytes_read+sum_number_of_bytes_write), 0))*100), 2), 0.00) AS write_pct FROM performance_schema.file_summary_by_instance ORDER BY sum_number_of_bytes_read + sum_number_of_bytes_write DESC +client_cs_name=utf8 +connection_cl_name=utf8_general_ci +view_body_utf8=select `performance_schema`.`file_summary_by_instance`.`FILE_NAME` AS `file`,`performance_schema`.`file_summary_by_instance`.`COUNT_READ` AS `count_read`,`performance_schema`.`file_summary_by_instance`.`SUM_NUMBER_OF_BYTES_READ` AS `total_read`,ifnull((`performance_schema`.`file_summary_by_instance`.`SUM_NUMBER_OF_BYTES_READ` / nullif(`performance_schema`.`file_summary_by_instance`.`COUNT_READ`,0)),0) AS `avg_read`,`performance_schema`.`file_summary_by_instance`.`COUNT_WRITE` AS `count_write`,`performance_schema`.`file_summary_by_instance`.`SUM_NUMBER_OF_BYTES_WRITE` AS `total_written`,ifnull((`performance_schema`.`file_summary_by_instance`.`SUM_NUMBER_OF_BYTES_WRITE` / nullif(`performance_schema`.`file_summary_by_instance`.`COUNT_WRITE`,0)),0.00) AS `avg_write`,(`performance_schema`.`file_summary_by_instance`.`SUM_NUMBER_OF_BYTES_READ` + `performance_schema`.`file_summary_by_instance`.`SUM_NUMBER_OF_BYTES_WRITE`) AS `total`,ifnull(round((100 - ((`performance_schema`.`file_summary_by_instance`.`SUM_NUMBER_OF_BYTES_READ` / nullif((`performance_schema`.`file_summary_by_instance`.`SUM_NUMBER_OF_BYTES_READ` + `performance_schema`.`file_summary_by_instance`.`SUM_NUMBER_OF_BYTES_WRITE`),0)) * 100)),2),0.00) AS `write_pct` from `performance_schema`.`file_summary_by_instance` order by (`performance_schema`.`file_summary_by_instance`.`SUM_NUMBER_OF_BYTES_READ` + `performance_schema`.`file_summary_by_instance`.`SUM_NUMBER_OF_BYTES_WRITE`) desc diff --git a/zbx_env/var/lib/mysql/sys/x@0024io_global_by_file_by_latency.frm b/zbx_env/var/lib/mysql/sys/x@0024io_global_by_file_by_latency.frm new file mode 100644 index 000000000..98963866c --- /dev/null +++ b/zbx_env/var/lib/mysql/sys/x@0024io_global_by_file_by_latency.frm @@ -0,0 +1,15 @@ +TYPE=VIEW +query=select `performance_schema`.`file_summary_by_instance`.`FILE_NAME` AS `file`,`performance_schema`.`file_summary_by_instance`.`COUNT_STAR` AS `total`,`performance_schema`.`file_summary_by_instance`.`SUM_TIMER_WAIT` AS `total_latency`,`performance_schema`.`file_summary_by_instance`.`COUNT_READ` AS `count_read`,`performance_schema`.`file_summary_by_instance`.`SUM_TIMER_READ` AS `read_latency`,`performance_schema`.`file_summary_by_instance`.`COUNT_WRITE` AS `count_write`,`performance_schema`.`file_summary_by_instance`.`SUM_TIMER_WRITE` AS `write_latency`,`performance_schema`.`file_summary_by_instance`.`COUNT_MISC` AS `count_misc`,`performance_schema`.`file_summary_by_instance`.`SUM_TIMER_MISC` AS `misc_latency` from `performance_schema`.`file_summary_by_instance` order by `performance_schema`.`file_summary_by_instance`.`SUM_TIMER_WAIT` desc +md5=7dd2b8d418cc363387dfae597c25a9f4 +updatable=1 +algorithm=2 +definer_user=mysql.sys +definer_host=localhost +suid=0 +with_check_option=0 +timestamp=2018-07-20 01:51:25 +create-version=1 +source=SELECT file_name AS file, count_star AS total, sum_timer_wait AS total_latency, count_read, sum_timer_read AS read_latency, count_write, sum_timer_write AS write_latency, count_misc, sum_timer_misc AS misc_latency FROM performance_schema.file_summary_by_instance ORDER BY sum_timer_wait DESC +client_cs_name=utf8 +connection_cl_name=utf8_general_ci +view_body_utf8=select `performance_schema`.`file_summary_by_instance`.`FILE_NAME` AS `file`,`performance_schema`.`file_summary_by_instance`.`COUNT_STAR` AS `total`,`performance_schema`.`file_summary_by_instance`.`SUM_TIMER_WAIT` AS `total_latency`,`performance_schema`.`file_summary_by_instance`.`COUNT_READ` AS `count_read`,`performance_schema`.`file_summary_by_instance`.`SUM_TIMER_READ` AS `read_latency`,`performance_schema`.`file_summary_by_instance`.`COUNT_WRITE` AS `count_write`,`performance_schema`.`file_summary_by_instance`.`SUM_TIMER_WRITE` AS `write_latency`,`performance_schema`.`file_summary_by_instance`.`COUNT_MISC` AS `count_misc`,`performance_schema`.`file_summary_by_instance`.`SUM_TIMER_MISC` AS `misc_latency` from `performance_schema`.`file_summary_by_instance` order by `performance_schema`.`file_summary_by_instance`.`SUM_TIMER_WAIT` desc diff --git a/zbx_env/var/lib/mysql/sys/x@0024io_global_by_wait_by_bytes.frm b/zbx_env/var/lib/mysql/sys/x@0024io_global_by_wait_by_bytes.frm new file mode 100644 index 000000000..937c8af70 --- /dev/null +++ b/zbx_env/var/lib/mysql/sys/x@0024io_global_by_wait_by_bytes.frm @@ -0,0 +1,15 @@ +TYPE=VIEW +query=select substring_index(`performance_schema`.`file_summary_by_event_name`.`EVENT_NAME`,\'/\',-(2)) AS `event_name`,`performance_schema`.`file_summary_by_event_name`.`COUNT_STAR` AS `total`,`performance_schema`.`file_summary_by_event_name`.`SUM_TIMER_WAIT` AS `total_latency`,`performance_schema`.`file_summary_by_event_name`.`MIN_TIMER_WAIT` AS `min_latency`,`performance_schema`.`file_summary_by_event_name`.`AVG_TIMER_WAIT` AS `avg_latency`,`performance_schema`.`file_summary_by_event_name`.`MAX_TIMER_WAIT` AS `max_latency`,`performance_schema`.`file_summary_by_event_name`.`COUNT_READ` AS `count_read`,`performance_schema`.`file_summary_by_event_name`.`SUM_NUMBER_OF_BYTES_READ` AS `total_read`,ifnull((`performance_schema`.`file_summary_by_event_name`.`SUM_NUMBER_OF_BYTES_READ` / nullif(`performance_schema`.`file_summary_by_event_name`.`COUNT_READ`,0)),0) AS `avg_read`,`performance_schema`.`file_summary_by_event_name`.`COUNT_WRITE` AS `count_write`,`performance_schema`.`file_summary_by_event_name`.`SUM_NUMBER_OF_BYTES_WRITE` AS `total_written`,ifnull((`performance_schema`.`file_summary_by_event_name`.`SUM_NUMBER_OF_BYTES_WRITE` / nullif(`performance_schema`.`file_summary_by_event_name`.`COUNT_WRITE`,0)),0) AS `avg_written`,(`performance_schema`.`file_summary_by_event_name`.`SUM_NUMBER_OF_BYTES_WRITE` + `performance_schema`.`file_summary_by_event_name`.`SUM_NUMBER_OF_BYTES_READ`) AS `total_requested` from `performance_schema`.`file_summary_by_event_name` where ((`performance_schema`.`file_summary_by_event_name`.`EVENT_NAME` like \'wait/io/file/%\') and (`performance_schema`.`file_summary_by_event_name`.`COUNT_STAR` > 0)) order by (`performance_schema`.`file_summary_by_event_name`.`SUM_NUMBER_OF_BYTES_WRITE` + `performance_schema`.`file_summary_by_event_name`.`SUM_NUMBER_OF_BYTES_READ`) desc +md5=c765ec17653a9f03613308a5fdd65c81 +updatable=1 +algorithm=2 +definer_user=mysql.sys +definer_host=localhost +suid=0 +with_check_option=0 +timestamp=2018-07-20 01:51:25 +create-version=1 +source=SELECT SUBSTRING_INDEX(event_name, \'/\', -2) AS event_name, count_star AS total, sum_timer_wait AS total_latency, min_timer_wait AS min_latency, avg_timer_wait AS avg_latency, max_timer_wait AS max_latency, count_read, sum_number_of_bytes_read AS total_read, IFNULL(sum_number_of_bytes_read / NULLIF(count_read, 0), 0) AS avg_read, count_write, sum_number_of_bytes_write AS total_written, IFNULL(sum_number_of_bytes_write / NULLIF(count_write, 0), 0) AS avg_written, sum_number_of_bytes_write + sum_number_of_bytes_read AS total_requested FROM performance_schema.file_summary_by_event_name WHERE event_name LIKE \'wait/io/file/%\' AND count_star > 0 ORDER BY sum_number_of_bytes_write + sum_number_of_bytes_read DESC +client_cs_name=utf8 +connection_cl_name=utf8_general_ci +view_body_utf8=select substring_index(`performance_schema`.`file_summary_by_event_name`.`EVENT_NAME`,\'/\',-(2)) AS `event_name`,`performance_schema`.`file_summary_by_event_name`.`COUNT_STAR` AS `total`,`performance_schema`.`file_summary_by_event_name`.`SUM_TIMER_WAIT` AS `total_latency`,`performance_schema`.`file_summary_by_event_name`.`MIN_TIMER_WAIT` AS `min_latency`,`performance_schema`.`file_summary_by_event_name`.`AVG_TIMER_WAIT` AS `avg_latency`,`performance_schema`.`file_summary_by_event_name`.`MAX_TIMER_WAIT` AS `max_latency`,`performance_schema`.`file_summary_by_event_name`.`COUNT_READ` AS `count_read`,`performance_schema`.`file_summary_by_event_name`.`SUM_NUMBER_OF_BYTES_READ` AS `total_read`,ifnull((`performance_schema`.`file_summary_by_event_name`.`SUM_NUMBER_OF_BYTES_READ` / nullif(`performance_schema`.`file_summary_by_event_name`.`COUNT_READ`,0)),0) AS `avg_read`,`performance_schema`.`file_summary_by_event_name`.`COUNT_WRITE` AS `count_write`,`performance_schema`.`file_summary_by_event_name`.`SUM_NUMBER_OF_BYTES_WRITE` AS `total_written`,ifnull((`performance_schema`.`file_summary_by_event_name`.`SUM_NUMBER_OF_BYTES_WRITE` / nullif(`performance_schema`.`file_summary_by_event_name`.`COUNT_WRITE`,0)),0) AS `avg_written`,(`performance_schema`.`file_summary_by_event_name`.`SUM_NUMBER_OF_BYTES_WRITE` + `performance_schema`.`file_summary_by_event_name`.`SUM_NUMBER_OF_BYTES_READ`) AS `total_requested` from `performance_schema`.`file_summary_by_event_name` where ((`performance_schema`.`file_summary_by_event_name`.`EVENT_NAME` like \'wait/io/file/%\') and (`performance_schema`.`file_summary_by_event_name`.`COUNT_STAR` > 0)) order by (`performance_schema`.`file_summary_by_event_name`.`SUM_NUMBER_OF_BYTES_WRITE` + `performance_schema`.`file_summary_by_event_name`.`SUM_NUMBER_OF_BYTES_READ`) desc diff --git a/zbx_env/var/lib/mysql/sys/x@0024io_global_by_wait_by_latency.frm b/zbx_env/var/lib/mysql/sys/x@0024io_global_by_wait_by_latency.frm new file mode 100644 index 000000000..1cf550f07 --- /dev/null +++ b/zbx_env/var/lib/mysql/sys/x@0024io_global_by_wait_by_latency.frm @@ -0,0 +1,15 @@ +TYPE=VIEW +query=select substring_index(`performance_schema`.`file_summary_by_event_name`.`EVENT_NAME`,\'/\',-(2)) AS `event_name`,`performance_schema`.`file_summary_by_event_name`.`COUNT_STAR` AS `total`,`performance_schema`.`file_summary_by_event_name`.`SUM_TIMER_WAIT` AS `total_latency`,`performance_schema`.`file_summary_by_event_name`.`AVG_TIMER_WAIT` AS `avg_latency`,`performance_schema`.`file_summary_by_event_name`.`MAX_TIMER_WAIT` AS `max_latency`,`performance_schema`.`file_summary_by_event_name`.`SUM_TIMER_READ` AS `read_latency`,`performance_schema`.`file_summary_by_event_name`.`SUM_TIMER_WRITE` AS `write_latency`,`performance_schema`.`file_summary_by_event_name`.`SUM_TIMER_MISC` AS `misc_latency`,`performance_schema`.`file_summary_by_event_name`.`COUNT_READ` AS `count_read`,`performance_schema`.`file_summary_by_event_name`.`SUM_NUMBER_OF_BYTES_READ` AS `total_read`,ifnull((`performance_schema`.`file_summary_by_event_name`.`SUM_NUMBER_OF_BYTES_READ` / nullif(`performance_schema`.`file_summary_by_event_name`.`COUNT_READ`,0)),0) AS `avg_read`,`performance_schema`.`file_summary_by_event_name`.`COUNT_WRITE` AS `count_write`,`performance_schema`.`file_summary_by_event_name`.`SUM_NUMBER_OF_BYTES_WRITE` AS `total_written`,ifnull((`performance_schema`.`file_summary_by_event_name`.`SUM_NUMBER_OF_BYTES_WRITE` / nullif(`performance_schema`.`file_summary_by_event_name`.`COUNT_WRITE`,0)),0) AS `avg_written` from `performance_schema`.`file_summary_by_event_name` where ((`performance_schema`.`file_summary_by_event_name`.`EVENT_NAME` like \'wait/io/file/%\') and (`performance_schema`.`file_summary_by_event_name`.`COUNT_STAR` > 0)) order by `performance_schema`.`file_summary_by_event_name`.`SUM_TIMER_WAIT` desc +md5=a90dc8f3b75494a07b6b00becc72d3c2 +updatable=1 +algorithm=2 +definer_user=mysql.sys +definer_host=localhost +suid=0 +with_check_option=0 +timestamp=2018-07-20 01:51:25 +create-version=1 +source=SELECT SUBSTRING_INDEX(event_name, \'/\', -2) AS event_name, count_star AS total, sum_timer_wait AS total_latency, avg_timer_wait AS avg_latency, max_timer_wait AS max_latency, sum_timer_read AS read_latency, sum_timer_write AS write_latency, sum_timer_misc AS misc_latency, count_read, sum_number_of_bytes_read AS total_read, IFNULL(sum_number_of_bytes_read / NULLIF(count_read, 0), 0) AS avg_read, count_write, sum_number_of_bytes_write AS total_written, IFNULL(sum_number_of_bytes_write / NULLIF(count_write, 0), 0) AS avg_written FROM performance_schema.file_summary_by_event_name WHERE event_name LIKE \'wait/io/file/%\' AND count_star > 0 ORDER BY sum_timer_wait DESC +client_cs_name=utf8 +connection_cl_name=utf8_general_ci +view_body_utf8=select substring_index(`performance_schema`.`file_summary_by_event_name`.`EVENT_NAME`,\'/\',-(2)) AS `event_name`,`performance_schema`.`file_summary_by_event_name`.`COUNT_STAR` AS `total`,`performance_schema`.`file_summary_by_event_name`.`SUM_TIMER_WAIT` AS `total_latency`,`performance_schema`.`file_summary_by_event_name`.`AVG_TIMER_WAIT` AS `avg_latency`,`performance_schema`.`file_summary_by_event_name`.`MAX_TIMER_WAIT` AS `max_latency`,`performance_schema`.`file_summary_by_event_name`.`SUM_TIMER_READ` AS `read_latency`,`performance_schema`.`file_summary_by_event_name`.`SUM_TIMER_WRITE` AS `write_latency`,`performance_schema`.`file_summary_by_event_name`.`SUM_TIMER_MISC` AS `misc_latency`,`performance_schema`.`file_summary_by_event_name`.`COUNT_READ` AS `count_read`,`performance_schema`.`file_summary_by_event_name`.`SUM_NUMBER_OF_BYTES_READ` AS `total_read`,ifnull((`performance_schema`.`file_summary_by_event_name`.`SUM_NUMBER_OF_BYTES_READ` / nullif(`performance_schema`.`file_summary_by_event_name`.`COUNT_READ`,0)),0) AS `avg_read`,`performance_schema`.`file_summary_by_event_name`.`COUNT_WRITE` AS `count_write`,`performance_schema`.`file_summary_by_event_name`.`SUM_NUMBER_OF_BYTES_WRITE` AS `total_written`,ifnull((`performance_schema`.`file_summary_by_event_name`.`SUM_NUMBER_OF_BYTES_WRITE` / nullif(`performance_schema`.`file_summary_by_event_name`.`COUNT_WRITE`,0)),0) AS `avg_written` from `performance_schema`.`file_summary_by_event_name` where ((`performance_schema`.`file_summary_by_event_name`.`EVENT_NAME` like \'wait/io/file/%\') and (`performance_schema`.`file_summary_by_event_name`.`COUNT_STAR` > 0)) order by `performance_schema`.`file_summary_by_event_name`.`SUM_TIMER_WAIT` desc diff --git a/zbx_env/var/lib/mysql/sys/x@0024latest_file_io.frm b/zbx_env/var/lib/mysql/sys/x@0024latest_file_io.frm new file mode 100644 index 000000000..23399be71 --- /dev/null +++ b/zbx_env/var/lib/mysql/sys/x@0024latest_file_io.frm @@ -0,0 +1,15 @@ +TYPE=VIEW +query=select if(isnull(`information_schema`.`processlist`.`ID`),concat(substring_index(`performance_schema`.`threads`.`NAME`,\'/\',-(1)),\':\',`performance_schema`.`events_waits_history_long`.`THREAD_ID`),concat(`information_schema`.`processlist`.`USER`,\'@\',`information_schema`.`processlist`.`HOST`,\':\',`information_schema`.`processlist`.`ID`)) AS `thread`,`performance_schema`.`events_waits_history_long`.`OBJECT_NAME` AS `file`,`performance_schema`.`events_waits_history_long`.`TIMER_WAIT` AS `latency`,`performance_schema`.`events_waits_history_long`.`OPERATION` AS `operation`,`performance_schema`.`events_waits_history_long`.`NUMBER_OF_BYTES` AS `requested` from ((`performance_schema`.`events_waits_history_long` join `performance_schema`.`threads` on((`performance_schema`.`events_waits_history_long`.`THREAD_ID` = `performance_schema`.`threads`.`THREAD_ID`))) left join `information_schema`.`processlist` on((`performance_schema`.`threads`.`PROCESSLIST_ID` = `information_schema`.`processlist`.`ID`))) where ((`performance_schema`.`events_waits_history_long`.`OBJECT_NAME` is not null) and (`performance_schema`.`events_waits_history_long`.`EVENT_NAME` like \'wait/io/file/%\')) order by `performance_schema`.`events_waits_history_long`.`TIMER_START` +md5=383e8b23227c5c066a4eb4b739d1d979 +updatable=0 +algorithm=2 +definer_user=mysql.sys +definer_host=localhost +suid=0 +with_check_option=0 +timestamp=2018-07-20 01:51:25 +create-version=1 +source=SELECT IF(id IS NULL, CONCAT(SUBSTRING_INDEX(name, \'/\', -1), \':\', thread_id), CONCAT(user, \'@\', host, \':\', id) ) thread, object_name file, timer_wait AS latency, operation, number_of_bytes AS requested FROM performance_schema.events_waits_history_long JOIN performance_schema.threads USING (thread_id) LEFT JOIN information_schema.processlist ON processlist_id = id WHERE object_name IS NOT NULL AND event_name LIKE \'wait/io/file/%\' ORDER BY timer_start +client_cs_name=utf8 +connection_cl_name=utf8_general_ci +view_body_utf8=select if(isnull(`information_schema`.`processlist`.`ID`),concat(substring_index(`performance_schema`.`threads`.`NAME`,\'/\',-(1)),\':\',`performance_schema`.`events_waits_history_long`.`THREAD_ID`),concat(`information_schema`.`processlist`.`USER`,\'@\',`information_schema`.`processlist`.`HOST`,\':\',`information_schema`.`processlist`.`ID`)) AS `thread`,`performance_schema`.`events_waits_history_long`.`OBJECT_NAME` AS `file`,`performance_schema`.`events_waits_history_long`.`TIMER_WAIT` AS `latency`,`performance_schema`.`events_waits_history_long`.`OPERATION` AS `operation`,`performance_schema`.`events_waits_history_long`.`NUMBER_OF_BYTES` AS `requested` from ((`performance_schema`.`events_waits_history_long` join `performance_schema`.`threads` on((`performance_schema`.`events_waits_history_long`.`THREAD_ID` = `performance_schema`.`threads`.`THREAD_ID`))) left join `information_schema`.`processlist` on((`performance_schema`.`threads`.`PROCESSLIST_ID` = `information_schema`.`processlist`.`ID`))) where ((`performance_schema`.`events_waits_history_long`.`OBJECT_NAME` is not null) and (`performance_schema`.`events_waits_history_long`.`EVENT_NAME` like \'wait/io/file/%\')) order by `performance_schema`.`events_waits_history_long`.`TIMER_START` diff --git a/zbx_env/var/lib/mysql/sys/x@0024memory_by_host_by_current_bytes.frm b/zbx_env/var/lib/mysql/sys/x@0024memory_by_host_by_current_bytes.frm new file mode 100644 index 000000000..453262d5e --- /dev/null +++ b/zbx_env/var/lib/mysql/sys/x@0024memory_by_host_by_current_bytes.frm @@ -0,0 +1,15 @@ +TYPE=VIEW +query=select if(isnull(`performance_schema`.`memory_summary_by_host_by_event_name`.`HOST`),\'background\',`performance_schema`.`memory_summary_by_host_by_event_name`.`HOST`) AS `host`,sum(`performance_schema`.`memory_summary_by_host_by_event_name`.`CURRENT_COUNT_USED`) AS `current_count_used`,sum(`performance_schema`.`memory_summary_by_host_by_event_name`.`CURRENT_NUMBER_OF_BYTES_USED`) AS `current_allocated`,ifnull((sum(`performance_schema`.`memory_summary_by_host_by_event_name`.`CURRENT_NUMBER_OF_BYTES_USED`) / nullif(sum(`performance_schema`.`memory_summary_by_host_by_event_name`.`CURRENT_COUNT_USED`),0)),0) AS `current_avg_alloc`,max(`performance_schema`.`memory_summary_by_host_by_event_name`.`CURRENT_NUMBER_OF_BYTES_USED`) AS `current_max_alloc`,sum(`performance_schema`.`memory_summary_by_host_by_event_name`.`SUM_NUMBER_OF_BYTES_ALLOC`) AS `total_allocated` from `performance_schema`.`memory_summary_by_host_by_event_name` group by if(isnull(`performance_schema`.`memory_summary_by_host_by_event_name`.`HOST`),\'background\',`performance_schema`.`memory_summary_by_host_by_event_name`.`HOST`) order by sum(`performance_schema`.`memory_summary_by_host_by_event_name`.`CURRENT_NUMBER_OF_BYTES_USED`) desc +md5=5c8997697fa41c182077938f3fef1469 +updatable=0 +algorithm=1 +definer_user=mysql.sys +definer_host=localhost +suid=0 +with_check_option=0 +timestamp=2018-07-20 01:51:25 +create-version=1 +source=SELECT IF(host IS NULL, \'background\', host) AS host, SUM(current_count_used) AS current_count_used, SUM(current_number_of_bytes_used) AS current_allocated, IFNULL(SUM(current_number_of_bytes_used) / NULLIF(SUM(current_count_used), 0), 0) AS current_avg_alloc, MAX(current_number_of_bytes_used) AS current_max_alloc, SUM(sum_number_of_bytes_alloc) AS total_allocated FROM performance_schema.memory_summary_by_host_by_event_name GROUP BY IF(host IS NULL, \'background\', host) ORDER BY SUM(current_number_of_bytes_used) DESC +client_cs_name=utf8 +connection_cl_name=utf8_general_ci +view_body_utf8=select if(isnull(`performance_schema`.`memory_summary_by_host_by_event_name`.`HOST`),\'background\',`performance_schema`.`memory_summary_by_host_by_event_name`.`HOST`) AS `host`,sum(`performance_schema`.`memory_summary_by_host_by_event_name`.`CURRENT_COUNT_USED`) AS `current_count_used`,sum(`performance_schema`.`memory_summary_by_host_by_event_name`.`CURRENT_NUMBER_OF_BYTES_USED`) AS `current_allocated`,ifnull((sum(`performance_schema`.`memory_summary_by_host_by_event_name`.`CURRENT_NUMBER_OF_BYTES_USED`) / nullif(sum(`performance_schema`.`memory_summary_by_host_by_event_name`.`CURRENT_COUNT_USED`),0)),0) AS `current_avg_alloc`,max(`performance_schema`.`memory_summary_by_host_by_event_name`.`CURRENT_NUMBER_OF_BYTES_USED`) AS `current_max_alloc`,sum(`performance_schema`.`memory_summary_by_host_by_event_name`.`SUM_NUMBER_OF_BYTES_ALLOC`) AS `total_allocated` from `performance_schema`.`memory_summary_by_host_by_event_name` group by if(isnull(`performance_schema`.`memory_summary_by_host_by_event_name`.`HOST`),\'background\',`performance_schema`.`memory_summary_by_host_by_event_name`.`HOST`) order by sum(`performance_schema`.`memory_summary_by_host_by_event_name`.`CURRENT_NUMBER_OF_BYTES_USED`) desc diff --git a/zbx_env/var/lib/mysql/sys/x@0024memory_by_thread_by_current_bytes.frm b/zbx_env/var/lib/mysql/sys/x@0024memory_by_thread_by_current_bytes.frm new file mode 100644 index 000000000..b75cb1985 --- /dev/null +++ b/zbx_env/var/lib/mysql/sys/x@0024memory_by_thread_by_current_bytes.frm @@ -0,0 +1,15 @@ +TYPE=VIEW +query=select `t`.`THREAD_ID` AS `thread_id`,if((`t`.`NAME` = \'thread/sql/one_connection\'),concat(`t`.`PROCESSLIST_USER`,\'@\',`t`.`PROCESSLIST_HOST`),replace(`t`.`NAME`,\'thread/\',\'\')) AS `user`,sum(`mt`.`CURRENT_COUNT_USED`) AS `current_count_used`,sum(`mt`.`CURRENT_NUMBER_OF_BYTES_USED`) AS `current_allocated`,ifnull((sum(`mt`.`CURRENT_NUMBER_OF_BYTES_USED`) / nullif(sum(`mt`.`CURRENT_COUNT_USED`),0)),0) AS `current_avg_alloc`,max(`mt`.`CURRENT_NUMBER_OF_BYTES_USED`) AS `current_max_alloc`,sum(`mt`.`SUM_NUMBER_OF_BYTES_ALLOC`) AS `total_allocated` from (`performance_schema`.`memory_summary_by_thread_by_event_name` `mt` join `performance_schema`.`threads` `t` on((`mt`.`THREAD_ID` = `t`.`THREAD_ID`))) group by `t`.`THREAD_ID`,if((`t`.`NAME` = \'thread/sql/one_connection\'),concat(`t`.`PROCESSLIST_USER`,\'@\',`t`.`PROCESSLIST_HOST`),replace(`t`.`NAME`,\'thread/\',\'\')) order by sum(`mt`.`CURRENT_NUMBER_OF_BYTES_USED`) desc +md5=cc53b9c3a372316d91714f5733e30048 +updatable=0 +algorithm=1 +definer_user=mysql.sys +definer_host=localhost +suid=0 +with_check_option=0 +timestamp=2018-07-20 01:51:25 +create-version=1 +source=SELECT t.thread_id, IF(t.name = \'thread/sql/one_connection\', CONCAT(t.processlist_user, \'@\', t.processlist_host), REPLACE(t.name, \'thread/\', \'\')) user, SUM(mt.current_count_used) AS current_count_used, SUM(mt.current_number_of_bytes_used) AS current_allocated, IFNULL(SUM(mt.current_number_of_bytes_used) / NULLIF(SUM(current_count_used), 0), 0) AS current_avg_alloc, MAX(mt.current_number_of_bytes_used) AS current_max_alloc, SUM(mt.sum_number_of_bytes_alloc) AS total_allocated FROM performance_schema.memory_summary_by_thread_by_event_name AS mt JOIN performance_schema.threads AS t USING (thread_id) GROUP BY thread_id, IF(t.name = \'thread/sql/one_connection\', CONCAT(t.processlist_user, \'@\', t.processlist_host), REPLACE(t.name, \'thread/\', \'\')) ORDER BY SUM(mt.current_number_of_bytes_used) DESC +client_cs_name=utf8 +connection_cl_name=utf8_general_ci +view_body_utf8=select `t`.`THREAD_ID` AS `thread_id`,if((`t`.`NAME` = \'thread/sql/one_connection\'),concat(`t`.`PROCESSLIST_USER`,\'@\',`t`.`PROCESSLIST_HOST`),replace(`t`.`NAME`,\'thread/\',\'\')) AS `user`,sum(`mt`.`CURRENT_COUNT_USED`) AS `current_count_used`,sum(`mt`.`CURRENT_NUMBER_OF_BYTES_USED`) AS `current_allocated`,ifnull((sum(`mt`.`CURRENT_NUMBER_OF_BYTES_USED`) / nullif(sum(`mt`.`CURRENT_COUNT_USED`),0)),0) AS `current_avg_alloc`,max(`mt`.`CURRENT_NUMBER_OF_BYTES_USED`) AS `current_max_alloc`,sum(`mt`.`SUM_NUMBER_OF_BYTES_ALLOC`) AS `total_allocated` from (`performance_schema`.`memory_summary_by_thread_by_event_name` `mt` join `performance_schema`.`threads` `t` on((`mt`.`THREAD_ID` = `t`.`THREAD_ID`))) group by `t`.`THREAD_ID`,if((`t`.`NAME` = \'thread/sql/one_connection\'),concat(`t`.`PROCESSLIST_USER`,\'@\',`t`.`PROCESSLIST_HOST`),replace(`t`.`NAME`,\'thread/\',\'\')) order by sum(`mt`.`CURRENT_NUMBER_OF_BYTES_USED`) desc diff --git a/zbx_env/var/lib/mysql/sys/x@0024memory_by_user_by_current_bytes.frm b/zbx_env/var/lib/mysql/sys/x@0024memory_by_user_by_current_bytes.frm new file mode 100644 index 000000000..1d88062bd --- /dev/null +++ b/zbx_env/var/lib/mysql/sys/x@0024memory_by_user_by_current_bytes.frm @@ -0,0 +1,15 @@ +TYPE=VIEW +query=select if(isnull(`performance_schema`.`memory_summary_by_user_by_event_name`.`USER`),\'background\',`performance_schema`.`memory_summary_by_user_by_event_name`.`USER`) AS `user`,sum(`performance_schema`.`memory_summary_by_user_by_event_name`.`CURRENT_COUNT_USED`) AS `current_count_used`,sum(`performance_schema`.`memory_summary_by_user_by_event_name`.`CURRENT_NUMBER_OF_BYTES_USED`) AS `current_allocated`,ifnull((sum(`performance_schema`.`memory_summary_by_user_by_event_name`.`CURRENT_NUMBER_OF_BYTES_USED`) / nullif(sum(`performance_schema`.`memory_summary_by_user_by_event_name`.`CURRENT_COUNT_USED`),0)),0) AS `current_avg_alloc`,max(`performance_schema`.`memory_summary_by_user_by_event_name`.`CURRENT_NUMBER_OF_BYTES_USED`) AS `current_max_alloc`,sum(`performance_schema`.`memory_summary_by_user_by_event_name`.`SUM_NUMBER_OF_BYTES_ALLOC`) AS `total_allocated` from `performance_schema`.`memory_summary_by_user_by_event_name` group by if(isnull(`performance_schema`.`memory_summary_by_user_by_event_name`.`USER`),\'background\',`performance_schema`.`memory_summary_by_user_by_event_name`.`USER`) order by sum(`performance_schema`.`memory_summary_by_user_by_event_name`.`CURRENT_NUMBER_OF_BYTES_USED`) desc +md5=044a028c2b40060ad1515c4a6866586d +updatable=0 +algorithm=1 +definer_user=mysql.sys +definer_host=localhost +suid=0 +with_check_option=0 +timestamp=2018-07-20 01:51:25 +create-version=1 +source=SELECT IF(user IS NULL, \'background\', user) AS user, SUM(current_count_used) AS current_count_used, SUM(current_number_of_bytes_used) AS current_allocated, IFNULL(SUM(current_number_of_bytes_used) / NULLIF(SUM(current_count_used), 0), 0) AS current_avg_alloc, MAX(current_number_of_bytes_used) AS current_max_alloc, SUM(sum_number_of_bytes_alloc) AS total_allocated FROM performance_schema.memory_summary_by_user_by_event_name GROUP BY IF(user IS NULL, \'background\', user) ORDER BY SUM(current_number_of_bytes_used) DESC +client_cs_name=utf8 +connection_cl_name=utf8_general_ci +view_body_utf8=select if(isnull(`performance_schema`.`memory_summary_by_user_by_event_name`.`USER`),\'background\',`performance_schema`.`memory_summary_by_user_by_event_name`.`USER`) AS `user`,sum(`performance_schema`.`memory_summary_by_user_by_event_name`.`CURRENT_COUNT_USED`) AS `current_count_used`,sum(`performance_schema`.`memory_summary_by_user_by_event_name`.`CURRENT_NUMBER_OF_BYTES_USED`) AS `current_allocated`,ifnull((sum(`performance_schema`.`memory_summary_by_user_by_event_name`.`CURRENT_NUMBER_OF_BYTES_USED`) / nullif(sum(`performance_schema`.`memory_summary_by_user_by_event_name`.`CURRENT_COUNT_USED`),0)),0) AS `current_avg_alloc`,max(`performance_schema`.`memory_summary_by_user_by_event_name`.`CURRENT_NUMBER_OF_BYTES_USED`) AS `current_max_alloc`,sum(`performance_schema`.`memory_summary_by_user_by_event_name`.`SUM_NUMBER_OF_BYTES_ALLOC`) AS `total_allocated` from `performance_schema`.`memory_summary_by_user_by_event_name` group by if(isnull(`performance_schema`.`memory_summary_by_user_by_event_name`.`USER`),\'background\',`performance_schema`.`memory_summary_by_user_by_event_name`.`USER`) order by sum(`performance_schema`.`memory_summary_by_user_by_event_name`.`CURRENT_NUMBER_OF_BYTES_USED`) desc diff --git a/zbx_env/var/lib/mysql/sys/x@0024memory_global_by_current_bytes.frm b/zbx_env/var/lib/mysql/sys/x@0024memory_global_by_current_bytes.frm new file mode 100644 index 000000000..18a8b1299 --- /dev/null +++ b/zbx_env/var/lib/mysql/sys/x@0024memory_global_by_current_bytes.frm @@ -0,0 +1,15 @@ +TYPE=VIEW +query=select `performance_schema`.`memory_summary_global_by_event_name`.`EVENT_NAME` AS `event_name`,`performance_schema`.`memory_summary_global_by_event_name`.`CURRENT_COUNT_USED` AS `current_count`,`performance_schema`.`memory_summary_global_by_event_name`.`CURRENT_NUMBER_OF_BYTES_USED` AS `current_alloc`,ifnull((`performance_schema`.`memory_summary_global_by_event_name`.`CURRENT_NUMBER_OF_BYTES_USED` / nullif(`performance_schema`.`memory_summary_global_by_event_name`.`CURRENT_COUNT_USED`,0)),0) AS `current_avg_alloc`,`performance_schema`.`memory_summary_global_by_event_name`.`HIGH_COUNT_USED` AS `high_count`,`performance_schema`.`memory_summary_global_by_event_name`.`HIGH_NUMBER_OF_BYTES_USED` AS `high_alloc`,ifnull((`performance_schema`.`memory_summary_global_by_event_name`.`HIGH_NUMBER_OF_BYTES_USED` / nullif(`performance_schema`.`memory_summary_global_by_event_name`.`HIGH_COUNT_USED`,0)),0) AS `high_avg_alloc` from `performance_schema`.`memory_summary_global_by_event_name` where (`performance_schema`.`memory_summary_global_by_event_name`.`CURRENT_NUMBER_OF_BYTES_USED` > 0) order by `performance_schema`.`memory_summary_global_by_event_name`.`CURRENT_NUMBER_OF_BYTES_USED` desc +md5=b3525c0bd96d804b396c1bf2fcc5feba +updatable=1 +algorithm=2 +definer_user=mysql.sys +definer_host=localhost +suid=0 +with_check_option=0 +timestamp=2018-07-20 01:51:25 +create-version=1 +source=SELECT event_name, current_count_used AS current_count, current_number_of_bytes_used AS current_alloc, IFNULL(current_number_of_bytes_used / NULLIF(current_count_used, 0), 0) AS current_avg_alloc, high_count_used AS high_count, high_number_of_bytes_used AS high_alloc, IFNULL(high_number_of_bytes_used / NULLIF(high_count_used, 0), 0) AS high_avg_alloc FROM performance_schema.memory_summary_global_by_event_name WHERE current_number_of_bytes_used > 0 ORDER BY current_number_of_bytes_used DESC +client_cs_name=utf8 +connection_cl_name=utf8_general_ci +view_body_utf8=select `performance_schema`.`memory_summary_global_by_event_name`.`EVENT_NAME` AS `event_name`,`performance_schema`.`memory_summary_global_by_event_name`.`CURRENT_COUNT_USED` AS `current_count`,`performance_schema`.`memory_summary_global_by_event_name`.`CURRENT_NUMBER_OF_BYTES_USED` AS `current_alloc`,ifnull((`performance_schema`.`memory_summary_global_by_event_name`.`CURRENT_NUMBER_OF_BYTES_USED` / nullif(`performance_schema`.`memory_summary_global_by_event_name`.`CURRENT_COUNT_USED`,0)),0) AS `current_avg_alloc`,`performance_schema`.`memory_summary_global_by_event_name`.`HIGH_COUNT_USED` AS `high_count`,`performance_schema`.`memory_summary_global_by_event_name`.`HIGH_NUMBER_OF_BYTES_USED` AS `high_alloc`,ifnull((`performance_schema`.`memory_summary_global_by_event_name`.`HIGH_NUMBER_OF_BYTES_USED` / nullif(`performance_schema`.`memory_summary_global_by_event_name`.`HIGH_COUNT_USED`,0)),0) AS `high_avg_alloc` from `performance_schema`.`memory_summary_global_by_event_name` where (`performance_schema`.`memory_summary_global_by_event_name`.`CURRENT_NUMBER_OF_BYTES_USED` > 0) order by `performance_schema`.`memory_summary_global_by_event_name`.`CURRENT_NUMBER_OF_BYTES_USED` desc diff --git a/zbx_env/var/lib/mysql/sys/x@0024memory_global_total.frm b/zbx_env/var/lib/mysql/sys/x@0024memory_global_total.frm new file mode 100644 index 000000000..dbda9ad22 --- /dev/null +++ b/zbx_env/var/lib/mysql/sys/x@0024memory_global_total.frm @@ -0,0 +1,15 @@ +TYPE=VIEW +query=select sum(`performance_schema`.`memory_summary_global_by_event_name`.`CURRENT_NUMBER_OF_BYTES_USED`) AS `total_allocated` from `performance_schema`.`memory_summary_global_by_event_name` +md5=6f943b5a93d4d8b6c06840dbfa5027a9 +updatable=0 +algorithm=1 +definer_user=mysql.sys +definer_host=localhost +suid=0 +with_check_option=0 +timestamp=2018-07-20 01:51:25 +create-version=1 +source=SELECT SUM(CURRENT_NUMBER_OF_BYTES_USED) total_allocated FROM performance_schema.memory_summary_global_by_event_name +client_cs_name=utf8 +connection_cl_name=utf8_general_ci +view_body_utf8=select sum(`performance_schema`.`memory_summary_global_by_event_name`.`CURRENT_NUMBER_OF_BYTES_USED`) AS `total_allocated` from `performance_schema`.`memory_summary_global_by_event_name` diff --git a/zbx_env/var/lib/mysql/sys/x@0024processlist.frm b/zbx_env/var/lib/mysql/sys/x@0024processlist.frm new file mode 100644 index 000000000..78ca25b75 --- /dev/null +++ b/zbx_env/var/lib/mysql/sys/x@0024processlist.frm @@ -0,0 +1,15 @@ +TYPE=VIEW +query=select `pps`.`THREAD_ID` AS `thd_id`,`pps`.`PROCESSLIST_ID` AS `conn_id`,if((`pps`.`NAME` = \'thread/sql/one_connection\'),concat(`pps`.`PROCESSLIST_USER`,\'@\',`pps`.`PROCESSLIST_HOST`),replace(`pps`.`NAME`,\'thread/\',\'\')) AS `user`,`pps`.`PROCESSLIST_DB` AS `db`,`pps`.`PROCESSLIST_COMMAND` AS `command`,`pps`.`PROCESSLIST_STATE` AS `state`,`pps`.`PROCESSLIST_TIME` AS `time`,`pps`.`PROCESSLIST_INFO` AS `current_statement`,if(isnull(`esc`.`END_EVENT_ID`),`esc`.`TIMER_WAIT`,NULL) AS `statement_latency`,if(isnull(`esc`.`END_EVENT_ID`),round((100 * (`estc`.`WORK_COMPLETED` / `estc`.`WORK_ESTIMATED`)),2),NULL) AS `progress`,`esc`.`LOCK_TIME` AS `lock_latency`,`esc`.`ROWS_EXAMINED` AS `rows_examined`,`esc`.`ROWS_SENT` AS `rows_sent`,`esc`.`ROWS_AFFECTED` AS `rows_affected`,`esc`.`CREATED_TMP_TABLES` AS `tmp_tables`,`esc`.`CREATED_TMP_DISK_TABLES` AS `tmp_disk_tables`,if(((`esc`.`NO_GOOD_INDEX_USED` > 0) or (`esc`.`NO_INDEX_USED` > 0)),\'YES\',\'NO\') AS `full_scan`,if((`esc`.`END_EVENT_ID` is not null),`esc`.`SQL_TEXT`,NULL) AS `last_statement`,if((`esc`.`END_EVENT_ID` is not null),`esc`.`TIMER_WAIT`,NULL) AS `last_statement_latency`,`mem`.`current_allocated` AS `current_memory`,`ewc`.`EVENT_NAME` AS `last_wait`,if((isnull(`ewc`.`END_EVENT_ID`) and (`ewc`.`EVENT_NAME` is not null)),\'Still Waiting\',`ewc`.`TIMER_WAIT`) AS `last_wait_latency`,`ewc`.`SOURCE` AS `source`,`etc`.`TIMER_WAIT` AS `trx_latency`,`etc`.`STATE` AS `trx_state`,`etc`.`AUTOCOMMIT` AS `trx_autocommit`,`conattr_pid`.`ATTR_VALUE` AS `pid`,`conattr_progname`.`ATTR_VALUE` AS `program_name` from (((((((`performance_schema`.`threads` `pps` left join `performance_schema`.`events_waits_current` `ewc` on((`pps`.`THREAD_ID` = `ewc`.`THREAD_ID`))) left join `performance_schema`.`events_stages_current` `estc` on((`pps`.`THREAD_ID` = `estc`.`THREAD_ID`))) left join `performance_schema`.`events_statements_current` `esc` on((`pps`.`THREAD_ID` = `esc`.`THREAD_ID`))) left join `performance_schema`.`events_transactions_current` `etc` on((`pps`.`THREAD_ID` = `etc`.`THREAD_ID`))) left join `sys`.`x$memory_by_thread_by_current_bytes` `mem` on((`pps`.`THREAD_ID` = `mem`.`thread_id`))) left join `performance_schema`.`session_connect_attrs` `conattr_pid` on(((`conattr_pid`.`PROCESSLIST_ID` = `pps`.`PROCESSLIST_ID`) and (`conattr_pid`.`ATTR_NAME` = \'_pid\')))) left join `performance_schema`.`session_connect_attrs` `conattr_progname` on(((`conattr_progname`.`PROCESSLIST_ID` = `pps`.`PROCESSLIST_ID`) and (`conattr_progname`.`ATTR_NAME` = \'program_name\')))) order by `pps`.`PROCESSLIST_TIME` desc,`last_wait_latency` desc +md5=ee7a3b5b10ac522dd208856a6366bda1 +updatable=0 +algorithm=1 +definer_user=mysql.sys +definer_host=localhost +suid=0 +with_check_option=0 +timestamp=2018-07-20 01:51:25 +create-version=1 +source=SELECT pps.thread_id AS thd_id, pps.processlist_id AS conn_id, IF(pps.name = \'thread/sql/one_connection\', CONCAT(pps.processlist_user, \'@\', pps.processlist_host), REPLACE(pps.name, \'thread/\', \'\')) user, pps.processlist_db AS db, pps.processlist_command AS command, pps.processlist_state AS state, pps.processlist_time AS time, pps.processlist_info AS current_statement, IF(esc.end_event_id IS NULL, esc.timer_wait, NULL) AS statement_latency, IF(esc.end_event_id IS NULL, ROUND(100 * (estc.work_completed / estc.work_estimated), 2), NULL) AS progress, esc.lock_time AS lock_latency, esc.rows_examined AS rows_examined, esc.rows_sent AS rows_sent, esc.rows_affected AS rows_affected, esc.created_tmp_tables AS tmp_tables, esc.created_tmp_disk_tables AS tmp_disk_tables, IF(esc.no_good_index_used > 0 OR esc.no_index_used > 0, \'YES\', \'NO\') AS full_scan, IF(esc.end_event_id IS NOT NULL, esc.sql_text, NULL) AS last_statement, IF(esc.end_event_id IS NOT NULL, esc.timer_wait, NULL) AS last_statement_latency, mem.current_allocated AS current_memory, ewc.event_name AS last_wait, IF(ewc.end_event_id IS NULL AND ewc.event_name IS NOT NULL, \'Still Waiting\', ewc.timer_wait) last_wait_latency, ewc.source, etc.timer_wait AS trx_latency, etc.state AS trx_state, etc.autocommit AS trx_autocommit, conattr_pid.attr_value as pid, conattr_progname.attr_value as program_name FROM performance_schema.threads AS pps LEFT JOIN performance_schema.events_waits_current AS ewc USING (thread_id) LEFT JOIN performance_schema.events_stages_current AS estc USING (thread_id) LEFT JOIN performance_schema.events_statements_current AS esc USING (thread_id) LEFT JOIN performance_schema.events_transactions_current AS etc USING (thread_id) LEFT JOIN sys.x$memory_by_thread_by_current_bytes AS mem USING (thread_id) LEFT JOIN performance_schema.session_connect_attrs AS conattr_pid ON conattr_pid.processlist_id=pps.processlist_id and conattr_pid.attr_name=\'_pid\' LEFT JOIN performance_schema.session_connect_attrs AS conattr_progname ON conattr_progname.processlist_id=pps.processlist_id and conattr_progname.attr_name=\'program_name\' ORDER BY pps.processlist_time DESC, last_wait_latency DESC +client_cs_name=utf8 +connection_cl_name=utf8_general_ci +view_body_utf8=select `pps`.`THREAD_ID` AS `thd_id`,`pps`.`PROCESSLIST_ID` AS `conn_id`,if((`pps`.`NAME` = \'thread/sql/one_connection\'),concat(`pps`.`PROCESSLIST_USER`,\'@\',`pps`.`PROCESSLIST_HOST`),replace(`pps`.`NAME`,\'thread/\',\'\')) AS `user`,`pps`.`PROCESSLIST_DB` AS `db`,`pps`.`PROCESSLIST_COMMAND` AS `command`,`pps`.`PROCESSLIST_STATE` AS `state`,`pps`.`PROCESSLIST_TIME` AS `time`,`pps`.`PROCESSLIST_INFO` AS `current_statement`,if(isnull(`esc`.`END_EVENT_ID`),`esc`.`TIMER_WAIT`,NULL) AS `statement_latency`,if(isnull(`esc`.`END_EVENT_ID`),round((100 * (`estc`.`WORK_COMPLETED` / `estc`.`WORK_ESTIMATED`)),2),NULL) AS `progress`,`esc`.`LOCK_TIME` AS `lock_latency`,`esc`.`ROWS_EXAMINED` AS `rows_examined`,`esc`.`ROWS_SENT` AS `rows_sent`,`esc`.`ROWS_AFFECTED` AS `rows_affected`,`esc`.`CREATED_TMP_TABLES` AS `tmp_tables`,`esc`.`CREATED_TMP_DISK_TABLES` AS `tmp_disk_tables`,if(((`esc`.`NO_GOOD_INDEX_USED` > 0) or (`esc`.`NO_INDEX_USED` > 0)),\'YES\',\'NO\') AS `full_scan`,if((`esc`.`END_EVENT_ID` is not null),`esc`.`SQL_TEXT`,NULL) AS `last_statement`,if((`esc`.`END_EVENT_ID` is not null),`esc`.`TIMER_WAIT`,NULL) AS `last_statement_latency`,`mem`.`current_allocated` AS `current_memory`,`ewc`.`EVENT_NAME` AS `last_wait`,if((isnull(`ewc`.`END_EVENT_ID`) and (`ewc`.`EVENT_NAME` is not null)),\'Still Waiting\',`ewc`.`TIMER_WAIT`) AS `last_wait_latency`,`ewc`.`SOURCE` AS `source`,`etc`.`TIMER_WAIT` AS `trx_latency`,`etc`.`STATE` AS `trx_state`,`etc`.`AUTOCOMMIT` AS `trx_autocommit`,`conattr_pid`.`ATTR_VALUE` AS `pid`,`conattr_progname`.`ATTR_VALUE` AS `program_name` from (((((((`performance_schema`.`threads` `pps` left join `performance_schema`.`events_waits_current` `ewc` on((`pps`.`THREAD_ID` = `ewc`.`THREAD_ID`))) left join `performance_schema`.`events_stages_current` `estc` on((`pps`.`THREAD_ID` = `estc`.`THREAD_ID`))) left join `performance_schema`.`events_statements_current` `esc` on((`pps`.`THREAD_ID` = `esc`.`THREAD_ID`))) left join `performance_schema`.`events_transactions_current` `etc` on((`pps`.`THREAD_ID` = `etc`.`THREAD_ID`))) left join `sys`.`x$memory_by_thread_by_current_bytes` `mem` on((`pps`.`THREAD_ID` = `mem`.`thread_id`))) left join `performance_schema`.`session_connect_attrs` `conattr_pid` on(((`conattr_pid`.`PROCESSLIST_ID` = `pps`.`PROCESSLIST_ID`) and (`conattr_pid`.`ATTR_NAME` = \'_pid\')))) left join `performance_schema`.`session_connect_attrs` `conattr_progname` on(((`conattr_progname`.`PROCESSLIST_ID` = `pps`.`PROCESSLIST_ID`) and (`conattr_progname`.`ATTR_NAME` = \'program_name\')))) order by `pps`.`PROCESSLIST_TIME` desc,`last_wait_latency` desc diff --git a/zbx_env/var/lib/mysql/sys/x@0024ps_digest_95th_percentile_by_avg_us.frm b/zbx_env/var/lib/mysql/sys/x@0024ps_digest_95th_percentile_by_avg_us.frm new file mode 100644 index 000000000..a8bf921a0 --- /dev/null +++ b/zbx_env/var/lib/mysql/sys/x@0024ps_digest_95th_percentile_by_avg_us.frm @@ -0,0 +1,15 @@ +TYPE=VIEW +query=select `s2`.`avg_us` AS `avg_us`,ifnull((sum(`s1`.`cnt`) / nullif((select count(0) from `performance_schema`.`events_statements_summary_by_digest`),0)),0) AS `percentile` from (`sys`.`x$ps_digest_avg_latency_distribution` `s1` join `sys`.`x$ps_digest_avg_latency_distribution` `s2` on((`s1`.`avg_us` <= `s2`.`avg_us`))) group by `s2`.`avg_us` having (ifnull((sum(`s1`.`cnt`) / nullif((select count(0) from `performance_schema`.`events_statements_summary_by_digest`),0)),0) > 0.95) order by `percentile` limit 1 +md5=38844a2231445ad0ee62a505f5144e44 +updatable=0 +algorithm=1 +definer_user=mysql.sys +definer_host=localhost +suid=0 +with_check_option=0 +timestamp=2018-07-20 01:51:25 +create-version=1 +source=SELECT s2.avg_us avg_us, IFNULL(SUM(s1.cnt)/NULLIF((SELECT COUNT(*) FROM performance_schema.events_statements_summary_by_digest), 0), 0) percentile FROM sys.x$ps_digest_avg_latency_distribution AS s1 JOIN sys.x$ps_digest_avg_latency_distribution AS s2 ON s1.avg_us <= s2.avg_us GROUP BY s2.avg_us HAVING IFNULL(SUM(s1.cnt)/NULLIF((SELECT COUNT(*) FROM performance_schema.events_statements_summary_by_digest), 0), 0) > 0.95 ORDER BY percentile LIMIT 1 +client_cs_name=utf8 +connection_cl_name=utf8_general_ci +view_body_utf8=select `s2`.`avg_us` AS `avg_us`,ifnull((sum(`s1`.`cnt`) / nullif((select count(0) from `performance_schema`.`events_statements_summary_by_digest`),0)),0) AS `percentile` from (`sys`.`x$ps_digest_avg_latency_distribution` `s1` join `sys`.`x$ps_digest_avg_latency_distribution` `s2` on((`s1`.`avg_us` <= `s2`.`avg_us`))) group by `s2`.`avg_us` having (ifnull((sum(`s1`.`cnt`) / nullif((select count(0) from `performance_schema`.`events_statements_summary_by_digest`),0)),0) > 0.95) order by `percentile` limit 1 diff --git a/zbx_env/var/lib/mysql/sys/x@0024ps_digest_avg_latency_distribution.frm b/zbx_env/var/lib/mysql/sys/x@0024ps_digest_avg_latency_distribution.frm new file mode 100644 index 000000000..16531b3e5 --- /dev/null +++ b/zbx_env/var/lib/mysql/sys/x@0024ps_digest_avg_latency_distribution.frm @@ -0,0 +1,15 @@ +TYPE=VIEW +query=select count(0) AS `cnt`,round((`performance_schema`.`events_statements_summary_by_digest`.`AVG_TIMER_WAIT` / 1000000),0) AS `avg_us` from `performance_schema`.`events_statements_summary_by_digest` group by `avg_us` +md5=06f1f0e6df61fcfe10c0118e39bc5047 +updatable=0 +algorithm=1 +definer_user=mysql.sys +definer_host=localhost +suid=0 +with_check_option=0 +timestamp=2018-07-20 01:51:25 +create-version=1 +source=SELECT COUNT(*) cnt, ROUND(avg_timer_wait/1000000) AS avg_us FROM performance_schema.events_statements_summary_by_digest GROUP BY avg_us +client_cs_name=utf8 +connection_cl_name=utf8_general_ci +view_body_utf8=select count(0) AS `cnt`,round((`performance_schema`.`events_statements_summary_by_digest`.`AVG_TIMER_WAIT` / 1000000),0) AS `avg_us` from `performance_schema`.`events_statements_summary_by_digest` group by `avg_us` diff --git a/zbx_env/var/lib/mysql/sys/x@0024ps_schema_table_statistics_io.frm b/zbx_env/var/lib/mysql/sys/x@0024ps_schema_table_statistics_io.frm new file mode 100644 index 000000000..edf88a4c5 --- /dev/null +++ b/zbx_env/var/lib/mysql/sys/x@0024ps_schema_table_statistics_io.frm @@ -0,0 +1,15 @@ +TYPE=VIEW +query=select `extract_schema_from_file_name`(`performance_schema`.`file_summary_by_instance`.`FILE_NAME`) AS `table_schema`,`extract_table_from_file_name`(`performance_schema`.`file_summary_by_instance`.`FILE_NAME`) AS `table_name`,sum(`performance_schema`.`file_summary_by_instance`.`COUNT_READ`) AS `count_read`,sum(`performance_schema`.`file_summary_by_instance`.`SUM_NUMBER_OF_BYTES_READ`) AS `sum_number_of_bytes_read`,sum(`performance_schema`.`file_summary_by_instance`.`SUM_TIMER_READ`) AS `sum_timer_read`,sum(`performance_schema`.`file_summary_by_instance`.`COUNT_WRITE`) AS `count_write`,sum(`performance_schema`.`file_summary_by_instance`.`SUM_NUMBER_OF_BYTES_WRITE`) AS `sum_number_of_bytes_write`,sum(`performance_schema`.`file_summary_by_instance`.`SUM_TIMER_WRITE`) AS `sum_timer_write`,sum(`performance_schema`.`file_summary_by_instance`.`COUNT_MISC`) AS `count_misc`,sum(`performance_schema`.`file_summary_by_instance`.`SUM_TIMER_MISC`) AS `sum_timer_misc` from `performance_schema`.`file_summary_by_instance` group by `table_schema`,`table_name` +md5=6e22f7c5621b846eef3dbcf31d8df821 +updatable=0 +algorithm=1 +definer_user=mysql.sys +definer_host=localhost +suid=0 +with_check_option=0 +timestamp=2018-07-20 01:51:25 +create-version=1 +source=SELECT extract_schema_from_file_name(file_name) AS table_schema, extract_table_from_file_name(file_name) AS table_name, SUM(count_read) AS count_read, SUM(sum_number_of_bytes_read) AS sum_number_of_bytes_read, SUM(sum_timer_read) AS sum_timer_read, SUM(count_write) AS count_write, SUM(sum_number_of_bytes_write) AS sum_number_of_bytes_write, SUM(sum_timer_write) AS sum_timer_write, SUM(count_misc) AS count_misc, SUM(sum_timer_misc) AS sum_timer_misc FROM performance_schema.file_summary_by_instance GROUP BY table_schema, table_name +client_cs_name=utf8 +connection_cl_name=utf8_general_ci +view_body_utf8=select `extract_schema_from_file_name`(`performance_schema`.`file_summary_by_instance`.`FILE_NAME`) AS `table_schema`,`extract_table_from_file_name`(`performance_schema`.`file_summary_by_instance`.`FILE_NAME`) AS `table_name`,sum(`performance_schema`.`file_summary_by_instance`.`COUNT_READ`) AS `count_read`,sum(`performance_schema`.`file_summary_by_instance`.`SUM_NUMBER_OF_BYTES_READ`) AS `sum_number_of_bytes_read`,sum(`performance_schema`.`file_summary_by_instance`.`SUM_TIMER_READ`) AS `sum_timer_read`,sum(`performance_schema`.`file_summary_by_instance`.`COUNT_WRITE`) AS `count_write`,sum(`performance_schema`.`file_summary_by_instance`.`SUM_NUMBER_OF_BYTES_WRITE`) AS `sum_number_of_bytes_write`,sum(`performance_schema`.`file_summary_by_instance`.`SUM_TIMER_WRITE`) AS `sum_timer_write`,sum(`performance_schema`.`file_summary_by_instance`.`COUNT_MISC`) AS `count_misc`,sum(`performance_schema`.`file_summary_by_instance`.`SUM_TIMER_MISC`) AS `sum_timer_misc` from `performance_schema`.`file_summary_by_instance` group by `table_schema`,`table_name` diff --git a/zbx_env/var/lib/mysql/sys/x@0024schema_flattened_keys.frm b/zbx_env/var/lib/mysql/sys/x@0024schema_flattened_keys.frm new file mode 100644 index 000000000..2b256bdff --- /dev/null +++ b/zbx_env/var/lib/mysql/sys/x@0024schema_flattened_keys.frm @@ -0,0 +1,15 @@ +TYPE=VIEW +query=select `information_schema`.`STATISTICS`.`TABLE_SCHEMA` AS `table_schema`,`information_schema`.`STATISTICS`.`TABLE_NAME` AS `table_name`,`information_schema`.`STATISTICS`.`INDEX_NAME` AS `index_name`,max(`information_schema`.`STATISTICS`.`NON_UNIQUE`) AS `non_unique`,max(if(isnull(`information_schema`.`STATISTICS`.`SUB_PART`),0,1)) AS `subpart_exists`,group_concat(`information_schema`.`STATISTICS`.`COLUMN_NAME` order by `information_schema`.`STATISTICS`.`SEQ_IN_INDEX` ASC separator \',\') AS `index_columns` from `INFORMATION_SCHEMA`.`STATISTICS` where ((`information_schema`.`STATISTICS`.`INDEX_TYPE` = \'BTREE\') and (`information_schema`.`STATISTICS`.`TABLE_SCHEMA` not in (\'mysql\',\'sys\',\'INFORMATION_SCHEMA\',\'PERFORMANCE_SCHEMA\'))) group by `information_schema`.`STATISTICS`.`TABLE_SCHEMA`,`information_schema`.`STATISTICS`.`TABLE_NAME`,`information_schema`.`STATISTICS`.`INDEX_NAME` +md5=f9b8ea559fd673333fbc207077025826 +updatable=0 +algorithm=1 +definer_user=mysql.sys +definer_host=localhost +suid=0 +with_check_option=0 +timestamp=2018-07-20 01:51:25 +create-version=1 +source=SELECT TABLE_SCHEMA, TABLE_NAME, INDEX_NAME, MAX(NON_UNIQUE) AS non_unique, MAX(IF(SUB_PART IS NULL, 0, 1)) AS subpart_exists, GROUP_CONCAT(COLUMN_NAME ORDER BY SEQ_IN_INDEX) AS index_columns FROM INFORMATION_SCHEMA.STATISTICS WHERE INDEX_TYPE=\'BTREE\' AND TABLE_SCHEMA NOT IN (\'mysql\', \'sys\', \'INFORMATION_SCHEMA\', \'PERFORMANCE_SCHEMA\') GROUP BY TABLE_SCHEMA, TABLE_NAME, INDEX_NAME +client_cs_name=utf8 +connection_cl_name=utf8_general_ci +view_body_utf8=select `information_schema`.`STATISTICS`.`TABLE_SCHEMA` AS `table_schema`,`information_schema`.`STATISTICS`.`TABLE_NAME` AS `table_name`,`information_schema`.`STATISTICS`.`INDEX_NAME` AS `index_name`,max(`information_schema`.`STATISTICS`.`NON_UNIQUE`) AS `non_unique`,max(if(isnull(`information_schema`.`STATISTICS`.`SUB_PART`),0,1)) AS `subpart_exists`,group_concat(`information_schema`.`STATISTICS`.`COLUMN_NAME` order by `information_schema`.`STATISTICS`.`SEQ_IN_INDEX` ASC separator \',\') AS `index_columns` from `INFORMATION_SCHEMA`.`STATISTICS` where ((`information_schema`.`STATISTICS`.`INDEX_TYPE` = \'BTREE\') and (`information_schema`.`STATISTICS`.`TABLE_SCHEMA` not in (\'mysql\',\'sys\',\'INFORMATION_SCHEMA\',\'PERFORMANCE_SCHEMA\'))) group by `information_schema`.`STATISTICS`.`TABLE_SCHEMA`,`information_schema`.`STATISTICS`.`TABLE_NAME`,`information_schema`.`STATISTICS`.`INDEX_NAME` diff --git a/zbx_env/var/lib/mysql/sys/x@0024schema_index_statistics.frm b/zbx_env/var/lib/mysql/sys/x@0024schema_index_statistics.frm new file mode 100644 index 000000000..c138237de --- /dev/null +++ b/zbx_env/var/lib/mysql/sys/x@0024schema_index_statistics.frm @@ -0,0 +1,15 @@ +TYPE=VIEW +query=select `performance_schema`.`table_io_waits_summary_by_index_usage`.`OBJECT_SCHEMA` AS `table_schema`,`performance_schema`.`table_io_waits_summary_by_index_usage`.`OBJECT_NAME` AS `table_name`,`performance_schema`.`table_io_waits_summary_by_index_usage`.`INDEX_NAME` AS `index_name`,`performance_schema`.`table_io_waits_summary_by_index_usage`.`COUNT_FETCH` AS `rows_selected`,`performance_schema`.`table_io_waits_summary_by_index_usage`.`SUM_TIMER_FETCH` AS `select_latency`,`performance_schema`.`table_io_waits_summary_by_index_usage`.`COUNT_INSERT` AS `rows_inserted`,`performance_schema`.`table_io_waits_summary_by_index_usage`.`SUM_TIMER_INSERT` AS `insert_latency`,`performance_schema`.`table_io_waits_summary_by_index_usage`.`COUNT_UPDATE` AS `rows_updated`,`performance_schema`.`table_io_waits_summary_by_index_usage`.`SUM_TIMER_UPDATE` AS `update_latency`,`performance_schema`.`table_io_waits_summary_by_index_usage`.`COUNT_DELETE` AS `rows_deleted`,`performance_schema`.`table_io_waits_summary_by_index_usage`.`SUM_TIMER_INSERT` AS `delete_latency` from `performance_schema`.`table_io_waits_summary_by_index_usage` where (`performance_schema`.`table_io_waits_summary_by_index_usage`.`INDEX_NAME` is not null) order by `performance_schema`.`table_io_waits_summary_by_index_usage`.`SUM_TIMER_WAIT` desc +md5=b76658003bf046d37576e5dcf82a9f35 +updatable=1 +algorithm=2 +definer_user=mysql.sys +definer_host=localhost +suid=0 +with_check_option=0 +timestamp=2018-07-20 01:51:25 +create-version=1 +source=SELECT OBJECT_SCHEMA AS table_schema, OBJECT_NAME AS table_name, INDEX_NAME as index_name, COUNT_FETCH AS rows_selected, SUM_TIMER_FETCH AS select_latency, COUNT_INSERT AS rows_inserted, SUM_TIMER_INSERT AS insert_latency, COUNT_UPDATE AS rows_updated, SUM_TIMER_UPDATE AS update_latency, COUNT_DELETE AS rows_deleted, SUM_TIMER_INSERT AS delete_latency FROM performance_schema.table_io_waits_summary_by_index_usage WHERE index_name IS NOT NULL ORDER BY sum_timer_wait DESC +client_cs_name=utf8 +connection_cl_name=utf8_general_ci +view_body_utf8=select `performance_schema`.`table_io_waits_summary_by_index_usage`.`OBJECT_SCHEMA` AS `table_schema`,`performance_schema`.`table_io_waits_summary_by_index_usage`.`OBJECT_NAME` AS `table_name`,`performance_schema`.`table_io_waits_summary_by_index_usage`.`INDEX_NAME` AS `index_name`,`performance_schema`.`table_io_waits_summary_by_index_usage`.`COUNT_FETCH` AS `rows_selected`,`performance_schema`.`table_io_waits_summary_by_index_usage`.`SUM_TIMER_FETCH` AS `select_latency`,`performance_schema`.`table_io_waits_summary_by_index_usage`.`COUNT_INSERT` AS `rows_inserted`,`performance_schema`.`table_io_waits_summary_by_index_usage`.`SUM_TIMER_INSERT` AS `insert_latency`,`performance_schema`.`table_io_waits_summary_by_index_usage`.`COUNT_UPDATE` AS `rows_updated`,`performance_schema`.`table_io_waits_summary_by_index_usage`.`SUM_TIMER_UPDATE` AS `update_latency`,`performance_schema`.`table_io_waits_summary_by_index_usage`.`COUNT_DELETE` AS `rows_deleted`,`performance_schema`.`table_io_waits_summary_by_index_usage`.`SUM_TIMER_INSERT` AS `delete_latency` from `performance_schema`.`table_io_waits_summary_by_index_usage` where (`performance_schema`.`table_io_waits_summary_by_index_usage`.`INDEX_NAME` is not null) order by `performance_schema`.`table_io_waits_summary_by_index_usage`.`SUM_TIMER_WAIT` desc diff --git a/zbx_env/var/lib/mysql/sys/x@0024schema_table_lock_waits.frm b/zbx_env/var/lib/mysql/sys/x@0024schema_table_lock_waits.frm new file mode 100644 index 000000000..9f0f62189 --- /dev/null +++ b/zbx_env/var/lib/mysql/sys/x@0024schema_table_lock_waits.frm @@ -0,0 +1,15 @@ +TYPE=VIEW +query=select `g`.`OBJECT_SCHEMA` AS `object_schema`,`g`.`OBJECT_NAME` AS `object_name`,`pt`.`THREAD_ID` AS `waiting_thread_id`,`pt`.`PROCESSLIST_ID` AS `waiting_pid`,`sys`.`ps_thread_account`(`p`.`OWNER_THREAD_ID`) AS `waiting_account`,`p`.`LOCK_TYPE` AS `waiting_lock_type`,`p`.`LOCK_DURATION` AS `waiting_lock_duration`,`pt`.`PROCESSLIST_INFO` AS `waiting_query`,`pt`.`PROCESSLIST_TIME` AS `waiting_query_secs`,`ps`.`ROWS_AFFECTED` AS `waiting_query_rows_affected`,`ps`.`ROWS_EXAMINED` AS `waiting_query_rows_examined`,`gt`.`THREAD_ID` AS `blocking_thread_id`,`gt`.`PROCESSLIST_ID` AS `blocking_pid`,`sys`.`ps_thread_account`(`g`.`OWNER_THREAD_ID`) AS `blocking_account`,`g`.`LOCK_TYPE` AS `blocking_lock_type`,`g`.`LOCK_DURATION` AS `blocking_lock_duration`,concat(\'KILL QUERY \',`gt`.`PROCESSLIST_ID`) AS `sql_kill_blocking_query`,concat(\'KILL \',`gt`.`PROCESSLIST_ID`) AS `sql_kill_blocking_connection` from (((((`performance_schema`.`metadata_locks` `g` join `performance_schema`.`metadata_locks` `p` on(((`g`.`OBJECT_TYPE` = `p`.`OBJECT_TYPE`) and (`g`.`OBJECT_SCHEMA` = `p`.`OBJECT_SCHEMA`) and (`g`.`OBJECT_NAME` = `p`.`OBJECT_NAME`) and (`g`.`LOCK_STATUS` = \'GRANTED\') and (`p`.`LOCK_STATUS` = \'PENDING\')))) join `performance_schema`.`threads` `gt` on((`g`.`OWNER_THREAD_ID` = `gt`.`THREAD_ID`))) join `performance_schema`.`threads` `pt` on((`p`.`OWNER_THREAD_ID` = `pt`.`THREAD_ID`))) left join `performance_schema`.`events_statements_current` `gs` on((`g`.`OWNER_THREAD_ID` = `gs`.`THREAD_ID`))) left join `performance_schema`.`events_statements_current` `ps` on((`p`.`OWNER_THREAD_ID` = `ps`.`THREAD_ID`))) where (`g`.`OBJECT_TYPE` = \'TABLE\') +md5=348c747789b98e9d9a015ac8b79c7cad +updatable=0 +algorithm=1 +definer_user=mysql.sys +definer_host=localhost +suid=0 +with_check_option=0 +timestamp=2018-07-20 01:51:25 +create-version=1 +source=SELECT g.object_schema AS object_schema, g.object_name AS object_name, pt.thread_id AS waiting_thread_id, pt.processlist_id AS waiting_pid, sys.ps_thread_account(p.owner_thread_id) AS waiting_account, p.lock_type AS waiting_lock_type, p.lock_duration AS waiting_lock_duration, pt.processlist_info AS waiting_query, pt.processlist_time AS waiting_query_secs, ps.rows_affected AS waiting_query_rows_affected, ps.rows_examined AS waiting_query_rows_examined, gt.thread_id AS blocking_thread_id, gt.processlist_id AS blocking_pid, sys.ps_thread_account(g.owner_thread_id) AS blocking_account, g.lock_type AS blocking_lock_type, g.lock_duration AS blocking_lock_duration, CONCAT(\'KILL QUERY \', gt.processlist_id) AS sql_kill_blocking_query, CONCAT(\'KILL \', gt.processlist_id) AS sql_kill_blocking_connection FROM performance_schema.metadata_locks g INNER JOIN performance_schema.metadata_locks p ON g.object_type = p.object_type AND g.object_schema = p.object_schema AND g.object_name = p.object_name AND g.lock_status = \'GRANTED\' AND p.lock_status = \'PENDING\' INNER JOIN performance_schema.threads gt ON g.owner_thread_id = gt.thread_id INNER JOIN performance_schema.threads pt ON p.owner_thread_id = pt.thread_id LEFT JOIN performance_schema.events_statements_current gs ON g.owner_thread_id = gs.thread_id LEFT JOIN performance_schema.events_statements_current ps ON p.owner_thread_id = ps.thread_id WHERE g.object_type = \'TABLE\' +client_cs_name=utf8 +connection_cl_name=utf8_general_ci +view_body_utf8=select `g`.`OBJECT_SCHEMA` AS `object_schema`,`g`.`OBJECT_NAME` AS `object_name`,`pt`.`THREAD_ID` AS `waiting_thread_id`,`pt`.`PROCESSLIST_ID` AS `waiting_pid`,`sys`.`ps_thread_account`(`p`.`OWNER_THREAD_ID`) AS `waiting_account`,`p`.`LOCK_TYPE` AS `waiting_lock_type`,`p`.`LOCK_DURATION` AS `waiting_lock_duration`,`pt`.`PROCESSLIST_INFO` AS `waiting_query`,`pt`.`PROCESSLIST_TIME` AS `waiting_query_secs`,`ps`.`ROWS_AFFECTED` AS `waiting_query_rows_affected`,`ps`.`ROWS_EXAMINED` AS `waiting_query_rows_examined`,`gt`.`THREAD_ID` AS `blocking_thread_id`,`gt`.`PROCESSLIST_ID` AS `blocking_pid`,`sys`.`ps_thread_account`(`g`.`OWNER_THREAD_ID`) AS `blocking_account`,`g`.`LOCK_TYPE` AS `blocking_lock_type`,`g`.`LOCK_DURATION` AS `blocking_lock_duration`,concat(\'KILL QUERY \',`gt`.`PROCESSLIST_ID`) AS `sql_kill_blocking_query`,concat(\'KILL \',`gt`.`PROCESSLIST_ID`) AS `sql_kill_blocking_connection` from (((((`performance_schema`.`metadata_locks` `g` join `performance_schema`.`metadata_locks` `p` on(((`g`.`OBJECT_TYPE` = `p`.`OBJECT_TYPE`) and (`g`.`OBJECT_SCHEMA` = `p`.`OBJECT_SCHEMA`) and (`g`.`OBJECT_NAME` = `p`.`OBJECT_NAME`) and (`g`.`LOCK_STATUS` = \'GRANTED\') and (`p`.`LOCK_STATUS` = \'PENDING\')))) join `performance_schema`.`threads` `gt` on((`g`.`OWNER_THREAD_ID` = `gt`.`THREAD_ID`))) join `performance_schema`.`threads` `pt` on((`p`.`OWNER_THREAD_ID` = `pt`.`THREAD_ID`))) left join `performance_schema`.`events_statements_current` `gs` on((`g`.`OWNER_THREAD_ID` = `gs`.`THREAD_ID`))) left join `performance_schema`.`events_statements_current` `ps` on((`p`.`OWNER_THREAD_ID` = `ps`.`THREAD_ID`))) where (`g`.`OBJECT_TYPE` = \'TABLE\') diff --git a/zbx_env/var/lib/mysql/sys/x@0024schema_table_statistics.frm b/zbx_env/var/lib/mysql/sys/x@0024schema_table_statistics.frm new file mode 100644 index 000000000..a9f5cb226 --- /dev/null +++ b/zbx_env/var/lib/mysql/sys/x@0024schema_table_statistics.frm @@ -0,0 +1,15 @@ +TYPE=VIEW +query=select `pst`.`OBJECT_SCHEMA` AS `table_schema`,`pst`.`OBJECT_NAME` AS `table_name`,`pst`.`SUM_TIMER_WAIT` AS `total_latency`,`pst`.`COUNT_FETCH` AS `rows_fetched`,`pst`.`SUM_TIMER_FETCH` AS `fetch_latency`,`pst`.`COUNT_INSERT` AS `rows_inserted`,`pst`.`SUM_TIMER_INSERT` AS `insert_latency`,`pst`.`COUNT_UPDATE` AS `rows_updated`,`pst`.`SUM_TIMER_UPDATE` AS `update_latency`,`pst`.`COUNT_DELETE` AS `rows_deleted`,`pst`.`SUM_TIMER_DELETE` AS `delete_latency`,`fsbi`.`count_read` AS `io_read_requests`,`fsbi`.`sum_number_of_bytes_read` AS `io_read`,`fsbi`.`sum_timer_read` AS `io_read_latency`,`fsbi`.`count_write` AS `io_write_requests`,`fsbi`.`sum_number_of_bytes_write` AS `io_write`,`fsbi`.`sum_timer_write` AS `io_write_latency`,`fsbi`.`count_misc` AS `io_misc_requests`,`fsbi`.`sum_timer_misc` AS `io_misc_latency` from (`performance_schema`.`table_io_waits_summary_by_table` `pst` left join `sys`.`x$ps_schema_table_statistics_io` `fsbi` on(((`pst`.`OBJECT_SCHEMA` = `fsbi`.`table_schema`) and (`pst`.`OBJECT_NAME` = `fsbi`.`table_name`)))) order by `pst`.`SUM_TIMER_WAIT` desc +md5=5cf9532b389d26cb5e6d250b3bd93d5d +updatable=0 +algorithm=1 +definer_user=mysql.sys +definer_host=localhost +suid=0 +with_check_option=0 +timestamp=2018-07-20 01:51:25 +create-version=1 +source=SELECT pst.object_schema AS table_schema, pst.object_name AS table_name, pst.sum_timer_wait AS total_latency, pst.count_fetch AS rows_fetched, pst.sum_timer_fetch AS fetch_latency, pst.count_insert AS rows_inserted, pst.sum_timer_insert AS insert_latency, pst.count_update AS rows_updated, pst.sum_timer_update AS update_latency, pst.count_delete AS rows_deleted, pst.sum_timer_delete AS delete_latency, fsbi.count_read AS io_read_requests, fsbi.sum_number_of_bytes_read AS io_read, fsbi.sum_timer_read AS io_read_latency, fsbi.count_write AS io_write_requests, fsbi.sum_number_of_bytes_write AS io_write, fsbi.sum_timer_write AS io_write_latency, fsbi.count_misc AS io_misc_requests, fsbi.sum_timer_misc AS io_misc_latency FROM performance_schema.table_io_waits_summary_by_table AS pst LEFT JOIN x$ps_schema_table_statistics_io AS fsbi ON pst.object_schema = fsbi.table_schema AND pst.object_name = fsbi.table_name ORDER BY pst.sum_timer_wait DESC +client_cs_name=utf8 +connection_cl_name=utf8_general_ci +view_body_utf8=select `pst`.`OBJECT_SCHEMA` AS `table_schema`,`pst`.`OBJECT_NAME` AS `table_name`,`pst`.`SUM_TIMER_WAIT` AS `total_latency`,`pst`.`COUNT_FETCH` AS `rows_fetched`,`pst`.`SUM_TIMER_FETCH` AS `fetch_latency`,`pst`.`COUNT_INSERT` AS `rows_inserted`,`pst`.`SUM_TIMER_INSERT` AS `insert_latency`,`pst`.`COUNT_UPDATE` AS `rows_updated`,`pst`.`SUM_TIMER_UPDATE` AS `update_latency`,`pst`.`COUNT_DELETE` AS `rows_deleted`,`pst`.`SUM_TIMER_DELETE` AS `delete_latency`,`fsbi`.`count_read` AS `io_read_requests`,`fsbi`.`sum_number_of_bytes_read` AS `io_read`,`fsbi`.`sum_timer_read` AS `io_read_latency`,`fsbi`.`count_write` AS `io_write_requests`,`fsbi`.`sum_number_of_bytes_write` AS `io_write`,`fsbi`.`sum_timer_write` AS `io_write_latency`,`fsbi`.`count_misc` AS `io_misc_requests`,`fsbi`.`sum_timer_misc` AS `io_misc_latency` from (`performance_schema`.`table_io_waits_summary_by_table` `pst` left join `sys`.`x$ps_schema_table_statistics_io` `fsbi` on(((`pst`.`OBJECT_SCHEMA` = `fsbi`.`table_schema`) and (`pst`.`OBJECT_NAME` = `fsbi`.`table_name`)))) order by `pst`.`SUM_TIMER_WAIT` desc diff --git a/zbx_env/var/lib/mysql/sys/x@0024schema_table_statistics_with_buffer.frm b/zbx_env/var/lib/mysql/sys/x@0024schema_table_statistics_with_buffer.frm new file mode 100644 index 000000000..c6de0427a --- /dev/null +++ b/zbx_env/var/lib/mysql/sys/x@0024schema_table_statistics_with_buffer.frm @@ -0,0 +1,15 @@ +TYPE=VIEW +query=select `pst`.`OBJECT_SCHEMA` AS `table_schema`,`pst`.`OBJECT_NAME` AS `table_name`,`pst`.`COUNT_FETCH` AS `rows_fetched`,`pst`.`SUM_TIMER_FETCH` AS `fetch_latency`,`pst`.`COUNT_INSERT` AS `rows_inserted`,`pst`.`SUM_TIMER_INSERT` AS `insert_latency`,`pst`.`COUNT_UPDATE` AS `rows_updated`,`pst`.`SUM_TIMER_UPDATE` AS `update_latency`,`pst`.`COUNT_DELETE` AS `rows_deleted`,`pst`.`SUM_TIMER_DELETE` AS `delete_latency`,`fsbi`.`count_read` AS `io_read_requests`,`fsbi`.`sum_number_of_bytes_read` AS `io_read`,`fsbi`.`sum_timer_read` AS `io_read_latency`,`fsbi`.`count_write` AS `io_write_requests`,`fsbi`.`sum_number_of_bytes_write` AS `io_write`,`fsbi`.`sum_timer_write` AS `io_write_latency`,`fsbi`.`count_misc` AS `io_misc_requests`,`fsbi`.`sum_timer_misc` AS `io_misc_latency`,`ibp`.`allocated` AS `innodb_buffer_allocated`,`ibp`.`data` AS `innodb_buffer_data`,(`ibp`.`allocated` - `ibp`.`data`) AS `innodb_buffer_free`,`ibp`.`pages` AS `innodb_buffer_pages`,`ibp`.`pages_hashed` AS `innodb_buffer_pages_hashed`,`ibp`.`pages_old` AS `innodb_buffer_pages_old`,`ibp`.`rows_cached` AS `innodb_buffer_rows_cached` from ((`performance_schema`.`table_io_waits_summary_by_table` `pst` left join `sys`.`x$ps_schema_table_statistics_io` `fsbi` on(((`pst`.`OBJECT_SCHEMA` = `fsbi`.`table_schema`) and (`pst`.`OBJECT_NAME` = `fsbi`.`table_name`)))) left join `sys`.`x$innodb_buffer_stats_by_table` `ibp` on(((`pst`.`OBJECT_SCHEMA` = `ibp`.`object_schema`) and (`pst`.`OBJECT_NAME` = `ibp`.`object_name`)))) order by `pst`.`SUM_TIMER_WAIT` desc +md5=ca1ee606114083de29932f2ff49c5262 +updatable=0 +algorithm=1 +definer_user=mysql.sys +definer_host=localhost +suid=0 +with_check_option=0 +timestamp=2018-07-20 01:51:25 +create-version=1 +source=SELECT pst.object_schema AS table_schema, pst.object_name AS table_name, pst.count_fetch AS rows_fetched, pst.sum_timer_fetch AS fetch_latency, pst.count_insert AS rows_inserted, pst.sum_timer_insert AS insert_latency, pst.count_update AS rows_updated, pst.sum_timer_update AS update_latency, pst.count_delete AS rows_deleted, pst.sum_timer_delete AS delete_latency, fsbi.count_read AS io_read_requests, fsbi.sum_number_of_bytes_read AS io_read, fsbi.sum_timer_read AS io_read_latency, fsbi.count_write AS io_write_requests, fsbi.sum_number_of_bytes_write AS io_write, fsbi.sum_timer_write AS io_write_latency, fsbi.count_misc AS io_misc_requests, fsbi.sum_timer_misc AS io_misc_latency, ibp.allocated AS innodb_buffer_allocated, ibp.data AS innodb_buffer_data, (ibp.allocated - ibp.data) AS innodb_buffer_free, ibp.pages AS innodb_buffer_pages, ibp.pages_hashed AS innodb_buffer_pages_hashed, ibp.pages_old AS innodb_buffer_pages_old, ibp.rows_cached AS innodb_buffer_rows_cached FROM performance_schema.table_io_waits_summary_by_table AS pst LEFT JOIN x$ps_schema_table_statistics_io AS fsbi ON pst.object_schema = fsbi.table_schema AND pst.object_name = fsbi.table_name LEFT JOIN sys.x$innodb_buffer_stats_by_table AS ibp ON pst.object_schema = ibp.object_schema AND pst.object_name = ibp.object_name ORDER BY pst.sum_timer_wait DESC +client_cs_name=utf8 +connection_cl_name=utf8_general_ci +view_body_utf8=select `pst`.`OBJECT_SCHEMA` AS `table_schema`,`pst`.`OBJECT_NAME` AS `table_name`,`pst`.`COUNT_FETCH` AS `rows_fetched`,`pst`.`SUM_TIMER_FETCH` AS `fetch_latency`,`pst`.`COUNT_INSERT` AS `rows_inserted`,`pst`.`SUM_TIMER_INSERT` AS `insert_latency`,`pst`.`COUNT_UPDATE` AS `rows_updated`,`pst`.`SUM_TIMER_UPDATE` AS `update_latency`,`pst`.`COUNT_DELETE` AS `rows_deleted`,`pst`.`SUM_TIMER_DELETE` AS `delete_latency`,`fsbi`.`count_read` AS `io_read_requests`,`fsbi`.`sum_number_of_bytes_read` AS `io_read`,`fsbi`.`sum_timer_read` AS `io_read_latency`,`fsbi`.`count_write` AS `io_write_requests`,`fsbi`.`sum_number_of_bytes_write` AS `io_write`,`fsbi`.`sum_timer_write` AS `io_write_latency`,`fsbi`.`count_misc` AS `io_misc_requests`,`fsbi`.`sum_timer_misc` AS `io_misc_latency`,`ibp`.`allocated` AS `innodb_buffer_allocated`,`ibp`.`data` AS `innodb_buffer_data`,(`ibp`.`allocated` - `ibp`.`data`) AS `innodb_buffer_free`,`ibp`.`pages` AS `innodb_buffer_pages`,`ibp`.`pages_hashed` AS `innodb_buffer_pages_hashed`,`ibp`.`pages_old` AS `innodb_buffer_pages_old`,`ibp`.`rows_cached` AS `innodb_buffer_rows_cached` from ((`performance_schema`.`table_io_waits_summary_by_table` `pst` left join `sys`.`x$ps_schema_table_statistics_io` `fsbi` on(((`pst`.`OBJECT_SCHEMA` = `fsbi`.`table_schema`) and (`pst`.`OBJECT_NAME` = `fsbi`.`table_name`)))) left join `sys`.`x$innodb_buffer_stats_by_table` `ibp` on(((`pst`.`OBJECT_SCHEMA` = `ibp`.`object_schema`) and (`pst`.`OBJECT_NAME` = `ibp`.`object_name`)))) order by `pst`.`SUM_TIMER_WAIT` desc diff --git a/zbx_env/var/lib/mysql/sys/x@0024schema_tables_with_full_table_scans.frm b/zbx_env/var/lib/mysql/sys/x@0024schema_tables_with_full_table_scans.frm new file mode 100644 index 000000000..f899ce72d --- /dev/null +++ b/zbx_env/var/lib/mysql/sys/x@0024schema_tables_with_full_table_scans.frm @@ -0,0 +1,15 @@ +TYPE=VIEW +query=select `performance_schema`.`table_io_waits_summary_by_index_usage`.`OBJECT_SCHEMA` AS `object_schema`,`performance_schema`.`table_io_waits_summary_by_index_usage`.`OBJECT_NAME` AS `object_name`,`performance_schema`.`table_io_waits_summary_by_index_usage`.`COUNT_READ` AS `rows_full_scanned`,`performance_schema`.`table_io_waits_summary_by_index_usage`.`SUM_TIMER_WAIT` AS `latency` from `performance_schema`.`table_io_waits_summary_by_index_usage` where (isnull(`performance_schema`.`table_io_waits_summary_by_index_usage`.`INDEX_NAME`) and (`performance_schema`.`table_io_waits_summary_by_index_usage`.`COUNT_READ` > 0)) order by `performance_schema`.`table_io_waits_summary_by_index_usage`.`COUNT_READ` desc +md5=06d88d29fba9670e4f7ff599d080092a +updatable=1 +algorithm=2 +definer_user=mysql.sys +definer_host=localhost +suid=0 +with_check_option=0 +timestamp=2018-07-20 01:51:25 +create-version=1 +source=SELECT object_schema, object_name, count_read AS rows_full_scanned, sum_timer_wait AS latency FROM performance_schema.table_io_waits_summary_by_index_usage WHERE index_name IS NULL AND count_read > 0 ORDER BY count_read DESC +client_cs_name=utf8 +connection_cl_name=utf8_general_ci +view_body_utf8=select `performance_schema`.`table_io_waits_summary_by_index_usage`.`OBJECT_SCHEMA` AS `object_schema`,`performance_schema`.`table_io_waits_summary_by_index_usage`.`OBJECT_NAME` AS `object_name`,`performance_schema`.`table_io_waits_summary_by_index_usage`.`COUNT_READ` AS `rows_full_scanned`,`performance_schema`.`table_io_waits_summary_by_index_usage`.`SUM_TIMER_WAIT` AS `latency` from `performance_schema`.`table_io_waits_summary_by_index_usage` where (isnull(`performance_schema`.`table_io_waits_summary_by_index_usage`.`INDEX_NAME`) and (`performance_schema`.`table_io_waits_summary_by_index_usage`.`COUNT_READ` > 0)) order by `performance_schema`.`table_io_waits_summary_by_index_usage`.`COUNT_READ` desc diff --git a/zbx_env/var/lib/mysql/sys/x@0024session.frm b/zbx_env/var/lib/mysql/sys/x@0024session.frm new file mode 100644 index 000000000..e743a0001 --- /dev/null +++ b/zbx_env/var/lib/mysql/sys/x@0024session.frm @@ -0,0 +1,15 @@ +TYPE=VIEW +query=select `x$processlist`.`thd_id` AS `thd_id`,`x$processlist`.`conn_id` AS `conn_id`,`x$processlist`.`user` AS `user`,`x$processlist`.`db` AS `db`,`x$processlist`.`command` AS `command`,`x$processlist`.`state` AS `state`,`x$processlist`.`time` AS `time`,`x$processlist`.`current_statement` AS `current_statement`,`x$processlist`.`statement_latency` AS `statement_latency`,`x$processlist`.`progress` AS `progress`,`x$processlist`.`lock_latency` AS `lock_latency`,`x$processlist`.`rows_examined` AS `rows_examined`,`x$processlist`.`rows_sent` AS `rows_sent`,`x$processlist`.`rows_affected` AS `rows_affected`,`x$processlist`.`tmp_tables` AS `tmp_tables`,`x$processlist`.`tmp_disk_tables` AS `tmp_disk_tables`,`x$processlist`.`full_scan` AS `full_scan`,`x$processlist`.`last_statement` AS `last_statement`,`x$processlist`.`last_statement_latency` AS `last_statement_latency`,`x$processlist`.`current_memory` AS `current_memory`,`x$processlist`.`last_wait` AS `last_wait`,`x$processlist`.`last_wait_latency` AS `last_wait_latency`,`x$processlist`.`source` AS `source`,`x$processlist`.`trx_latency` AS `trx_latency`,`x$processlist`.`trx_state` AS `trx_state`,`x$processlist`.`trx_autocommit` AS `trx_autocommit`,`x$processlist`.`pid` AS `pid`,`x$processlist`.`program_name` AS `program_name` from `sys`.`x$processlist` where ((`x$processlist`.`conn_id` is not null) and (`x$processlist`.`command` <> \'Daemon\')) +md5=5ae47f9c1f04f36c23a5a1466b9905c9 +updatable=0 +algorithm=0 +definer_user=mysql.sys +definer_host=localhost +suid=0 +with_check_option=0 +timestamp=2018-07-20 01:51:25 +create-version=1 +source=SELECT * FROM sys.x$processlist WHERE conn_id IS NOT NULL AND command != \'Daemon\' +client_cs_name=utf8 +connection_cl_name=utf8_general_ci +view_body_utf8=select `x$processlist`.`thd_id` AS `thd_id`,`x$processlist`.`conn_id` AS `conn_id`,`x$processlist`.`user` AS `user`,`x$processlist`.`db` AS `db`,`x$processlist`.`command` AS `command`,`x$processlist`.`state` AS `state`,`x$processlist`.`time` AS `time`,`x$processlist`.`current_statement` AS `current_statement`,`x$processlist`.`statement_latency` AS `statement_latency`,`x$processlist`.`progress` AS `progress`,`x$processlist`.`lock_latency` AS `lock_latency`,`x$processlist`.`rows_examined` AS `rows_examined`,`x$processlist`.`rows_sent` AS `rows_sent`,`x$processlist`.`rows_affected` AS `rows_affected`,`x$processlist`.`tmp_tables` AS `tmp_tables`,`x$processlist`.`tmp_disk_tables` AS `tmp_disk_tables`,`x$processlist`.`full_scan` AS `full_scan`,`x$processlist`.`last_statement` AS `last_statement`,`x$processlist`.`last_statement_latency` AS `last_statement_latency`,`x$processlist`.`current_memory` AS `current_memory`,`x$processlist`.`last_wait` AS `last_wait`,`x$processlist`.`last_wait_latency` AS `last_wait_latency`,`x$processlist`.`source` AS `source`,`x$processlist`.`trx_latency` AS `trx_latency`,`x$processlist`.`trx_state` AS `trx_state`,`x$processlist`.`trx_autocommit` AS `trx_autocommit`,`x$processlist`.`pid` AS `pid`,`x$processlist`.`program_name` AS `program_name` from `sys`.`x$processlist` where ((`x$processlist`.`conn_id` is not null) and (`x$processlist`.`command` <> \'Daemon\')) diff --git a/zbx_env/var/lib/mysql/sys/x@0024statement_analysis.frm b/zbx_env/var/lib/mysql/sys/x@0024statement_analysis.frm new file mode 100644 index 000000000..15071f5bf --- /dev/null +++ b/zbx_env/var/lib/mysql/sys/x@0024statement_analysis.frm @@ -0,0 +1,15 @@ +TYPE=VIEW +query=select `performance_schema`.`events_statements_summary_by_digest`.`DIGEST_TEXT` AS `query`,`performance_schema`.`events_statements_summary_by_digest`.`SCHEMA_NAME` AS `db`,if(((`performance_schema`.`events_statements_summary_by_digest`.`SUM_NO_GOOD_INDEX_USED` > 0) or (`performance_schema`.`events_statements_summary_by_digest`.`SUM_NO_INDEX_USED` > 0)),\'*\',\'\') AS `full_scan`,`performance_schema`.`events_statements_summary_by_digest`.`COUNT_STAR` AS `exec_count`,`performance_schema`.`events_statements_summary_by_digest`.`SUM_ERRORS` AS `err_count`,`performance_schema`.`events_statements_summary_by_digest`.`SUM_WARNINGS` AS `warn_count`,`performance_schema`.`events_statements_summary_by_digest`.`SUM_TIMER_WAIT` AS `total_latency`,`performance_schema`.`events_statements_summary_by_digest`.`MAX_TIMER_WAIT` AS `max_latency`,`performance_schema`.`events_statements_summary_by_digest`.`AVG_TIMER_WAIT` AS `avg_latency`,`performance_schema`.`events_statements_summary_by_digest`.`SUM_LOCK_TIME` AS `lock_latency`,`performance_schema`.`events_statements_summary_by_digest`.`SUM_ROWS_SENT` AS `rows_sent`,round(ifnull((`performance_schema`.`events_statements_summary_by_digest`.`SUM_ROWS_SENT` / nullif(`performance_schema`.`events_statements_summary_by_digest`.`COUNT_STAR`,0)),0),0) AS `rows_sent_avg`,`performance_schema`.`events_statements_summary_by_digest`.`SUM_ROWS_EXAMINED` AS `rows_examined`,round(ifnull((`performance_schema`.`events_statements_summary_by_digest`.`SUM_ROWS_EXAMINED` / nullif(`performance_schema`.`events_statements_summary_by_digest`.`COUNT_STAR`,0)),0),0) AS `rows_examined_avg`,`performance_schema`.`events_statements_summary_by_digest`.`SUM_ROWS_AFFECTED` AS `rows_affected`,round(ifnull((`performance_schema`.`events_statements_summary_by_digest`.`SUM_ROWS_AFFECTED` / nullif(`performance_schema`.`events_statements_summary_by_digest`.`COUNT_STAR`,0)),0),0) AS `rows_affected_avg`,`performance_schema`.`events_statements_summary_by_digest`.`SUM_CREATED_TMP_TABLES` AS `tmp_tables`,`performance_schema`.`events_statements_summary_by_digest`.`SUM_CREATED_TMP_DISK_TABLES` AS `tmp_disk_tables`,`performance_schema`.`events_statements_summary_by_digest`.`SUM_SORT_ROWS` AS `rows_sorted`,`performance_schema`.`events_statements_summary_by_digest`.`SUM_SORT_MERGE_PASSES` AS `sort_merge_passes`,`performance_schema`.`events_statements_summary_by_digest`.`DIGEST` AS `digest`,`performance_schema`.`events_statements_summary_by_digest`.`FIRST_SEEN` AS `first_seen`,`performance_schema`.`events_statements_summary_by_digest`.`LAST_SEEN` AS `last_seen` from `performance_schema`.`events_statements_summary_by_digest` order by `performance_schema`.`events_statements_summary_by_digest`.`SUM_TIMER_WAIT` desc +md5=264be88ab55ca2e3c5e31871885a31fb +updatable=1 +algorithm=2 +definer_user=mysql.sys +definer_host=localhost +suid=0 +with_check_option=0 +timestamp=2018-07-20 01:51:25 +create-version=1 +source=SELECT DIGEST_TEXT AS query, SCHEMA_NAME AS db, IF(SUM_NO_GOOD_INDEX_USED > 0 OR SUM_NO_INDEX_USED > 0, \'*\', \'\') AS full_scan, COUNT_STAR AS exec_count, SUM_ERRORS AS err_count, SUM_WARNINGS AS warn_count, SUM_TIMER_WAIT AS total_latency, MAX_TIMER_WAIT AS max_latency, AVG_TIMER_WAIT AS avg_latency, SUM_LOCK_TIME AS lock_latency, SUM_ROWS_SENT AS rows_sent, ROUND(IFNULL(SUM_ROWS_SENT / NULLIF(COUNT_STAR, 0), 0)) AS rows_sent_avg, SUM_ROWS_EXAMINED AS rows_examined, ROUND(IFNULL(SUM_ROWS_EXAMINED / NULLIF(COUNT_STAR, 0), 0)) AS rows_examined_avg, SUM_ROWS_AFFECTED AS rows_affected, ROUND(IFNULL(SUM_ROWS_AFFECTED / NULLIF(COUNT_STAR, 0), 0)) AS rows_affected_avg, SUM_CREATED_TMP_TABLES AS tmp_tables, SUM_CREATED_TMP_DISK_TABLES AS tmp_disk_tables, SUM_SORT_ROWS AS rows_sorted, SUM_SORT_MERGE_PASSES AS sort_merge_passes, DIGEST AS digest, FIRST_SEEN AS first_seen, LAST_SEEN as last_seen FROM performance_schema.events_statements_summary_by_digest ORDER BY SUM_TIMER_WAIT DESC +client_cs_name=utf8 +connection_cl_name=utf8_general_ci +view_body_utf8=select `performance_schema`.`events_statements_summary_by_digest`.`DIGEST_TEXT` AS `query`,`performance_schema`.`events_statements_summary_by_digest`.`SCHEMA_NAME` AS `db`,if(((`performance_schema`.`events_statements_summary_by_digest`.`SUM_NO_GOOD_INDEX_USED` > 0) or (`performance_schema`.`events_statements_summary_by_digest`.`SUM_NO_INDEX_USED` > 0)),\'*\',\'\') AS `full_scan`,`performance_schema`.`events_statements_summary_by_digest`.`COUNT_STAR` AS `exec_count`,`performance_schema`.`events_statements_summary_by_digest`.`SUM_ERRORS` AS `err_count`,`performance_schema`.`events_statements_summary_by_digest`.`SUM_WARNINGS` AS `warn_count`,`performance_schema`.`events_statements_summary_by_digest`.`SUM_TIMER_WAIT` AS `total_latency`,`performance_schema`.`events_statements_summary_by_digest`.`MAX_TIMER_WAIT` AS `max_latency`,`performance_schema`.`events_statements_summary_by_digest`.`AVG_TIMER_WAIT` AS `avg_latency`,`performance_schema`.`events_statements_summary_by_digest`.`SUM_LOCK_TIME` AS `lock_latency`,`performance_schema`.`events_statements_summary_by_digest`.`SUM_ROWS_SENT` AS `rows_sent`,round(ifnull((`performance_schema`.`events_statements_summary_by_digest`.`SUM_ROWS_SENT` / nullif(`performance_schema`.`events_statements_summary_by_digest`.`COUNT_STAR`,0)),0),0) AS `rows_sent_avg`,`performance_schema`.`events_statements_summary_by_digest`.`SUM_ROWS_EXAMINED` AS `rows_examined`,round(ifnull((`performance_schema`.`events_statements_summary_by_digest`.`SUM_ROWS_EXAMINED` / nullif(`performance_schema`.`events_statements_summary_by_digest`.`COUNT_STAR`,0)),0),0) AS `rows_examined_avg`,`performance_schema`.`events_statements_summary_by_digest`.`SUM_ROWS_AFFECTED` AS `rows_affected`,round(ifnull((`performance_schema`.`events_statements_summary_by_digest`.`SUM_ROWS_AFFECTED` / nullif(`performance_schema`.`events_statements_summary_by_digest`.`COUNT_STAR`,0)),0),0) AS `rows_affected_avg`,`performance_schema`.`events_statements_summary_by_digest`.`SUM_CREATED_TMP_TABLES` AS `tmp_tables`,`performance_schema`.`events_statements_summary_by_digest`.`SUM_CREATED_TMP_DISK_TABLES` AS `tmp_disk_tables`,`performance_schema`.`events_statements_summary_by_digest`.`SUM_SORT_ROWS` AS `rows_sorted`,`performance_schema`.`events_statements_summary_by_digest`.`SUM_SORT_MERGE_PASSES` AS `sort_merge_passes`,`performance_schema`.`events_statements_summary_by_digest`.`DIGEST` AS `digest`,`performance_schema`.`events_statements_summary_by_digest`.`FIRST_SEEN` AS `first_seen`,`performance_schema`.`events_statements_summary_by_digest`.`LAST_SEEN` AS `last_seen` from `performance_schema`.`events_statements_summary_by_digest` order by `performance_schema`.`events_statements_summary_by_digest`.`SUM_TIMER_WAIT` desc diff --git a/zbx_env/var/lib/mysql/sys/x@0024statements_with_errors_or_warnings.frm b/zbx_env/var/lib/mysql/sys/x@0024statements_with_errors_or_warnings.frm new file mode 100644 index 000000000..f669c231c --- /dev/null +++ b/zbx_env/var/lib/mysql/sys/x@0024statements_with_errors_or_warnings.frm @@ -0,0 +1,15 @@ +TYPE=VIEW +query=select `performance_schema`.`events_statements_summary_by_digest`.`DIGEST_TEXT` AS `query`,`performance_schema`.`events_statements_summary_by_digest`.`SCHEMA_NAME` AS `db`,`performance_schema`.`events_statements_summary_by_digest`.`COUNT_STAR` AS `exec_count`,`performance_schema`.`events_statements_summary_by_digest`.`SUM_ERRORS` AS `errors`,(ifnull((`performance_schema`.`events_statements_summary_by_digest`.`SUM_ERRORS` / nullif(`performance_schema`.`events_statements_summary_by_digest`.`COUNT_STAR`,0)),0) * 100) AS `error_pct`,`performance_schema`.`events_statements_summary_by_digest`.`SUM_WARNINGS` AS `warnings`,(ifnull((`performance_schema`.`events_statements_summary_by_digest`.`SUM_WARNINGS` / nullif(`performance_schema`.`events_statements_summary_by_digest`.`COUNT_STAR`,0)),0) * 100) AS `warning_pct`,`performance_schema`.`events_statements_summary_by_digest`.`FIRST_SEEN` AS `first_seen`,`performance_schema`.`events_statements_summary_by_digest`.`LAST_SEEN` AS `last_seen`,`performance_schema`.`events_statements_summary_by_digest`.`DIGEST` AS `digest` from `performance_schema`.`events_statements_summary_by_digest` where ((`performance_schema`.`events_statements_summary_by_digest`.`SUM_ERRORS` > 0) or (`performance_schema`.`events_statements_summary_by_digest`.`SUM_WARNINGS` > 0)) order by `performance_schema`.`events_statements_summary_by_digest`.`SUM_ERRORS` desc,`performance_schema`.`events_statements_summary_by_digest`.`SUM_WARNINGS` desc +md5=0cc4a3464fb9fc3c6d1c4e45d15bc1a1 +updatable=1 +algorithm=2 +definer_user=mysql.sys +definer_host=localhost +suid=0 +with_check_option=0 +timestamp=2018-07-20 01:51:25 +create-version=1 +source=SELECT DIGEST_TEXT AS query, SCHEMA_NAME as db, COUNT_STAR AS exec_count, SUM_ERRORS AS errors, IFNULL(SUM_ERRORS / NULLIF(COUNT_STAR, 0), 0) * 100 as error_pct, SUM_WARNINGS AS warnings, IFNULL(SUM_WARNINGS / NULLIF(COUNT_STAR, 0), 0) * 100 as warning_pct, FIRST_SEEN as first_seen, LAST_SEEN as last_seen, DIGEST AS digest FROM performance_schema.events_statements_summary_by_digest WHERE SUM_ERRORS > 0 OR SUM_WARNINGS > 0 ORDER BY SUM_ERRORS DESC, SUM_WARNINGS DESC +client_cs_name=utf8 +connection_cl_name=utf8_general_ci +view_body_utf8=select `performance_schema`.`events_statements_summary_by_digest`.`DIGEST_TEXT` AS `query`,`performance_schema`.`events_statements_summary_by_digest`.`SCHEMA_NAME` AS `db`,`performance_schema`.`events_statements_summary_by_digest`.`COUNT_STAR` AS `exec_count`,`performance_schema`.`events_statements_summary_by_digest`.`SUM_ERRORS` AS `errors`,(ifnull((`performance_schema`.`events_statements_summary_by_digest`.`SUM_ERRORS` / nullif(`performance_schema`.`events_statements_summary_by_digest`.`COUNT_STAR`,0)),0) * 100) AS `error_pct`,`performance_schema`.`events_statements_summary_by_digest`.`SUM_WARNINGS` AS `warnings`,(ifnull((`performance_schema`.`events_statements_summary_by_digest`.`SUM_WARNINGS` / nullif(`performance_schema`.`events_statements_summary_by_digest`.`COUNT_STAR`,0)),0) * 100) AS `warning_pct`,`performance_schema`.`events_statements_summary_by_digest`.`FIRST_SEEN` AS `first_seen`,`performance_schema`.`events_statements_summary_by_digest`.`LAST_SEEN` AS `last_seen`,`performance_schema`.`events_statements_summary_by_digest`.`DIGEST` AS `digest` from `performance_schema`.`events_statements_summary_by_digest` where ((`performance_schema`.`events_statements_summary_by_digest`.`SUM_ERRORS` > 0) or (`performance_schema`.`events_statements_summary_by_digest`.`SUM_WARNINGS` > 0)) order by `performance_schema`.`events_statements_summary_by_digest`.`SUM_ERRORS` desc,`performance_schema`.`events_statements_summary_by_digest`.`SUM_WARNINGS` desc diff --git a/zbx_env/var/lib/mysql/sys/x@0024statements_with_full_table_scans.frm b/zbx_env/var/lib/mysql/sys/x@0024statements_with_full_table_scans.frm new file mode 100644 index 000000000..872601430 --- /dev/null +++ b/zbx_env/var/lib/mysql/sys/x@0024statements_with_full_table_scans.frm @@ -0,0 +1,15 @@ +TYPE=VIEW +query=select `performance_schema`.`events_statements_summary_by_digest`.`DIGEST_TEXT` AS `query`,`performance_schema`.`events_statements_summary_by_digest`.`SCHEMA_NAME` AS `db`,`performance_schema`.`events_statements_summary_by_digest`.`COUNT_STAR` AS `exec_count`,`performance_schema`.`events_statements_summary_by_digest`.`SUM_TIMER_WAIT` AS `total_latency`,`performance_schema`.`events_statements_summary_by_digest`.`SUM_NO_INDEX_USED` AS `no_index_used_count`,`performance_schema`.`events_statements_summary_by_digest`.`SUM_NO_GOOD_INDEX_USED` AS `no_good_index_used_count`,round((ifnull((`performance_schema`.`events_statements_summary_by_digest`.`SUM_NO_INDEX_USED` / nullif(`performance_schema`.`events_statements_summary_by_digest`.`COUNT_STAR`,0)),0) * 100),0) AS `no_index_used_pct`,`performance_schema`.`events_statements_summary_by_digest`.`SUM_ROWS_SENT` AS `rows_sent`,`performance_schema`.`events_statements_summary_by_digest`.`SUM_ROWS_EXAMINED` AS `rows_examined`,round((`performance_schema`.`events_statements_summary_by_digest`.`SUM_ROWS_SENT` / `performance_schema`.`events_statements_summary_by_digest`.`COUNT_STAR`),0) AS `rows_sent_avg`,round((`performance_schema`.`events_statements_summary_by_digest`.`SUM_ROWS_EXAMINED` / `performance_schema`.`events_statements_summary_by_digest`.`COUNT_STAR`),0) AS `rows_examined_avg`,`performance_schema`.`events_statements_summary_by_digest`.`FIRST_SEEN` AS `first_seen`,`performance_schema`.`events_statements_summary_by_digest`.`LAST_SEEN` AS `last_seen`,`performance_schema`.`events_statements_summary_by_digest`.`DIGEST` AS `digest` from `performance_schema`.`events_statements_summary_by_digest` where (((`performance_schema`.`events_statements_summary_by_digest`.`SUM_NO_INDEX_USED` > 0) or (`performance_schema`.`events_statements_summary_by_digest`.`SUM_NO_GOOD_INDEX_USED` > 0)) and (not((`performance_schema`.`events_statements_summary_by_digest`.`DIGEST_TEXT` like \'SHOW%\')))) order by round((ifnull((`performance_schema`.`events_statements_summary_by_digest`.`SUM_NO_INDEX_USED` / nullif(`performance_schema`.`events_statements_summary_by_digest`.`COUNT_STAR`,0)),0) * 100),0) desc,`performance_schema`.`events_statements_summary_by_digest`.`SUM_TIMER_WAIT` desc +md5=518bac7a7d80c2fd01201ea3528bf576 +updatable=1 +algorithm=2 +definer_user=mysql.sys +definer_host=localhost +suid=0 +with_check_option=0 +timestamp=2018-07-20 01:51:25 +create-version=1 +source=SELECT DIGEST_TEXT AS query, SCHEMA_NAME as db, COUNT_STAR AS exec_count, SUM_TIMER_WAIT AS total_latency, SUM_NO_INDEX_USED AS no_index_used_count, SUM_NO_GOOD_INDEX_USED AS no_good_index_used_count, ROUND(IFNULL(SUM_NO_INDEX_USED / NULLIF(COUNT_STAR, 0), 0) * 100) AS no_index_used_pct, SUM_ROWS_SENT AS rows_sent, SUM_ROWS_EXAMINED AS rows_examined, ROUND(SUM_ROWS_SENT/COUNT_STAR) AS rows_sent_avg, ROUND(SUM_ROWS_EXAMINED/COUNT_STAR) AS rows_examined_avg, FIRST_SEEN as first_seen, LAST_SEEN as last_seen, DIGEST AS digest FROM performance_schema.events_statements_summary_by_digest WHERE (SUM_NO_INDEX_USED > 0 OR SUM_NO_GOOD_INDEX_USED > 0) AND DIGEST_TEXT NOT LIKE \'SHOW%\' ORDER BY no_index_used_pct DESC, total_latency DESC +client_cs_name=utf8 +connection_cl_name=utf8_general_ci +view_body_utf8=select `performance_schema`.`events_statements_summary_by_digest`.`DIGEST_TEXT` AS `query`,`performance_schema`.`events_statements_summary_by_digest`.`SCHEMA_NAME` AS `db`,`performance_schema`.`events_statements_summary_by_digest`.`COUNT_STAR` AS `exec_count`,`performance_schema`.`events_statements_summary_by_digest`.`SUM_TIMER_WAIT` AS `total_latency`,`performance_schema`.`events_statements_summary_by_digest`.`SUM_NO_INDEX_USED` AS `no_index_used_count`,`performance_schema`.`events_statements_summary_by_digest`.`SUM_NO_GOOD_INDEX_USED` AS `no_good_index_used_count`,round((ifnull((`performance_schema`.`events_statements_summary_by_digest`.`SUM_NO_INDEX_USED` / nullif(`performance_schema`.`events_statements_summary_by_digest`.`COUNT_STAR`,0)),0) * 100),0) AS `no_index_used_pct`,`performance_schema`.`events_statements_summary_by_digest`.`SUM_ROWS_SENT` AS `rows_sent`,`performance_schema`.`events_statements_summary_by_digest`.`SUM_ROWS_EXAMINED` AS `rows_examined`,round((`performance_schema`.`events_statements_summary_by_digest`.`SUM_ROWS_SENT` / `performance_schema`.`events_statements_summary_by_digest`.`COUNT_STAR`),0) AS `rows_sent_avg`,round((`performance_schema`.`events_statements_summary_by_digest`.`SUM_ROWS_EXAMINED` / `performance_schema`.`events_statements_summary_by_digest`.`COUNT_STAR`),0) AS `rows_examined_avg`,`performance_schema`.`events_statements_summary_by_digest`.`FIRST_SEEN` AS `first_seen`,`performance_schema`.`events_statements_summary_by_digest`.`LAST_SEEN` AS `last_seen`,`performance_schema`.`events_statements_summary_by_digest`.`DIGEST` AS `digest` from `performance_schema`.`events_statements_summary_by_digest` where (((`performance_schema`.`events_statements_summary_by_digest`.`SUM_NO_INDEX_USED` > 0) or (`performance_schema`.`events_statements_summary_by_digest`.`SUM_NO_GOOD_INDEX_USED` > 0)) and (not((`performance_schema`.`events_statements_summary_by_digest`.`DIGEST_TEXT` like \'SHOW%\')))) order by round((ifnull((`performance_schema`.`events_statements_summary_by_digest`.`SUM_NO_INDEX_USED` / nullif(`performance_schema`.`events_statements_summary_by_digest`.`COUNT_STAR`,0)),0) * 100),0) desc,`performance_schema`.`events_statements_summary_by_digest`.`SUM_TIMER_WAIT` desc diff --git a/zbx_env/var/lib/mysql/sys/x@0024statements_with_runtimes_in_95th_percentile.frm b/zbx_env/var/lib/mysql/sys/x@0024statements_with_runtimes_in_95th_percentile.frm new file mode 100644 index 000000000..ad9ea8781 --- /dev/null +++ b/zbx_env/var/lib/mysql/sys/x@0024statements_with_runtimes_in_95th_percentile.frm @@ -0,0 +1,15 @@ +TYPE=VIEW +query=select `stmts`.`DIGEST_TEXT` AS `query`,`stmts`.`SCHEMA_NAME` AS `db`,if(((`stmts`.`SUM_NO_GOOD_INDEX_USED` > 0) or (`stmts`.`SUM_NO_INDEX_USED` > 0)),\'*\',\'\') AS `full_scan`,`stmts`.`COUNT_STAR` AS `exec_count`,`stmts`.`SUM_ERRORS` AS `err_count`,`stmts`.`SUM_WARNINGS` AS `warn_count`,`stmts`.`SUM_TIMER_WAIT` AS `total_latency`,`stmts`.`MAX_TIMER_WAIT` AS `max_latency`,`stmts`.`AVG_TIMER_WAIT` AS `avg_latency`,`stmts`.`SUM_ROWS_SENT` AS `rows_sent`,round(ifnull((`stmts`.`SUM_ROWS_SENT` / nullif(`stmts`.`COUNT_STAR`,0)),0),0) AS `rows_sent_avg`,`stmts`.`SUM_ROWS_EXAMINED` AS `rows_examined`,round(ifnull((`stmts`.`SUM_ROWS_EXAMINED` / nullif(`stmts`.`COUNT_STAR`,0)),0),0) AS `rows_examined_avg`,`stmts`.`FIRST_SEEN` AS `first_seen`,`stmts`.`LAST_SEEN` AS `last_seen`,`stmts`.`DIGEST` AS `digest` from (`performance_schema`.`events_statements_summary_by_digest` `stmts` join `sys`.`x$ps_digest_95th_percentile_by_avg_us` `top_percentile` on((round((`stmts`.`AVG_TIMER_WAIT` / 1000000),0) >= `top_percentile`.`avg_us`))) order by `stmts`.`AVG_TIMER_WAIT` desc +md5=a9e221a20e9ac48966fa0ff12be75ce2 +updatable=1 +algorithm=2 +definer_user=mysql.sys +definer_host=localhost +suid=0 +with_check_option=0 +timestamp=2018-07-20 01:51:25 +create-version=1 +source=SELECT DIGEST_TEXT AS query, SCHEMA_NAME AS db, IF(SUM_NO_GOOD_INDEX_USED > 0 OR SUM_NO_INDEX_USED > 0, \'*\', \'\') AS full_scan, COUNT_STAR AS exec_count, SUM_ERRORS AS err_count, SUM_WARNINGS AS warn_count, SUM_TIMER_WAIT AS total_latency, MAX_TIMER_WAIT AS max_latency, AVG_TIMER_WAIT AS avg_latency, SUM_ROWS_SENT AS rows_sent, ROUND(IFNULL(SUM_ROWS_SENT / NULLIF(COUNT_STAR, 0), 0)) AS rows_sent_avg, SUM_ROWS_EXAMINED AS rows_examined, ROUND(IFNULL(SUM_ROWS_EXAMINED / NULLIF(COUNT_STAR, 0), 0)) AS rows_examined_avg, FIRST_SEEN as first_seen, LAST_SEEN as last_seen, DIGEST AS digest FROM performance_schema.events_statements_summary_by_digest stmts JOIN sys.x$ps_digest_95th_percentile_by_avg_us AS top_percentile ON ROUND(stmts.avg_timer_wait/1000000) >= top_percentile.avg_us ORDER BY AVG_TIMER_WAIT DESC +client_cs_name=utf8 +connection_cl_name=utf8_general_ci +view_body_utf8=select `stmts`.`DIGEST_TEXT` AS `query`,`stmts`.`SCHEMA_NAME` AS `db`,if(((`stmts`.`SUM_NO_GOOD_INDEX_USED` > 0) or (`stmts`.`SUM_NO_INDEX_USED` > 0)),\'*\',\'\') AS `full_scan`,`stmts`.`COUNT_STAR` AS `exec_count`,`stmts`.`SUM_ERRORS` AS `err_count`,`stmts`.`SUM_WARNINGS` AS `warn_count`,`stmts`.`SUM_TIMER_WAIT` AS `total_latency`,`stmts`.`MAX_TIMER_WAIT` AS `max_latency`,`stmts`.`AVG_TIMER_WAIT` AS `avg_latency`,`stmts`.`SUM_ROWS_SENT` AS `rows_sent`,round(ifnull((`stmts`.`SUM_ROWS_SENT` / nullif(`stmts`.`COUNT_STAR`,0)),0),0) AS `rows_sent_avg`,`stmts`.`SUM_ROWS_EXAMINED` AS `rows_examined`,round(ifnull((`stmts`.`SUM_ROWS_EXAMINED` / nullif(`stmts`.`COUNT_STAR`,0)),0),0) AS `rows_examined_avg`,`stmts`.`FIRST_SEEN` AS `first_seen`,`stmts`.`LAST_SEEN` AS `last_seen`,`stmts`.`DIGEST` AS `digest` from (`performance_schema`.`events_statements_summary_by_digest` `stmts` join `sys`.`x$ps_digest_95th_percentile_by_avg_us` `top_percentile` on((round((`stmts`.`AVG_TIMER_WAIT` / 1000000),0) >= `top_percentile`.`avg_us`))) order by `stmts`.`AVG_TIMER_WAIT` desc diff --git a/zbx_env/var/lib/mysql/sys/x@0024statements_with_sorting.frm b/zbx_env/var/lib/mysql/sys/x@0024statements_with_sorting.frm new file mode 100644 index 000000000..1890ceae5 --- /dev/null +++ b/zbx_env/var/lib/mysql/sys/x@0024statements_with_sorting.frm @@ -0,0 +1,15 @@ +TYPE=VIEW +query=select `performance_schema`.`events_statements_summary_by_digest`.`DIGEST_TEXT` AS `query`,`performance_schema`.`events_statements_summary_by_digest`.`SCHEMA_NAME` AS `db`,`performance_schema`.`events_statements_summary_by_digest`.`COUNT_STAR` AS `exec_count`,`performance_schema`.`events_statements_summary_by_digest`.`SUM_TIMER_WAIT` AS `total_latency`,`performance_schema`.`events_statements_summary_by_digest`.`SUM_SORT_MERGE_PASSES` AS `sort_merge_passes`,round(ifnull((`performance_schema`.`events_statements_summary_by_digest`.`SUM_SORT_MERGE_PASSES` / nullif(`performance_schema`.`events_statements_summary_by_digest`.`COUNT_STAR`,0)),0),0) AS `avg_sort_merges`,`performance_schema`.`events_statements_summary_by_digest`.`SUM_SORT_SCAN` AS `sorts_using_scans`,`performance_schema`.`events_statements_summary_by_digest`.`SUM_SORT_RANGE` AS `sort_using_range`,`performance_schema`.`events_statements_summary_by_digest`.`SUM_SORT_ROWS` AS `rows_sorted`,round(ifnull((`performance_schema`.`events_statements_summary_by_digest`.`SUM_SORT_ROWS` / nullif(`performance_schema`.`events_statements_summary_by_digest`.`COUNT_STAR`,0)),0),0) AS `avg_rows_sorted`,`performance_schema`.`events_statements_summary_by_digest`.`FIRST_SEEN` AS `first_seen`,`performance_schema`.`events_statements_summary_by_digest`.`LAST_SEEN` AS `last_seen`,`performance_schema`.`events_statements_summary_by_digest`.`DIGEST` AS `digest` from `performance_schema`.`events_statements_summary_by_digest` where (`performance_schema`.`events_statements_summary_by_digest`.`SUM_SORT_ROWS` > 0) order by `performance_schema`.`events_statements_summary_by_digest`.`SUM_TIMER_WAIT` desc +md5=eaf5ee72fb083d6ca2c1782a22d9687c +updatable=1 +algorithm=2 +definer_user=mysql.sys +definer_host=localhost +suid=0 +with_check_option=0 +timestamp=2018-07-20 01:51:25 +create-version=1 +source=SELECT DIGEST_TEXT AS query, SCHEMA_NAME db, COUNT_STAR AS exec_count, SUM_TIMER_WAIT AS total_latency, SUM_SORT_MERGE_PASSES AS sort_merge_passes, ROUND(IFNULL(SUM_SORT_MERGE_PASSES / NULLIF(COUNT_STAR, 0), 0)) AS avg_sort_merges, SUM_SORT_SCAN AS sorts_using_scans, SUM_SORT_RANGE AS sort_using_range, SUM_SORT_ROWS AS rows_sorted, ROUND(IFNULL(SUM_SORT_ROWS / NULLIF(COUNT_STAR, 0), 0)) AS avg_rows_sorted, FIRST_SEEN as first_seen, LAST_SEEN as last_seen, DIGEST AS digest FROM performance_schema.events_statements_summary_by_digest WHERE SUM_SORT_ROWS > 0 ORDER BY SUM_TIMER_WAIT DESC +client_cs_name=utf8 +connection_cl_name=utf8_general_ci +view_body_utf8=select `performance_schema`.`events_statements_summary_by_digest`.`DIGEST_TEXT` AS `query`,`performance_schema`.`events_statements_summary_by_digest`.`SCHEMA_NAME` AS `db`,`performance_schema`.`events_statements_summary_by_digest`.`COUNT_STAR` AS `exec_count`,`performance_schema`.`events_statements_summary_by_digest`.`SUM_TIMER_WAIT` AS `total_latency`,`performance_schema`.`events_statements_summary_by_digest`.`SUM_SORT_MERGE_PASSES` AS `sort_merge_passes`,round(ifnull((`performance_schema`.`events_statements_summary_by_digest`.`SUM_SORT_MERGE_PASSES` / nullif(`performance_schema`.`events_statements_summary_by_digest`.`COUNT_STAR`,0)),0),0) AS `avg_sort_merges`,`performance_schema`.`events_statements_summary_by_digest`.`SUM_SORT_SCAN` AS `sorts_using_scans`,`performance_schema`.`events_statements_summary_by_digest`.`SUM_SORT_RANGE` AS `sort_using_range`,`performance_schema`.`events_statements_summary_by_digest`.`SUM_SORT_ROWS` AS `rows_sorted`,round(ifnull((`performance_schema`.`events_statements_summary_by_digest`.`SUM_SORT_ROWS` / nullif(`performance_schema`.`events_statements_summary_by_digest`.`COUNT_STAR`,0)),0),0) AS `avg_rows_sorted`,`performance_schema`.`events_statements_summary_by_digest`.`FIRST_SEEN` AS `first_seen`,`performance_schema`.`events_statements_summary_by_digest`.`LAST_SEEN` AS `last_seen`,`performance_schema`.`events_statements_summary_by_digest`.`DIGEST` AS `digest` from `performance_schema`.`events_statements_summary_by_digest` where (`performance_schema`.`events_statements_summary_by_digest`.`SUM_SORT_ROWS` > 0) order by `performance_schema`.`events_statements_summary_by_digest`.`SUM_TIMER_WAIT` desc diff --git a/zbx_env/var/lib/mysql/sys/x@0024statements_with_temp_tables.frm b/zbx_env/var/lib/mysql/sys/x@0024statements_with_temp_tables.frm new file mode 100644 index 000000000..cd05c49f5 --- /dev/null +++ b/zbx_env/var/lib/mysql/sys/x@0024statements_with_temp_tables.frm @@ -0,0 +1,15 @@ +TYPE=VIEW +query=select `performance_schema`.`events_statements_summary_by_digest`.`DIGEST_TEXT` AS `query`,`performance_schema`.`events_statements_summary_by_digest`.`SCHEMA_NAME` AS `db`,`performance_schema`.`events_statements_summary_by_digest`.`COUNT_STAR` AS `exec_count`,`performance_schema`.`events_statements_summary_by_digest`.`SUM_TIMER_WAIT` AS `total_latency`,`performance_schema`.`events_statements_summary_by_digest`.`SUM_CREATED_TMP_TABLES` AS `memory_tmp_tables`,`performance_schema`.`events_statements_summary_by_digest`.`SUM_CREATED_TMP_DISK_TABLES` AS `disk_tmp_tables`,round(ifnull((`performance_schema`.`events_statements_summary_by_digest`.`SUM_CREATED_TMP_TABLES` / nullif(`performance_schema`.`events_statements_summary_by_digest`.`COUNT_STAR`,0)),0),0) AS `avg_tmp_tables_per_query`,round((ifnull((`performance_schema`.`events_statements_summary_by_digest`.`SUM_CREATED_TMP_DISK_TABLES` / nullif(`performance_schema`.`events_statements_summary_by_digest`.`SUM_CREATED_TMP_TABLES`,0)),0) * 100),0) AS `tmp_tables_to_disk_pct`,`performance_schema`.`events_statements_summary_by_digest`.`FIRST_SEEN` AS `first_seen`,`performance_schema`.`events_statements_summary_by_digest`.`LAST_SEEN` AS `last_seen`,`performance_schema`.`events_statements_summary_by_digest`.`DIGEST` AS `digest` from `performance_schema`.`events_statements_summary_by_digest` where (`performance_schema`.`events_statements_summary_by_digest`.`SUM_CREATED_TMP_TABLES` > 0) order by `performance_schema`.`events_statements_summary_by_digest`.`SUM_CREATED_TMP_DISK_TABLES` desc,`performance_schema`.`events_statements_summary_by_digest`.`SUM_CREATED_TMP_TABLES` desc +md5=93f9a344316c93e6a36e73fa1d9e0fa3 +updatable=1 +algorithm=2 +definer_user=mysql.sys +definer_host=localhost +suid=0 +with_check_option=0 +timestamp=2018-07-20 01:51:25 +create-version=1 +source=SELECT DIGEST_TEXT AS query, SCHEMA_NAME as db, COUNT_STAR AS exec_count, SUM_TIMER_WAIT as total_latency, SUM_CREATED_TMP_TABLES AS memory_tmp_tables, SUM_CREATED_TMP_DISK_TABLES AS disk_tmp_tables, ROUND(IFNULL(SUM_CREATED_TMP_TABLES / NULLIF(COUNT_STAR, 0), 0)) AS avg_tmp_tables_per_query, ROUND(IFNULL(SUM_CREATED_TMP_DISK_TABLES / NULLIF(SUM_CREATED_TMP_TABLES, 0), 0) * 100) AS tmp_tables_to_disk_pct, FIRST_SEEN as first_seen, LAST_SEEN as last_seen, DIGEST AS digest FROM performance_schema.events_statements_summary_by_digest WHERE SUM_CREATED_TMP_TABLES > 0 ORDER BY SUM_CREATED_TMP_DISK_TABLES DESC, SUM_CREATED_TMP_TABLES DESC +client_cs_name=utf8 +connection_cl_name=utf8_general_ci +view_body_utf8=select `performance_schema`.`events_statements_summary_by_digest`.`DIGEST_TEXT` AS `query`,`performance_schema`.`events_statements_summary_by_digest`.`SCHEMA_NAME` AS `db`,`performance_schema`.`events_statements_summary_by_digest`.`COUNT_STAR` AS `exec_count`,`performance_schema`.`events_statements_summary_by_digest`.`SUM_TIMER_WAIT` AS `total_latency`,`performance_schema`.`events_statements_summary_by_digest`.`SUM_CREATED_TMP_TABLES` AS `memory_tmp_tables`,`performance_schema`.`events_statements_summary_by_digest`.`SUM_CREATED_TMP_DISK_TABLES` AS `disk_tmp_tables`,round(ifnull((`performance_schema`.`events_statements_summary_by_digest`.`SUM_CREATED_TMP_TABLES` / nullif(`performance_schema`.`events_statements_summary_by_digest`.`COUNT_STAR`,0)),0),0) AS `avg_tmp_tables_per_query`,round((ifnull((`performance_schema`.`events_statements_summary_by_digest`.`SUM_CREATED_TMP_DISK_TABLES` / nullif(`performance_schema`.`events_statements_summary_by_digest`.`SUM_CREATED_TMP_TABLES`,0)),0) * 100),0) AS `tmp_tables_to_disk_pct`,`performance_schema`.`events_statements_summary_by_digest`.`FIRST_SEEN` AS `first_seen`,`performance_schema`.`events_statements_summary_by_digest`.`LAST_SEEN` AS `last_seen`,`performance_schema`.`events_statements_summary_by_digest`.`DIGEST` AS `digest` from `performance_schema`.`events_statements_summary_by_digest` where (`performance_schema`.`events_statements_summary_by_digest`.`SUM_CREATED_TMP_TABLES` > 0) order by `performance_schema`.`events_statements_summary_by_digest`.`SUM_CREATED_TMP_DISK_TABLES` desc,`performance_schema`.`events_statements_summary_by_digest`.`SUM_CREATED_TMP_TABLES` desc diff --git a/zbx_env/var/lib/mysql/sys/x@0024user_summary.frm b/zbx_env/var/lib/mysql/sys/x@0024user_summary.frm new file mode 100644 index 000000000..f7ca57e3c --- /dev/null +++ b/zbx_env/var/lib/mysql/sys/x@0024user_summary.frm @@ -0,0 +1,15 @@ +TYPE=VIEW +query=select if(isnull(`performance_schema`.`accounts`.`USER`),\'background\',`performance_schema`.`accounts`.`USER`) AS `user`,sum(`stmt`.`total`) AS `statements`,sum(`stmt`.`total_latency`) AS `statement_latency`,ifnull((sum(`stmt`.`total_latency`) / nullif(sum(`stmt`.`total`),0)),0) AS `statement_avg_latency`,sum(`stmt`.`full_scans`) AS `table_scans`,sum(`io`.`ios`) AS `file_ios`,sum(`io`.`io_latency`) AS `file_io_latency`,sum(`performance_schema`.`accounts`.`CURRENT_CONNECTIONS`) AS `current_connections`,sum(`performance_schema`.`accounts`.`TOTAL_CONNECTIONS`) AS `total_connections`,count(distinct `performance_schema`.`accounts`.`HOST`) AS `unique_hosts`,sum(`mem`.`current_allocated`) AS `current_memory`,sum(`mem`.`total_allocated`) AS `total_memory_allocated` from (((`performance_schema`.`accounts` left join `sys`.`x$user_summary_by_statement_latency` `stmt` on((if(isnull(`performance_schema`.`accounts`.`USER`),\'background\',`performance_schema`.`accounts`.`USER`) = `stmt`.`user`))) left join `sys`.`x$user_summary_by_file_io` `io` on((if(isnull(`performance_schema`.`accounts`.`USER`),\'background\',`performance_schema`.`accounts`.`USER`) = `io`.`user`))) left join `sys`.`x$memory_by_user_by_current_bytes` `mem` on((if(isnull(`performance_schema`.`accounts`.`USER`),\'background\',`performance_schema`.`accounts`.`USER`) = `mem`.`user`))) group by if(isnull(`performance_schema`.`accounts`.`USER`),\'background\',`performance_schema`.`accounts`.`USER`) order by sum(`stmt`.`total_latency`) desc +md5=78929aa9883dc08fbe7287a10c6022e2 +updatable=0 +algorithm=1 +definer_user=mysql.sys +definer_host=localhost +suid=0 +with_check_option=0 +timestamp=2018-07-20 01:51:25 +create-version=1 +source=SELECT IF(accounts.user IS NULL, \'background\', accounts.user) AS user, SUM(stmt.total) AS statements, SUM(stmt.total_latency) AS statement_latency, IFNULL(SUM(stmt.total_latency) / NULLIF(SUM(stmt.total), 0), 0) AS statement_avg_latency, SUM(stmt.full_scans) AS table_scans, SUM(io.ios) AS file_ios, SUM(io.io_latency) AS file_io_latency, SUM(accounts.current_connections) AS current_connections, SUM(accounts.total_connections) AS total_connections, COUNT(DISTINCT host) AS unique_hosts, SUM(mem.current_allocated) AS current_memory, SUM(mem.total_allocated) AS total_memory_allocated FROM performance_schema.accounts LEFT JOIN sys.x$user_summary_by_statement_latency AS stmt ON IF(accounts.user IS NULL, \'background\', accounts.user) = stmt.user LEFT JOIN sys.x$user_summary_by_file_io AS io ON IF(accounts.user IS NULL, \'background\', accounts.user) = io.user LEFT JOIN sys.x$memory_by_user_by_current_bytes mem ON IF(accounts.user IS NULL, \'background\', accounts.user) = mem.user GROUP BY IF(accounts.user IS NULL, \'background\', accounts.user) ORDER BY SUM(stmt.total_latency) DESC +client_cs_name=utf8 +connection_cl_name=utf8_general_ci +view_body_utf8=select if(isnull(`performance_schema`.`accounts`.`USER`),\'background\',`performance_schema`.`accounts`.`USER`) AS `user`,sum(`stmt`.`total`) AS `statements`,sum(`stmt`.`total_latency`) AS `statement_latency`,ifnull((sum(`stmt`.`total_latency`) / nullif(sum(`stmt`.`total`),0)),0) AS `statement_avg_latency`,sum(`stmt`.`full_scans`) AS `table_scans`,sum(`io`.`ios`) AS `file_ios`,sum(`io`.`io_latency`) AS `file_io_latency`,sum(`performance_schema`.`accounts`.`CURRENT_CONNECTIONS`) AS `current_connections`,sum(`performance_schema`.`accounts`.`TOTAL_CONNECTIONS`) AS `total_connections`,count(distinct `performance_schema`.`accounts`.`HOST`) AS `unique_hosts`,sum(`mem`.`current_allocated`) AS `current_memory`,sum(`mem`.`total_allocated`) AS `total_memory_allocated` from (((`performance_schema`.`accounts` left join `sys`.`x$user_summary_by_statement_latency` `stmt` on((if(isnull(`performance_schema`.`accounts`.`USER`),\'background\',`performance_schema`.`accounts`.`USER`) = `stmt`.`user`))) left join `sys`.`x$user_summary_by_file_io` `io` on((if(isnull(`performance_schema`.`accounts`.`USER`),\'background\',`performance_schema`.`accounts`.`USER`) = `io`.`user`))) left join `sys`.`x$memory_by_user_by_current_bytes` `mem` on((if(isnull(`performance_schema`.`accounts`.`USER`),\'background\',`performance_schema`.`accounts`.`USER`) = `mem`.`user`))) group by if(isnull(`performance_schema`.`accounts`.`USER`),\'background\',`performance_schema`.`accounts`.`USER`) order by sum(`stmt`.`total_latency`) desc diff --git a/zbx_env/var/lib/mysql/sys/x@0024user_summary_by_file_io.frm b/zbx_env/var/lib/mysql/sys/x@0024user_summary_by_file_io.frm new file mode 100644 index 000000000..6fadc27de --- /dev/null +++ b/zbx_env/var/lib/mysql/sys/x@0024user_summary_by_file_io.frm @@ -0,0 +1,15 @@ +TYPE=VIEW +query=select if(isnull(`performance_schema`.`events_waits_summary_by_user_by_event_name`.`USER`),\'background\',`performance_schema`.`events_waits_summary_by_user_by_event_name`.`USER`) AS `user`,sum(`performance_schema`.`events_waits_summary_by_user_by_event_name`.`COUNT_STAR`) AS `ios`,sum(`performance_schema`.`events_waits_summary_by_user_by_event_name`.`SUM_TIMER_WAIT`) AS `io_latency` from `performance_schema`.`events_waits_summary_by_user_by_event_name` where (`performance_schema`.`events_waits_summary_by_user_by_event_name`.`EVENT_NAME` like \'wait/io/file/%\') group by if(isnull(`performance_schema`.`events_waits_summary_by_user_by_event_name`.`USER`),\'background\',`performance_schema`.`events_waits_summary_by_user_by_event_name`.`USER`) order by sum(`performance_schema`.`events_waits_summary_by_user_by_event_name`.`SUM_TIMER_WAIT`) desc +md5=9ad3ed8fe2e129e434b9d87da66a32dd +updatable=0 +algorithm=1 +definer_user=mysql.sys +definer_host=localhost +suid=0 +with_check_option=0 +timestamp=2018-07-20 01:51:25 +create-version=1 +source=SELECT IF(user IS NULL, \'background\', user) AS user, SUM(count_star) AS ios, SUM(sum_timer_wait) AS io_latency FROM performance_schema.events_waits_summary_by_user_by_event_name WHERE event_name LIKE \'wait/io/file/%\' GROUP BY IF(user IS NULL, \'background\', user) ORDER BY SUM(sum_timer_wait) DESC +client_cs_name=utf8 +connection_cl_name=utf8_general_ci +view_body_utf8=select if(isnull(`performance_schema`.`events_waits_summary_by_user_by_event_name`.`USER`),\'background\',`performance_schema`.`events_waits_summary_by_user_by_event_name`.`USER`) AS `user`,sum(`performance_schema`.`events_waits_summary_by_user_by_event_name`.`COUNT_STAR`) AS `ios`,sum(`performance_schema`.`events_waits_summary_by_user_by_event_name`.`SUM_TIMER_WAIT`) AS `io_latency` from `performance_schema`.`events_waits_summary_by_user_by_event_name` where (`performance_schema`.`events_waits_summary_by_user_by_event_name`.`EVENT_NAME` like \'wait/io/file/%\') group by if(isnull(`performance_schema`.`events_waits_summary_by_user_by_event_name`.`USER`),\'background\',`performance_schema`.`events_waits_summary_by_user_by_event_name`.`USER`) order by sum(`performance_schema`.`events_waits_summary_by_user_by_event_name`.`SUM_TIMER_WAIT`) desc diff --git a/zbx_env/var/lib/mysql/sys/x@0024user_summary_by_file_io_type.frm b/zbx_env/var/lib/mysql/sys/x@0024user_summary_by_file_io_type.frm new file mode 100644 index 000000000..4c82a9961 --- /dev/null +++ b/zbx_env/var/lib/mysql/sys/x@0024user_summary_by_file_io_type.frm @@ -0,0 +1,15 @@ +TYPE=VIEW +query=select if(isnull(`performance_schema`.`events_waits_summary_by_user_by_event_name`.`USER`),\'background\',`performance_schema`.`events_waits_summary_by_user_by_event_name`.`USER`) AS `user`,`performance_schema`.`events_waits_summary_by_user_by_event_name`.`EVENT_NAME` AS `event_name`,`performance_schema`.`events_waits_summary_by_user_by_event_name`.`COUNT_STAR` AS `total`,`performance_schema`.`events_waits_summary_by_user_by_event_name`.`SUM_TIMER_WAIT` AS `latency`,`performance_schema`.`events_waits_summary_by_user_by_event_name`.`MAX_TIMER_WAIT` AS `max_latency` from `performance_schema`.`events_waits_summary_by_user_by_event_name` where ((`performance_schema`.`events_waits_summary_by_user_by_event_name`.`EVENT_NAME` like \'wait/io/file%\') and (`performance_schema`.`events_waits_summary_by_user_by_event_name`.`COUNT_STAR` > 0)) order by if(isnull(`performance_schema`.`events_waits_summary_by_user_by_event_name`.`USER`),\'background\',`performance_schema`.`events_waits_summary_by_user_by_event_name`.`USER`),`performance_schema`.`events_waits_summary_by_user_by_event_name`.`SUM_TIMER_WAIT` desc +md5=6abe47a2dc4848b09b0231bd0f113fef +updatable=1 +algorithm=2 +definer_user=mysql.sys +definer_host=localhost +suid=0 +with_check_option=0 +timestamp=2018-07-20 01:51:25 +create-version=1 +source=SELECT IF(user IS NULL, \'background\', user) AS user, event_name, count_star AS total, sum_timer_wait AS latency, max_timer_wait AS max_latency FROM performance_schema.events_waits_summary_by_user_by_event_name WHERE event_name LIKE \'wait/io/file%\' AND count_star > 0 ORDER BY user, sum_timer_wait DESC +client_cs_name=utf8 +connection_cl_name=utf8_general_ci +view_body_utf8=select if(isnull(`performance_schema`.`events_waits_summary_by_user_by_event_name`.`USER`),\'background\',`performance_schema`.`events_waits_summary_by_user_by_event_name`.`USER`) AS `user`,`performance_schema`.`events_waits_summary_by_user_by_event_name`.`EVENT_NAME` AS `event_name`,`performance_schema`.`events_waits_summary_by_user_by_event_name`.`COUNT_STAR` AS `total`,`performance_schema`.`events_waits_summary_by_user_by_event_name`.`SUM_TIMER_WAIT` AS `latency`,`performance_schema`.`events_waits_summary_by_user_by_event_name`.`MAX_TIMER_WAIT` AS `max_latency` from `performance_schema`.`events_waits_summary_by_user_by_event_name` where ((`performance_schema`.`events_waits_summary_by_user_by_event_name`.`EVENT_NAME` like \'wait/io/file%\') and (`performance_schema`.`events_waits_summary_by_user_by_event_name`.`COUNT_STAR` > 0)) order by if(isnull(`performance_schema`.`events_waits_summary_by_user_by_event_name`.`USER`),\'background\',`performance_schema`.`events_waits_summary_by_user_by_event_name`.`USER`),`performance_schema`.`events_waits_summary_by_user_by_event_name`.`SUM_TIMER_WAIT` desc diff --git a/zbx_env/var/lib/mysql/sys/x@0024user_summary_by_stages.frm b/zbx_env/var/lib/mysql/sys/x@0024user_summary_by_stages.frm new file mode 100644 index 000000000..b4fef0a02 --- /dev/null +++ b/zbx_env/var/lib/mysql/sys/x@0024user_summary_by_stages.frm @@ -0,0 +1,15 @@ +TYPE=VIEW +query=select if(isnull(`performance_schema`.`events_stages_summary_by_user_by_event_name`.`USER`),\'background\',`performance_schema`.`events_stages_summary_by_user_by_event_name`.`USER`) AS `user`,`performance_schema`.`events_stages_summary_by_user_by_event_name`.`EVENT_NAME` AS `event_name`,`performance_schema`.`events_stages_summary_by_user_by_event_name`.`COUNT_STAR` AS `total`,`performance_schema`.`events_stages_summary_by_user_by_event_name`.`SUM_TIMER_WAIT` AS `total_latency`,`performance_schema`.`events_stages_summary_by_user_by_event_name`.`AVG_TIMER_WAIT` AS `avg_latency` from `performance_schema`.`events_stages_summary_by_user_by_event_name` where (`performance_schema`.`events_stages_summary_by_user_by_event_name`.`SUM_TIMER_WAIT` <> 0) order by if(isnull(`performance_schema`.`events_stages_summary_by_user_by_event_name`.`USER`),\'background\',`performance_schema`.`events_stages_summary_by_user_by_event_name`.`USER`),`performance_schema`.`events_stages_summary_by_user_by_event_name`.`SUM_TIMER_WAIT` desc +md5=c8db9fe9e694b2ba04ff8fad88f2eb30 +updatable=1 +algorithm=2 +definer_user=mysql.sys +definer_host=localhost +suid=0 +with_check_option=0 +timestamp=2018-07-20 01:51:25 +create-version=1 +source=SELECT IF(user IS NULL, \'background\', user) AS user, event_name, count_star AS total, sum_timer_wait AS total_latency, avg_timer_wait AS avg_latency FROM performance_schema.events_stages_summary_by_user_by_event_name WHERE sum_timer_wait != 0 ORDER BY user, sum_timer_wait DESC +client_cs_name=utf8 +connection_cl_name=utf8_general_ci +view_body_utf8=select if(isnull(`performance_schema`.`events_stages_summary_by_user_by_event_name`.`USER`),\'background\',`performance_schema`.`events_stages_summary_by_user_by_event_name`.`USER`) AS `user`,`performance_schema`.`events_stages_summary_by_user_by_event_name`.`EVENT_NAME` AS `event_name`,`performance_schema`.`events_stages_summary_by_user_by_event_name`.`COUNT_STAR` AS `total`,`performance_schema`.`events_stages_summary_by_user_by_event_name`.`SUM_TIMER_WAIT` AS `total_latency`,`performance_schema`.`events_stages_summary_by_user_by_event_name`.`AVG_TIMER_WAIT` AS `avg_latency` from `performance_schema`.`events_stages_summary_by_user_by_event_name` where (`performance_schema`.`events_stages_summary_by_user_by_event_name`.`SUM_TIMER_WAIT` <> 0) order by if(isnull(`performance_schema`.`events_stages_summary_by_user_by_event_name`.`USER`),\'background\',`performance_schema`.`events_stages_summary_by_user_by_event_name`.`USER`),`performance_schema`.`events_stages_summary_by_user_by_event_name`.`SUM_TIMER_WAIT` desc diff --git a/zbx_env/var/lib/mysql/sys/x@0024user_summary_by_statement_latency.frm b/zbx_env/var/lib/mysql/sys/x@0024user_summary_by_statement_latency.frm new file mode 100644 index 000000000..cbedd5a3c --- /dev/null +++ b/zbx_env/var/lib/mysql/sys/x@0024user_summary_by_statement_latency.frm @@ -0,0 +1,15 @@ +TYPE=VIEW +query=select if(isnull(`performance_schema`.`events_statements_summary_by_user_by_event_name`.`USER`),\'background\',`performance_schema`.`events_statements_summary_by_user_by_event_name`.`USER`) AS `user`,sum(`performance_schema`.`events_statements_summary_by_user_by_event_name`.`COUNT_STAR`) AS `total`,sum(`performance_schema`.`events_statements_summary_by_user_by_event_name`.`SUM_TIMER_WAIT`) AS `total_latency`,sum(`performance_schema`.`events_statements_summary_by_user_by_event_name`.`MAX_TIMER_WAIT`) AS `max_latency`,sum(`performance_schema`.`events_statements_summary_by_user_by_event_name`.`SUM_LOCK_TIME`) AS `lock_latency`,sum(`performance_schema`.`events_statements_summary_by_user_by_event_name`.`SUM_ROWS_SENT`) AS `rows_sent`,sum(`performance_schema`.`events_statements_summary_by_user_by_event_name`.`SUM_ROWS_EXAMINED`) AS `rows_examined`,sum(`performance_schema`.`events_statements_summary_by_user_by_event_name`.`SUM_ROWS_AFFECTED`) AS `rows_affected`,(sum(`performance_schema`.`events_statements_summary_by_user_by_event_name`.`SUM_NO_INDEX_USED`) + sum(`performance_schema`.`events_statements_summary_by_user_by_event_name`.`SUM_NO_GOOD_INDEX_USED`)) AS `full_scans` from `performance_schema`.`events_statements_summary_by_user_by_event_name` group by if(isnull(`performance_schema`.`events_statements_summary_by_user_by_event_name`.`USER`),\'background\',`performance_schema`.`events_statements_summary_by_user_by_event_name`.`USER`) order by sum(`performance_schema`.`events_statements_summary_by_user_by_event_name`.`SUM_TIMER_WAIT`) desc +md5=dbfce7fc47556cfedc1a1ec2c2e6081c +updatable=0 +algorithm=1 +definer_user=mysql.sys +definer_host=localhost +suid=0 +with_check_option=0 +timestamp=2018-07-20 01:51:25 +create-version=1 +source=SELECT IF(user IS NULL, \'background\', user) AS user, SUM(count_star) AS total, SUM(sum_timer_wait) AS total_latency, SUM(max_timer_wait) AS max_latency, SUM(sum_lock_time) AS lock_latency, SUM(sum_rows_sent) AS rows_sent, SUM(sum_rows_examined) AS rows_examined, SUM(sum_rows_affected) AS rows_affected, SUM(sum_no_index_used) + SUM(sum_no_good_index_used) AS full_scans FROM performance_schema.events_statements_summary_by_user_by_event_name GROUP BY IF(user IS NULL, \'background\', user) ORDER BY SUM(sum_timer_wait) DESC +client_cs_name=utf8 +connection_cl_name=utf8_general_ci +view_body_utf8=select if(isnull(`performance_schema`.`events_statements_summary_by_user_by_event_name`.`USER`),\'background\',`performance_schema`.`events_statements_summary_by_user_by_event_name`.`USER`) AS `user`,sum(`performance_schema`.`events_statements_summary_by_user_by_event_name`.`COUNT_STAR`) AS `total`,sum(`performance_schema`.`events_statements_summary_by_user_by_event_name`.`SUM_TIMER_WAIT`) AS `total_latency`,sum(`performance_schema`.`events_statements_summary_by_user_by_event_name`.`MAX_TIMER_WAIT`) AS `max_latency`,sum(`performance_schema`.`events_statements_summary_by_user_by_event_name`.`SUM_LOCK_TIME`) AS `lock_latency`,sum(`performance_schema`.`events_statements_summary_by_user_by_event_name`.`SUM_ROWS_SENT`) AS `rows_sent`,sum(`performance_schema`.`events_statements_summary_by_user_by_event_name`.`SUM_ROWS_EXAMINED`) AS `rows_examined`,sum(`performance_schema`.`events_statements_summary_by_user_by_event_name`.`SUM_ROWS_AFFECTED`) AS `rows_affected`,(sum(`performance_schema`.`events_statements_summary_by_user_by_event_name`.`SUM_NO_INDEX_USED`) + sum(`performance_schema`.`events_statements_summary_by_user_by_event_name`.`SUM_NO_GOOD_INDEX_USED`)) AS `full_scans` from `performance_schema`.`events_statements_summary_by_user_by_event_name` group by if(isnull(`performance_schema`.`events_statements_summary_by_user_by_event_name`.`USER`),\'background\',`performance_schema`.`events_statements_summary_by_user_by_event_name`.`USER`) order by sum(`performance_schema`.`events_statements_summary_by_user_by_event_name`.`SUM_TIMER_WAIT`) desc diff --git a/zbx_env/var/lib/mysql/sys/x@0024user_summary_by_statement_type.frm b/zbx_env/var/lib/mysql/sys/x@0024user_summary_by_statement_type.frm new file mode 100644 index 000000000..8347d8b86 --- /dev/null +++ b/zbx_env/var/lib/mysql/sys/x@0024user_summary_by_statement_type.frm @@ -0,0 +1,15 @@ +TYPE=VIEW +query=select if(isnull(`performance_schema`.`events_statements_summary_by_user_by_event_name`.`USER`),\'background\',`performance_schema`.`events_statements_summary_by_user_by_event_name`.`USER`) AS `user`,substring_index(`performance_schema`.`events_statements_summary_by_user_by_event_name`.`EVENT_NAME`,\'/\',-(1)) AS `statement`,`performance_schema`.`events_statements_summary_by_user_by_event_name`.`COUNT_STAR` AS `total`,`performance_schema`.`events_statements_summary_by_user_by_event_name`.`SUM_TIMER_WAIT` AS `total_latency`,`performance_schema`.`events_statements_summary_by_user_by_event_name`.`MAX_TIMER_WAIT` AS `max_latency`,`performance_schema`.`events_statements_summary_by_user_by_event_name`.`SUM_LOCK_TIME` AS `lock_latency`,`performance_schema`.`events_statements_summary_by_user_by_event_name`.`SUM_ROWS_SENT` AS `rows_sent`,`performance_schema`.`events_statements_summary_by_user_by_event_name`.`SUM_ROWS_EXAMINED` AS `rows_examined`,`performance_schema`.`events_statements_summary_by_user_by_event_name`.`SUM_ROWS_AFFECTED` AS `rows_affected`,(`performance_schema`.`events_statements_summary_by_user_by_event_name`.`SUM_NO_INDEX_USED` + `performance_schema`.`events_statements_summary_by_user_by_event_name`.`SUM_NO_GOOD_INDEX_USED`) AS `full_scans` from `performance_schema`.`events_statements_summary_by_user_by_event_name` where (`performance_schema`.`events_statements_summary_by_user_by_event_name`.`SUM_TIMER_WAIT` <> 0) order by if(isnull(`performance_schema`.`events_statements_summary_by_user_by_event_name`.`USER`),\'background\',`performance_schema`.`events_statements_summary_by_user_by_event_name`.`USER`),`performance_schema`.`events_statements_summary_by_user_by_event_name`.`SUM_TIMER_WAIT` desc +md5=335c2dc616d51406316245a601ace891 +updatable=1 +algorithm=2 +definer_user=mysql.sys +definer_host=localhost +suid=0 +with_check_option=0 +timestamp=2018-07-20 01:51:25 +create-version=1 +source=SELECT IF(user IS NULL, \'background\', user) AS user, SUBSTRING_INDEX(event_name, \'/\', -1) AS statement, count_star AS total, sum_timer_wait AS total_latency, max_timer_wait AS max_latency, sum_lock_time AS lock_latency, sum_rows_sent AS rows_sent, sum_rows_examined AS rows_examined, sum_rows_affected AS rows_affected, sum_no_index_used + sum_no_good_index_used AS full_scans FROM performance_schema.events_statements_summary_by_user_by_event_name WHERE sum_timer_wait != 0 ORDER BY user, sum_timer_wait DESC +client_cs_name=utf8 +connection_cl_name=utf8_general_ci +view_body_utf8=select if(isnull(`performance_schema`.`events_statements_summary_by_user_by_event_name`.`USER`),\'background\',`performance_schema`.`events_statements_summary_by_user_by_event_name`.`USER`) AS `user`,substring_index(`performance_schema`.`events_statements_summary_by_user_by_event_name`.`EVENT_NAME`,\'/\',-(1)) AS `statement`,`performance_schema`.`events_statements_summary_by_user_by_event_name`.`COUNT_STAR` AS `total`,`performance_schema`.`events_statements_summary_by_user_by_event_name`.`SUM_TIMER_WAIT` AS `total_latency`,`performance_schema`.`events_statements_summary_by_user_by_event_name`.`MAX_TIMER_WAIT` AS `max_latency`,`performance_schema`.`events_statements_summary_by_user_by_event_name`.`SUM_LOCK_TIME` AS `lock_latency`,`performance_schema`.`events_statements_summary_by_user_by_event_name`.`SUM_ROWS_SENT` AS `rows_sent`,`performance_schema`.`events_statements_summary_by_user_by_event_name`.`SUM_ROWS_EXAMINED` AS `rows_examined`,`performance_schema`.`events_statements_summary_by_user_by_event_name`.`SUM_ROWS_AFFECTED` AS `rows_affected`,(`performance_schema`.`events_statements_summary_by_user_by_event_name`.`SUM_NO_INDEX_USED` + `performance_schema`.`events_statements_summary_by_user_by_event_name`.`SUM_NO_GOOD_INDEX_USED`) AS `full_scans` from `performance_schema`.`events_statements_summary_by_user_by_event_name` where (`performance_schema`.`events_statements_summary_by_user_by_event_name`.`SUM_TIMER_WAIT` <> 0) order by if(isnull(`performance_schema`.`events_statements_summary_by_user_by_event_name`.`USER`),\'background\',`performance_schema`.`events_statements_summary_by_user_by_event_name`.`USER`),`performance_schema`.`events_statements_summary_by_user_by_event_name`.`SUM_TIMER_WAIT` desc diff --git a/zbx_env/var/lib/mysql/sys/x@0024wait_classes_global_by_avg_latency.frm b/zbx_env/var/lib/mysql/sys/x@0024wait_classes_global_by_avg_latency.frm new file mode 100644 index 000000000..d3ee5bff8 --- /dev/null +++ b/zbx_env/var/lib/mysql/sys/x@0024wait_classes_global_by_avg_latency.frm @@ -0,0 +1,15 @@ +TYPE=VIEW +query=select substring_index(`performance_schema`.`events_waits_summary_global_by_event_name`.`EVENT_NAME`,\'/\',3) AS `event_class`,sum(`performance_schema`.`events_waits_summary_global_by_event_name`.`COUNT_STAR`) AS `total`,sum(`performance_schema`.`events_waits_summary_global_by_event_name`.`SUM_TIMER_WAIT`) AS `total_latency`,min(`performance_schema`.`events_waits_summary_global_by_event_name`.`MIN_TIMER_WAIT`) AS `min_latency`,ifnull((sum(`performance_schema`.`events_waits_summary_global_by_event_name`.`SUM_TIMER_WAIT`) / nullif(sum(`performance_schema`.`events_waits_summary_global_by_event_name`.`COUNT_STAR`),0)),0) AS `avg_latency`,max(`performance_schema`.`events_waits_summary_global_by_event_name`.`MAX_TIMER_WAIT`) AS `max_latency` from `performance_schema`.`events_waits_summary_global_by_event_name` where ((`performance_schema`.`events_waits_summary_global_by_event_name`.`SUM_TIMER_WAIT` > 0) and (`performance_schema`.`events_waits_summary_global_by_event_name`.`EVENT_NAME` <> \'idle\')) group by `event_class` order by ifnull((sum(`performance_schema`.`events_waits_summary_global_by_event_name`.`SUM_TIMER_WAIT`) / nullif(sum(`performance_schema`.`events_waits_summary_global_by_event_name`.`COUNT_STAR`),0)),0) desc +md5=b3ac001b255bbdbe61d502d7fd2edd2d +updatable=0 +algorithm=1 +definer_user=mysql.sys +definer_host=localhost +suid=0 +with_check_option=0 +timestamp=2018-07-20 01:51:25 +create-version=1 +source=SELECT SUBSTRING_INDEX(event_name,\'/\', 3) AS event_class, SUM(COUNT_STAR) AS total, SUM(sum_timer_wait) AS total_latency, MIN(min_timer_wait) AS min_latency, IFNULL(SUM(sum_timer_wait) / NULLIF(SUM(COUNT_STAR), 0), 0) AS avg_latency, MAX(max_timer_wait) AS max_latency FROM performance_schema.events_waits_summary_global_by_event_name WHERE sum_timer_wait > 0 AND event_name != \'idle\' GROUP BY event_class ORDER BY IFNULL(SUM(sum_timer_wait) / NULLIF(SUM(COUNT_STAR), 0), 0) DESC +client_cs_name=utf8 +connection_cl_name=utf8_general_ci +view_body_utf8=select substring_index(`performance_schema`.`events_waits_summary_global_by_event_name`.`EVENT_NAME`,\'/\',3) AS `event_class`,sum(`performance_schema`.`events_waits_summary_global_by_event_name`.`COUNT_STAR`) AS `total`,sum(`performance_schema`.`events_waits_summary_global_by_event_name`.`SUM_TIMER_WAIT`) AS `total_latency`,min(`performance_schema`.`events_waits_summary_global_by_event_name`.`MIN_TIMER_WAIT`) AS `min_latency`,ifnull((sum(`performance_schema`.`events_waits_summary_global_by_event_name`.`SUM_TIMER_WAIT`) / nullif(sum(`performance_schema`.`events_waits_summary_global_by_event_name`.`COUNT_STAR`),0)),0) AS `avg_latency`,max(`performance_schema`.`events_waits_summary_global_by_event_name`.`MAX_TIMER_WAIT`) AS `max_latency` from `performance_schema`.`events_waits_summary_global_by_event_name` where ((`performance_schema`.`events_waits_summary_global_by_event_name`.`SUM_TIMER_WAIT` > 0) and (`performance_schema`.`events_waits_summary_global_by_event_name`.`EVENT_NAME` <> \'idle\')) group by `event_class` order by ifnull((sum(`performance_schema`.`events_waits_summary_global_by_event_name`.`SUM_TIMER_WAIT`) / nullif(sum(`performance_schema`.`events_waits_summary_global_by_event_name`.`COUNT_STAR`),0)),0) desc diff --git a/zbx_env/var/lib/mysql/sys/x@0024wait_classes_global_by_latency.frm b/zbx_env/var/lib/mysql/sys/x@0024wait_classes_global_by_latency.frm new file mode 100644 index 000000000..4a5cd5cc0 --- /dev/null +++ b/zbx_env/var/lib/mysql/sys/x@0024wait_classes_global_by_latency.frm @@ -0,0 +1,15 @@ +TYPE=VIEW +query=select substring_index(`performance_schema`.`events_waits_summary_global_by_event_name`.`EVENT_NAME`,\'/\',3) AS `event_class`,sum(`performance_schema`.`events_waits_summary_global_by_event_name`.`COUNT_STAR`) AS `total`,sum(`performance_schema`.`events_waits_summary_global_by_event_name`.`SUM_TIMER_WAIT`) AS `total_latency`,min(`performance_schema`.`events_waits_summary_global_by_event_name`.`MIN_TIMER_WAIT`) AS `min_latency`,ifnull((sum(`performance_schema`.`events_waits_summary_global_by_event_name`.`SUM_TIMER_WAIT`) / nullif(sum(`performance_schema`.`events_waits_summary_global_by_event_name`.`COUNT_STAR`),0)),0) AS `avg_latency`,max(`performance_schema`.`events_waits_summary_global_by_event_name`.`MAX_TIMER_WAIT`) AS `max_latency` from `performance_schema`.`events_waits_summary_global_by_event_name` where ((`performance_schema`.`events_waits_summary_global_by_event_name`.`SUM_TIMER_WAIT` > 0) and (`performance_schema`.`events_waits_summary_global_by_event_name`.`EVENT_NAME` <> \'idle\')) group by substring_index(`performance_schema`.`events_waits_summary_global_by_event_name`.`EVENT_NAME`,\'/\',3) order by sum(`performance_schema`.`events_waits_summary_global_by_event_name`.`SUM_TIMER_WAIT`) desc +md5=9d840339684bda6a9e812ee3a26b89de +updatable=0 +algorithm=1 +definer_user=mysql.sys +definer_host=localhost +suid=0 +with_check_option=0 +timestamp=2018-07-20 01:51:25 +create-version=1 +source=SELECT SUBSTRING_INDEX(event_name,\'/\', 3) AS event_class, SUM(COUNT_STAR) AS total, SUM(sum_timer_wait) AS total_latency, MIN(min_timer_wait) AS min_latency, IFNULL(SUM(sum_timer_wait) / NULLIF(SUM(COUNT_STAR), 0), 0) AS avg_latency, MAX(max_timer_wait) AS max_latency FROM performance_schema.events_waits_summary_global_by_event_name WHERE sum_timer_wait > 0 AND event_name != \'idle\' GROUP BY SUBSTRING_INDEX(event_name,\'/\', 3) ORDER BY SUM(sum_timer_wait) DESC +client_cs_name=utf8 +connection_cl_name=utf8_general_ci +view_body_utf8=select substring_index(`performance_schema`.`events_waits_summary_global_by_event_name`.`EVENT_NAME`,\'/\',3) AS `event_class`,sum(`performance_schema`.`events_waits_summary_global_by_event_name`.`COUNT_STAR`) AS `total`,sum(`performance_schema`.`events_waits_summary_global_by_event_name`.`SUM_TIMER_WAIT`) AS `total_latency`,min(`performance_schema`.`events_waits_summary_global_by_event_name`.`MIN_TIMER_WAIT`) AS `min_latency`,ifnull((sum(`performance_schema`.`events_waits_summary_global_by_event_name`.`SUM_TIMER_WAIT`) / nullif(sum(`performance_schema`.`events_waits_summary_global_by_event_name`.`COUNT_STAR`),0)),0) AS `avg_latency`,max(`performance_schema`.`events_waits_summary_global_by_event_name`.`MAX_TIMER_WAIT`) AS `max_latency` from `performance_schema`.`events_waits_summary_global_by_event_name` where ((`performance_schema`.`events_waits_summary_global_by_event_name`.`SUM_TIMER_WAIT` > 0) and (`performance_schema`.`events_waits_summary_global_by_event_name`.`EVENT_NAME` <> \'idle\')) group by substring_index(`performance_schema`.`events_waits_summary_global_by_event_name`.`EVENT_NAME`,\'/\',3) order by sum(`performance_schema`.`events_waits_summary_global_by_event_name`.`SUM_TIMER_WAIT`) desc diff --git a/zbx_env/var/lib/mysql/sys/x@0024waits_by_host_by_latency.frm b/zbx_env/var/lib/mysql/sys/x@0024waits_by_host_by_latency.frm new file mode 100644 index 000000000..e1abf0e0d --- /dev/null +++ b/zbx_env/var/lib/mysql/sys/x@0024waits_by_host_by_latency.frm @@ -0,0 +1,15 @@ +TYPE=VIEW +query=select if(isnull(`performance_schema`.`events_waits_summary_by_host_by_event_name`.`HOST`),\'background\',`performance_schema`.`events_waits_summary_by_host_by_event_name`.`HOST`) AS `host`,`performance_schema`.`events_waits_summary_by_host_by_event_name`.`EVENT_NAME` AS `event`,`performance_schema`.`events_waits_summary_by_host_by_event_name`.`COUNT_STAR` AS `total`,`performance_schema`.`events_waits_summary_by_host_by_event_name`.`SUM_TIMER_WAIT` AS `total_latency`,`performance_schema`.`events_waits_summary_by_host_by_event_name`.`AVG_TIMER_WAIT` AS `avg_latency`,`performance_schema`.`events_waits_summary_by_host_by_event_name`.`MAX_TIMER_WAIT` AS `max_latency` from `performance_schema`.`events_waits_summary_by_host_by_event_name` where ((`performance_schema`.`events_waits_summary_by_host_by_event_name`.`EVENT_NAME` <> \'idle\') and (`performance_schema`.`events_waits_summary_by_host_by_event_name`.`SUM_TIMER_WAIT` > 0)) order by if(isnull(`performance_schema`.`events_waits_summary_by_host_by_event_name`.`HOST`),\'background\',`performance_schema`.`events_waits_summary_by_host_by_event_name`.`HOST`),`performance_schema`.`events_waits_summary_by_host_by_event_name`.`SUM_TIMER_WAIT` desc +md5=9e8400b7668eaa0c1f9fad020eb2bc5f +updatable=1 +algorithm=2 +definer_user=mysql.sys +definer_host=localhost +suid=0 +with_check_option=0 +timestamp=2018-07-20 01:51:25 +create-version=1 +source=SELECT IF(host IS NULL, \'background\', host) AS host, event_name AS event, count_star AS total, sum_timer_wait AS total_latency, avg_timer_wait AS avg_latency, max_timer_wait AS max_latency FROM performance_schema.events_waits_summary_by_host_by_event_name WHERE event_name != \'idle\' AND sum_timer_wait > 0 ORDER BY host, sum_timer_wait DESC +client_cs_name=utf8 +connection_cl_name=utf8_general_ci +view_body_utf8=select if(isnull(`performance_schema`.`events_waits_summary_by_host_by_event_name`.`HOST`),\'background\',`performance_schema`.`events_waits_summary_by_host_by_event_name`.`HOST`) AS `host`,`performance_schema`.`events_waits_summary_by_host_by_event_name`.`EVENT_NAME` AS `event`,`performance_schema`.`events_waits_summary_by_host_by_event_name`.`COUNT_STAR` AS `total`,`performance_schema`.`events_waits_summary_by_host_by_event_name`.`SUM_TIMER_WAIT` AS `total_latency`,`performance_schema`.`events_waits_summary_by_host_by_event_name`.`AVG_TIMER_WAIT` AS `avg_latency`,`performance_schema`.`events_waits_summary_by_host_by_event_name`.`MAX_TIMER_WAIT` AS `max_latency` from `performance_schema`.`events_waits_summary_by_host_by_event_name` where ((`performance_schema`.`events_waits_summary_by_host_by_event_name`.`EVENT_NAME` <> \'idle\') and (`performance_schema`.`events_waits_summary_by_host_by_event_name`.`SUM_TIMER_WAIT` > 0)) order by if(isnull(`performance_schema`.`events_waits_summary_by_host_by_event_name`.`HOST`),\'background\',`performance_schema`.`events_waits_summary_by_host_by_event_name`.`HOST`),`performance_schema`.`events_waits_summary_by_host_by_event_name`.`SUM_TIMER_WAIT` desc diff --git a/zbx_env/var/lib/mysql/sys/x@0024waits_by_user_by_latency.frm b/zbx_env/var/lib/mysql/sys/x@0024waits_by_user_by_latency.frm new file mode 100644 index 000000000..4b3505f81 --- /dev/null +++ b/zbx_env/var/lib/mysql/sys/x@0024waits_by_user_by_latency.frm @@ -0,0 +1,15 @@ +TYPE=VIEW +query=select if(isnull(`performance_schema`.`events_waits_summary_by_user_by_event_name`.`USER`),\'background\',`performance_schema`.`events_waits_summary_by_user_by_event_name`.`USER`) AS `user`,`performance_schema`.`events_waits_summary_by_user_by_event_name`.`EVENT_NAME` AS `event`,`performance_schema`.`events_waits_summary_by_user_by_event_name`.`COUNT_STAR` AS `total`,`performance_schema`.`events_waits_summary_by_user_by_event_name`.`SUM_TIMER_WAIT` AS `total_latency`,`performance_schema`.`events_waits_summary_by_user_by_event_name`.`AVG_TIMER_WAIT` AS `avg_latency`,`performance_schema`.`events_waits_summary_by_user_by_event_name`.`MAX_TIMER_WAIT` AS `max_latency` from `performance_schema`.`events_waits_summary_by_user_by_event_name` where ((`performance_schema`.`events_waits_summary_by_user_by_event_name`.`EVENT_NAME` <> \'idle\') and (`performance_schema`.`events_waits_summary_by_user_by_event_name`.`USER` is not null) and (`performance_schema`.`events_waits_summary_by_user_by_event_name`.`SUM_TIMER_WAIT` > 0)) order by if(isnull(`performance_schema`.`events_waits_summary_by_user_by_event_name`.`USER`),\'background\',`performance_schema`.`events_waits_summary_by_user_by_event_name`.`USER`),`performance_schema`.`events_waits_summary_by_user_by_event_name`.`SUM_TIMER_WAIT` desc +md5=dbc518ef2a76158bb249c3cc24030227 +updatable=1 +algorithm=2 +definer_user=mysql.sys +definer_host=localhost +suid=0 +with_check_option=0 +timestamp=2018-07-20 01:51:25 +create-version=1 +source=SELECT IF(user IS NULL, \'background\', user) AS user, event_name AS event, count_star AS total, sum_timer_wait AS total_latency, avg_timer_wait AS avg_latency, max_timer_wait AS max_latency FROM performance_schema.events_waits_summary_by_user_by_event_name WHERE event_name != \'idle\' AND user IS NOT NULL AND sum_timer_wait > 0 ORDER BY user, sum_timer_wait DESC +client_cs_name=utf8 +connection_cl_name=utf8_general_ci +view_body_utf8=select if(isnull(`performance_schema`.`events_waits_summary_by_user_by_event_name`.`USER`),\'background\',`performance_schema`.`events_waits_summary_by_user_by_event_name`.`USER`) AS `user`,`performance_schema`.`events_waits_summary_by_user_by_event_name`.`EVENT_NAME` AS `event`,`performance_schema`.`events_waits_summary_by_user_by_event_name`.`COUNT_STAR` AS `total`,`performance_schema`.`events_waits_summary_by_user_by_event_name`.`SUM_TIMER_WAIT` AS `total_latency`,`performance_schema`.`events_waits_summary_by_user_by_event_name`.`AVG_TIMER_WAIT` AS `avg_latency`,`performance_schema`.`events_waits_summary_by_user_by_event_name`.`MAX_TIMER_WAIT` AS `max_latency` from `performance_schema`.`events_waits_summary_by_user_by_event_name` where ((`performance_schema`.`events_waits_summary_by_user_by_event_name`.`EVENT_NAME` <> \'idle\') and (`performance_schema`.`events_waits_summary_by_user_by_event_name`.`USER` is not null) and (`performance_schema`.`events_waits_summary_by_user_by_event_name`.`SUM_TIMER_WAIT` > 0)) order by if(isnull(`performance_schema`.`events_waits_summary_by_user_by_event_name`.`USER`),\'background\',`performance_schema`.`events_waits_summary_by_user_by_event_name`.`USER`),`performance_schema`.`events_waits_summary_by_user_by_event_name`.`SUM_TIMER_WAIT` desc diff --git a/zbx_env/var/lib/mysql/sys/x@0024waits_global_by_latency.frm b/zbx_env/var/lib/mysql/sys/x@0024waits_global_by_latency.frm new file mode 100644 index 000000000..b112e5938 --- /dev/null +++ b/zbx_env/var/lib/mysql/sys/x@0024waits_global_by_latency.frm @@ -0,0 +1,15 @@ +TYPE=VIEW +query=select `performance_schema`.`events_waits_summary_global_by_event_name`.`EVENT_NAME` AS `events`,`performance_schema`.`events_waits_summary_global_by_event_name`.`COUNT_STAR` AS `total`,`performance_schema`.`events_waits_summary_global_by_event_name`.`SUM_TIMER_WAIT` AS `total_latency`,`performance_schema`.`events_waits_summary_global_by_event_name`.`AVG_TIMER_WAIT` AS `avg_latency`,`performance_schema`.`events_waits_summary_global_by_event_name`.`MAX_TIMER_WAIT` AS `max_latency` from `performance_schema`.`events_waits_summary_global_by_event_name` where ((`performance_schema`.`events_waits_summary_global_by_event_name`.`EVENT_NAME` <> \'idle\') and (`performance_schema`.`events_waits_summary_global_by_event_name`.`SUM_TIMER_WAIT` > 0)) order by `performance_schema`.`events_waits_summary_global_by_event_name`.`SUM_TIMER_WAIT` desc +md5=7cafecd806838fe586dc4c00fb492681 +updatable=1 +algorithm=2 +definer_user=mysql.sys +definer_host=localhost +suid=0 +with_check_option=0 +timestamp=2018-07-20 01:51:25 +create-version=1 +source=SELECT event_name AS event, count_star AS total, sum_timer_wait AS total_latency, avg_timer_wait AS avg_latency, max_timer_wait AS max_latency FROM performance_schema.events_waits_summary_global_by_event_name WHERE event_name != \'idle\' AND sum_timer_wait > 0 ORDER BY sum_timer_wait DESC +client_cs_name=utf8 +connection_cl_name=utf8_general_ci +view_body_utf8=select `performance_schema`.`events_waits_summary_global_by_event_name`.`EVENT_NAME` AS `events`,`performance_schema`.`events_waits_summary_global_by_event_name`.`COUNT_STAR` AS `total`,`performance_schema`.`events_waits_summary_global_by_event_name`.`SUM_TIMER_WAIT` AS `total_latency`,`performance_schema`.`events_waits_summary_global_by_event_name`.`AVG_TIMER_WAIT` AS `avg_latency`,`performance_schema`.`events_waits_summary_global_by_event_name`.`MAX_TIMER_WAIT` AS `max_latency` from `performance_schema`.`events_waits_summary_global_by_event_name` where ((`performance_schema`.`events_waits_summary_global_by_event_name`.`EVENT_NAME` <> \'idle\') and (`performance_schema`.`events_waits_summary_global_by_event_name`.`SUM_TIMER_WAIT` > 0)) order by `performance_schema`.`events_waits_summary_global_by_event_name`.`SUM_TIMER_WAIT` desc diff --git a/zbx_env/var/lib/mysql/zabbix/acknowledges.frm b/zbx_env/var/lib/mysql/zabbix/acknowledges.frm new file mode 100644 index 000000000..c5b8e135a Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix/acknowledges.frm differ diff --git a/zbx_env/var/lib/mysql/zabbix/acknowledges.ibd b/zbx_env/var/lib/mysql/zabbix/acknowledges.ibd new file mode 100644 index 000000000..24e3f0434 Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix/acknowledges.ibd differ diff --git a/zbx_env/var/lib/mysql/zabbix/actions.frm b/zbx_env/var/lib/mysql/zabbix/actions.frm new file mode 100644 index 000000000..a142836db Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix/actions.frm differ diff --git a/zbx_env/var/lib/mysql/zabbix/actions.ibd b/zbx_env/var/lib/mysql/zabbix/actions.ibd new file mode 100644 index 000000000..4f9e3e4a3 Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix/actions.ibd differ diff --git a/zbx_env/var/lib/mysql/zabbix/alerts.frm b/zbx_env/var/lib/mysql/zabbix/alerts.frm new file mode 100644 index 000000000..4b7a6d4e8 Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix/alerts.frm differ diff --git a/zbx_env/var/lib/mysql/zabbix/alerts.ibd b/zbx_env/var/lib/mysql/zabbix/alerts.ibd new file mode 100644 index 000000000..ccc3bb63f Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix/alerts.ibd differ diff --git a/zbx_env/var/lib/mysql/zabbix/application_discovery.frm b/zbx_env/var/lib/mysql/zabbix/application_discovery.frm new file mode 100644 index 000000000..8119fb87d Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix/application_discovery.frm differ diff --git a/zbx_env/var/lib/mysql/zabbix/application_discovery.ibd b/zbx_env/var/lib/mysql/zabbix/application_discovery.ibd new file mode 100644 index 000000000..6a26851c2 Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix/application_discovery.ibd differ diff --git a/zbx_env/var/lib/mysql/zabbix/application_prototype.frm b/zbx_env/var/lib/mysql/zabbix/application_prototype.frm new file mode 100644 index 000000000..7aaa6120d Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix/application_prototype.frm differ diff --git a/zbx_env/var/lib/mysql/zabbix/application_prototype.ibd b/zbx_env/var/lib/mysql/zabbix/application_prototype.ibd new file mode 100644 index 000000000..72dc50e5a Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix/application_prototype.ibd differ diff --git a/zbx_env/var/lib/mysql/zabbix/application_template.frm b/zbx_env/var/lib/mysql/zabbix/application_template.frm new file mode 100644 index 000000000..522fb09aa Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix/application_template.frm differ diff --git a/zbx_env/var/lib/mysql/zabbix/application_template.ibd b/zbx_env/var/lib/mysql/zabbix/application_template.ibd new file mode 100644 index 000000000..0caba1bc4 Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix/application_template.ibd differ diff --git a/zbx_env/var/lib/mysql/zabbix/applications.frm b/zbx_env/var/lib/mysql/zabbix/applications.frm new file mode 100644 index 000000000..5d3b6f6d8 Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix/applications.frm differ diff --git a/zbx_env/var/lib/mysql/zabbix/applications.ibd b/zbx_env/var/lib/mysql/zabbix/applications.ibd new file mode 100644 index 000000000..5602cf946 Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix/applications.ibd differ diff --git a/zbx_env/var/lib/mysql/zabbix/auditlog.frm b/zbx_env/var/lib/mysql/zabbix/auditlog.frm new file mode 100644 index 000000000..57401b52d Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix/auditlog.frm differ diff --git a/zbx_env/var/lib/mysql/zabbix/auditlog.ibd b/zbx_env/var/lib/mysql/zabbix/auditlog.ibd new file mode 100644 index 000000000..595cfc2a1 Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix/auditlog.ibd differ diff --git a/zbx_env/var/lib/mysql/zabbix/auditlog_details.frm b/zbx_env/var/lib/mysql/zabbix/auditlog_details.frm new file mode 100644 index 000000000..bc7fe4340 Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix/auditlog_details.frm differ diff --git a/zbx_env/var/lib/mysql/zabbix/auditlog_details.ibd b/zbx_env/var/lib/mysql/zabbix/auditlog_details.ibd new file mode 100644 index 000000000..a744a9fa6 Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix/auditlog_details.ibd differ diff --git a/zbx_env/var/lib/mysql/zabbix/autoreg_host.frm b/zbx_env/var/lib/mysql/zabbix/autoreg_host.frm new file mode 100644 index 000000000..26284c058 Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix/autoreg_host.frm differ diff --git a/zbx_env/var/lib/mysql/zabbix/autoreg_host.ibd b/zbx_env/var/lib/mysql/zabbix/autoreg_host.ibd new file mode 100644 index 000000000..d2af3caed Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix/autoreg_host.ibd differ diff --git a/zbx_env/var/lib/mysql/zabbix/conditions.frm b/zbx_env/var/lib/mysql/zabbix/conditions.frm new file mode 100644 index 000000000..7a65cea80 Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix/conditions.frm differ diff --git a/zbx_env/var/lib/mysql/zabbix/conditions.ibd b/zbx_env/var/lib/mysql/zabbix/conditions.ibd new file mode 100644 index 000000000..828fd18b1 Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix/conditions.ibd differ diff --git a/zbx_env/var/lib/mysql/zabbix/config.frm b/zbx_env/var/lib/mysql/zabbix/config.frm new file mode 100644 index 000000000..e36fce231 Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix/config.frm differ diff --git a/zbx_env/var/lib/mysql/zabbix/config.ibd b/zbx_env/var/lib/mysql/zabbix/config.ibd new file mode 100644 index 000000000..606cae359 Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix/config.ibd differ diff --git a/zbx_env/var/lib/mysql/zabbix/corr_condition.frm b/zbx_env/var/lib/mysql/zabbix/corr_condition.frm new file mode 100644 index 000000000..09fc24a25 Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix/corr_condition.frm differ diff --git a/zbx_env/var/lib/mysql/zabbix/corr_condition.ibd b/zbx_env/var/lib/mysql/zabbix/corr_condition.ibd new file mode 100644 index 000000000..fde48e968 Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix/corr_condition.ibd differ diff --git a/zbx_env/var/lib/mysql/zabbix/corr_condition_group.frm b/zbx_env/var/lib/mysql/zabbix/corr_condition_group.frm new file mode 100644 index 000000000..c4ad95846 Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix/corr_condition_group.frm differ diff --git a/zbx_env/var/lib/mysql/zabbix/corr_condition_group.ibd b/zbx_env/var/lib/mysql/zabbix/corr_condition_group.ibd new file mode 100644 index 000000000..ff140d124 Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix/corr_condition_group.ibd differ diff --git a/zbx_env/var/lib/mysql/zabbix/corr_condition_tag.frm b/zbx_env/var/lib/mysql/zabbix/corr_condition_tag.frm new file mode 100644 index 000000000..e1f537fa5 Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix/corr_condition_tag.frm differ diff --git a/zbx_env/var/lib/mysql/zabbix/corr_condition_tag.ibd b/zbx_env/var/lib/mysql/zabbix/corr_condition_tag.ibd new file mode 100644 index 000000000..b3818ed1f Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix/corr_condition_tag.ibd differ diff --git a/zbx_env/var/lib/mysql/zabbix/corr_condition_tagpair.frm b/zbx_env/var/lib/mysql/zabbix/corr_condition_tagpair.frm new file mode 100644 index 000000000..ff6e1572d Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix/corr_condition_tagpair.frm differ diff --git a/zbx_env/var/lib/mysql/zabbix/corr_condition_tagpair.ibd b/zbx_env/var/lib/mysql/zabbix/corr_condition_tagpair.ibd new file mode 100644 index 000000000..5dad1f443 Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix/corr_condition_tagpair.ibd differ diff --git a/zbx_env/var/lib/mysql/zabbix/corr_condition_tagvalue.frm b/zbx_env/var/lib/mysql/zabbix/corr_condition_tagvalue.frm new file mode 100644 index 000000000..50cf41843 Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix/corr_condition_tagvalue.frm differ diff --git a/zbx_env/var/lib/mysql/zabbix/corr_condition_tagvalue.ibd b/zbx_env/var/lib/mysql/zabbix/corr_condition_tagvalue.ibd new file mode 100644 index 000000000..46ea22697 Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix/corr_condition_tagvalue.ibd differ diff --git a/zbx_env/var/lib/mysql/zabbix/corr_operation.frm b/zbx_env/var/lib/mysql/zabbix/corr_operation.frm new file mode 100644 index 000000000..1fbee8077 Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix/corr_operation.frm differ diff --git a/zbx_env/var/lib/mysql/zabbix/corr_operation.ibd b/zbx_env/var/lib/mysql/zabbix/corr_operation.ibd new file mode 100644 index 000000000..fa91e6549 Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix/corr_operation.ibd differ diff --git a/zbx_env/var/lib/mysql/zabbix/correlation.frm b/zbx_env/var/lib/mysql/zabbix/correlation.frm new file mode 100644 index 000000000..79a1fd3ea Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix/correlation.frm differ diff --git a/zbx_env/var/lib/mysql/zabbix/correlation.ibd b/zbx_env/var/lib/mysql/zabbix/correlation.ibd new file mode 100644 index 000000000..7e445090d Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix/correlation.ibd differ diff --git a/zbx_env/var/lib/mysql/zabbix/dashboard.frm b/zbx_env/var/lib/mysql/zabbix/dashboard.frm new file mode 100644 index 000000000..7976176ec Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix/dashboard.frm differ diff --git a/zbx_env/var/lib/mysql/zabbix/dashboard.ibd b/zbx_env/var/lib/mysql/zabbix/dashboard.ibd new file mode 100644 index 000000000..2ce0dec5d Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix/dashboard.ibd differ diff --git a/zbx_env/var/lib/mysql/zabbix/dashboard_user.frm b/zbx_env/var/lib/mysql/zabbix/dashboard_user.frm new file mode 100644 index 000000000..ea19f07db Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix/dashboard_user.frm differ diff --git a/zbx_env/var/lib/mysql/zabbix/dashboard_user.ibd b/zbx_env/var/lib/mysql/zabbix/dashboard_user.ibd new file mode 100644 index 000000000..d1e74137c Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix/dashboard_user.ibd differ diff --git a/zbx_env/var/lib/mysql/zabbix/dashboard_usrgrp.frm b/zbx_env/var/lib/mysql/zabbix/dashboard_usrgrp.frm new file mode 100644 index 000000000..ae81309bc Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix/dashboard_usrgrp.frm differ diff --git a/zbx_env/var/lib/mysql/zabbix/dashboard_usrgrp.ibd b/zbx_env/var/lib/mysql/zabbix/dashboard_usrgrp.ibd new file mode 100644 index 000000000..8572f5b05 Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix/dashboard_usrgrp.ibd differ diff --git a/zbx_env/var/lib/mysql/zabbix/db.opt b/zbx_env/var/lib/mysql/zabbix/db.opt new file mode 100644 index 000000000..16221b854 --- /dev/null +++ b/zbx_env/var/lib/mysql/zabbix/db.opt @@ -0,0 +1,2 @@ +default-character-set=utf8 +default-collation=utf8_bin diff --git a/zbx_env/var/lib/mysql/zabbix/dbversion.frm b/zbx_env/var/lib/mysql/zabbix/dbversion.frm new file mode 100644 index 000000000..1c10b5f1b Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix/dbversion.frm differ diff --git a/zbx_env/var/lib/mysql/zabbix/dbversion.ibd b/zbx_env/var/lib/mysql/zabbix/dbversion.ibd new file mode 100644 index 000000000..d408596bd Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix/dbversion.ibd differ diff --git a/zbx_env/var/lib/mysql/zabbix/dchecks.frm b/zbx_env/var/lib/mysql/zabbix/dchecks.frm new file mode 100644 index 000000000..2df0b492a Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix/dchecks.frm differ diff --git a/zbx_env/var/lib/mysql/zabbix/dchecks.ibd b/zbx_env/var/lib/mysql/zabbix/dchecks.ibd new file mode 100644 index 000000000..b3a1ba95f Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix/dchecks.ibd differ diff --git a/zbx_env/var/lib/mysql/zabbix/dhosts.frm b/zbx_env/var/lib/mysql/zabbix/dhosts.frm new file mode 100644 index 000000000..597ad03f3 Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix/dhosts.frm differ diff --git a/zbx_env/var/lib/mysql/zabbix/dhosts.ibd b/zbx_env/var/lib/mysql/zabbix/dhosts.ibd new file mode 100644 index 000000000..78c429ef6 Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix/dhosts.ibd differ diff --git a/zbx_env/var/lib/mysql/zabbix/drules.frm b/zbx_env/var/lib/mysql/zabbix/drules.frm new file mode 100644 index 000000000..3b182c724 Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix/drules.frm differ diff --git a/zbx_env/var/lib/mysql/zabbix/drules.ibd b/zbx_env/var/lib/mysql/zabbix/drules.ibd new file mode 100644 index 000000000..cf0896a6c Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix/drules.ibd differ diff --git a/zbx_env/var/lib/mysql/zabbix/dservices.frm b/zbx_env/var/lib/mysql/zabbix/dservices.frm new file mode 100644 index 000000000..d2d28adda Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix/dservices.frm differ diff --git a/zbx_env/var/lib/mysql/zabbix/dservices.ibd b/zbx_env/var/lib/mysql/zabbix/dservices.ibd new file mode 100644 index 000000000..2ae6d38d9 Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix/dservices.ibd differ diff --git a/zbx_env/var/lib/mysql/zabbix/escalations.frm b/zbx_env/var/lib/mysql/zabbix/escalations.frm new file mode 100644 index 000000000..d00891aa8 Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix/escalations.frm differ diff --git a/zbx_env/var/lib/mysql/zabbix/escalations.ibd b/zbx_env/var/lib/mysql/zabbix/escalations.ibd new file mode 100644 index 000000000..ae93d5156 Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix/escalations.ibd differ diff --git a/zbx_env/var/lib/mysql/zabbix/event_recovery.frm b/zbx_env/var/lib/mysql/zabbix/event_recovery.frm new file mode 100644 index 000000000..41cac11b1 Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix/event_recovery.frm differ diff --git a/zbx_env/var/lib/mysql/zabbix/event_recovery.ibd b/zbx_env/var/lib/mysql/zabbix/event_recovery.ibd new file mode 100644 index 000000000..2a67f4233 Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix/event_recovery.ibd differ diff --git a/zbx_env/var/lib/mysql/zabbix/event_tag.frm b/zbx_env/var/lib/mysql/zabbix/event_tag.frm new file mode 100644 index 000000000..b4baa866d Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix/event_tag.frm differ diff --git a/zbx_env/var/lib/mysql/zabbix/event_tag.ibd b/zbx_env/var/lib/mysql/zabbix/event_tag.ibd new file mode 100644 index 000000000..b4c2b7312 Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix/event_tag.ibd differ diff --git a/zbx_env/var/lib/mysql/zabbix/events.frm b/zbx_env/var/lib/mysql/zabbix/events.frm new file mode 100644 index 000000000..39fcecd26 Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix/events.frm differ diff --git a/zbx_env/var/lib/mysql/zabbix/events.ibd b/zbx_env/var/lib/mysql/zabbix/events.ibd new file mode 100644 index 000000000..ee3d24c64 Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix/events.ibd differ diff --git a/zbx_env/var/lib/mysql/zabbix/expressions.frm b/zbx_env/var/lib/mysql/zabbix/expressions.frm new file mode 100644 index 000000000..b57613b8a Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix/expressions.frm differ diff --git a/zbx_env/var/lib/mysql/zabbix/expressions.ibd b/zbx_env/var/lib/mysql/zabbix/expressions.ibd new file mode 100644 index 000000000..b03a1c9ff Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix/expressions.ibd differ diff --git a/zbx_env/var/lib/mysql/zabbix/functions.frm b/zbx_env/var/lib/mysql/zabbix/functions.frm new file mode 100644 index 000000000..2e32cc9d3 Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix/functions.frm differ diff --git a/zbx_env/var/lib/mysql/zabbix/functions.ibd b/zbx_env/var/lib/mysql/zabbix/functions.ibd new file mode 100644 index 000000000..84c447be8 Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix/functions.ibd differ diff --git a/zbx_env/var/lib/mysql/zabbix/globalmacro.frm b/zbx_env/var/lib/mysql/zabbix/globalmacro.frm new file mode 100644 index 000000000..8e9d9a135 Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix/globalmacro.frm differ diff --git a/zbx_env/var/lib/mysql/zabbix/globalmacro.ibd b/zbx_env/var/lib/mysql/zabbix/globalmacro.ibd new file mode 100644 index 000000000..f23d3c550 Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix/globalmacro.ibd differ diff --git a/zbx_env/var/lib/mysql/zabbix/globalvars.frm b/zbx_env/var/lib/mysql/zabbix/globalvars.frm new file mode 100644 index 000000000..2d0781c8a Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix/globalvars.frm differ diff --git a/zbx_env/var/lib/mysql/zabbix/globalvars.ibd b/zbx_env/var/lib/mysql/zabbix/globalvars.ibd new file mode 100644 index 000000000..626f6f289 Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix/globalvars.ibd differ diff --git a/zbx_env/var/lib/mysql/zabbix/graph_discovery.frm b/zbx_env/var/lib/mysql/zabbix/graph_discovery.frm new file mode 100644 index 000000000..b6da0fbd3 Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix/graph_discovery.frm differ diff --git a/zbx_env/var/lib/mysql/zabbix/graph_discovery.ibd b/zbx_env/var/lib/mysql/zabbix/graph_discovery.ibd new file mode 100644 index 000000000..5c39c7ae7 Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix/graph_discovery.ibd differ diff --git a/zbx_env/var/lib/mysql/zabbix/graph_theme.frm b/zbx_env/var/lib/mysql/zabbix/graph_theme.frm new file mode 100644 index 000000000..d690d6c3e Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix/graph_theme.frm differ diff --git a/zbx_env/var/lib/mysql/zabbix/graph_theme.ibd b/zbx_env/var/lib/mysql/zabbix/graph_theme.ibd new file mode 100644 index 000000000..8a07a043a Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix/graph_theme.ibd differ diff --git a/zbx_env/var/lib/mysql/zabbix/graphs.frm b/zbx_env/var/lib/mysql/zabbix/graphs.frm new file mode 100644 index 000000000..22132fefb Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix/graphs.frm differ diff --git a/zbx_env/var/lib/mysql/zabbix/graphs.ibd b/zbx_env/var/lib/mysql/zabbix/graphs.ibd new file mode 100644 index 000000000..3a0f172b8 Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix/graphs.ibd differ diff --git a/zbx_env/var/lib/mysql/zabbix/graphs_items.frm b/zbx_env/var/lib/mysql/zabbix/graphs_items.frm new file mode 100644 index 000000000..7ba123a9d Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix/graphs_items.frm differ diff --git a/zbx_env/var/lib/mysql/zabbix/graphs_items.ibd b/zbx_env/var/lib/mysql/zabbix/graphs_items.ibd new file mode 100644 index 000000000..1d9f902c9 Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix/graphs_items.ibd differ diff --git a/zbx_env/var/lib/mysql/zabbix/group_discovery.frm b/zbx_env/var/lib/mysql/zabbix/group_discovery.frm new file mode 100644 index 000000000..195502ca4 Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix/group_discovery.frm differ diff --git a/zbx_env/var/lib/mysql/zabbix/group_discovery.ibd b/zbx_env/var/lib/mysql/zabbix/group_discovery.ibd new file mode 100644 index 000000000..72cdc4eb3 Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix/group_discovery.ibd differ diff --git a/zbx_env/var/lib/mysql/zabbix/group_prototype.frm b/zbx_env/var/lib/mysql/zabbix/group_prototype.frm new file mode 100644 index 000000000..2967441dc Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix/group_prototype.frm differ diff --git a/zbx_env/var/lib/mysql/zabbix/group_prototype.ibd b/zbx_env/var/lib/mysql/zabbix/group_prototype.ibd new file mode 100644 index 000000000..b7347d3b9 Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix/group_prototype.ibd differ diff --git a/zbx_env/var/lib/mysql/zabbix/groups.frm b/zbx_env/var/lib/mysql/zabbix/groups.frm new file mode 100644 index 000000000..80c0cb495 Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix/groups.frm differ diff --git a/zbx_env/var/lib/mysql/zabbix/groups.ibd b/zbx_env/var/lib/mysql/zabbix/groups.ibd new file mode 100644 index 000000000..c4fc27bc6 Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix/groups.ibd differ diff --git a/zbx_env/var/lib/mysql/zabbix/history.frm b/zbx_env/var/lib/mysql/zabbix/history.frm new file mode 100644 index 000000000..534e43828 Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix/history.frm differ diff --git a/zbx_env/var/lib/mysql/zabbix/history.ibd b/zbx_env/var/lib/mysql/zabbix/history.ibd new file mode 100644 index 000000000..b6d19f666 Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix/history.ibd differ diff --git a/zbx_env/var/lib/mysql/zabbix/history_log.frm b/zbx_env/var/lib/mysql/zabbix/history_log.frm new file mode 100644 index 000000000..2d53aaae2 Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix/history_log.frm differ diff --git a/zbx_env/var/lib/mysql/zabbix/history_log.ibd b/zbx_env/var/lib/mysql/zabbix/history_log.ibd new file mode 100644 index 000000000..0f34aa209 Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix/history_log.ibd differ diff --git a/zbx_env/var/lib/mysql/zabbix/history_str.frm b/zbx_env/var/lib/mysql/zabbix/history_str.frm new file mode 100644 index 000000000..5f8d8e771 Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix/history_str.frm differ diff --git a/zbx_env/var/lib/mysql/zabbix/history_str.ibd b/zbx_env/var/lib/mysql/zabbix/history_str.ibd new file mode 100644 index 000000000..cdbb9adc9 Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix/history_str.ibd differ diff --git a/zbx_env/var/lib/mysql/zabbix/history_text.frm b/zbx_env/var/lib/mysql/zabbix/history_text.frm new file mode 100644 index 000000000..254fdf531 Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix/history_text.frm differ diff --git a/zbx_env/var/lib/mysql/zabbix/history_text.ibd b/zbx_env/var/lib/mysql/zabbix/history_text.ibd new file mode 100644 index 000000000..797449b36 Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix/history_text.ibd differ diff --git a/zbx_env/var/lib/mysql/zabbix/history_uint.frm b/zbx_env/var/lib/mysql/zabbix/history_uint.frm new file mode 100644 index 000000000..863d9bac6 Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix/history_uint.frm differ diff --git a/zbx_env/var/lib/mysql/zabbix/history_uint.ibd b/zbx_env/var/lib/mysql/zabbix/history_uint.ibd new file mode 100644 index 000000000..e03bd9cf6 Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix/history_uint.ibd differ diff --git a/zbx_env/var/lib/mysql/zabbix/host_discovery.frm b/zbx_env/var/lib/mysql/zabbix/host_discovery.frm new file mode 100644 index 000000000..eca892c47 Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix/host_discovery.frm differ diff --git a/zbx_env/var/lib/mysql/zabbix/host_discovery.ibd b/zbx_env/var/lib/mysql/zabbix/host_discovery.ibd new file mode 100644 index 000000000..ee519b856 Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix/host_discovery.ibd differ diff --git a/zbx_env/var/lib/mysql/zabbix/host_inventory.frm b/zbx_env/var/lib/mysql/zabbix/host_inventory.frm new file mode 100644 index 000000000..cda32745c Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix/host_inventory.frm differ diff --git a/zbx_env/var/lib/mysql/zabbix/host_inventory.ibd b/zbx_env/var/lib/mysql/zabbix/host_inventory.ibd new file mode 100644 index 000000000..0af19526a Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix/host_inventory.ibd differ diff --git a/zbx_env/var/lib/mysql/zabbix/hostmacro.frm b/zbx_env/var/lib/mysql/zabbix/hostmacro.frm new file mode 100644 index 000000000..57d203591 Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix/hostmacro.frm differ diff --git a/zbx_env/var/lib/mysql/zabbix/hostmacro.ibd b/zbx_env/var/lib/mysql/zabbix/hostmacro.ibd new file mode 100644 index 000000000..99f0c17b5 Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix/hostmacro.ibd differ diff --git a/zbx_env/var/lib/mysql/zabbix/hosts.frm b/zbx_env/var/lib/mysql/zabbix/hosts.frm new file mode 100644 index 000000000..ec25fcf4e Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix/hosts.frm differ diff --git a/zbx_env/var/lib/mysql/zabbix/hosts.ibd b/zbx_env/var/lib/mysql/zabbix/hosts.ibd new file mode 100644 index 000000000..3f2dab5b3 Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix/hosts.ibd differ diff --git a/zbx_env/var/lib/mysql/zabbix/hosts_groups.frm b/zbx_env/var/lib/mysql/zabbix/hosts_groups.frm new file mode 100644 index 000000000..c228f2c10 Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix/hosts_groups.frm differ diff --git a/zbx_env/var/lib/mysql/zabbix/hosts_groups.ibd b/zbx_env/var/lib/mysql/zabbix/hosts_groups.ibd new file mode 100644 index 000000000..bd8238e41 Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix/hosts_groups.ibd differ diff --git a/zbx_env/var/lib/mysql/zabbix/hosts_templates.frm b/zbx_env/var/lib/mysql/zabbix/hosts_templates.frm new file mode 100644 index 000000000..50882b739 Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix/hosts_templates.frm differ diff --git a/zbx_env/var/lib/mysql/zabbix/hosts_templates.ibd b/zbx_env/var/lib/mysql/zabbix/hosts_templates.ibd new file mode 100644 index 000000000..55f7dbbef Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix/hosts_templates.ibd differ diff --git a/zbx_env/var/lib/mysql/zabbix/housekeeper.frm b/zbx_env/var/lib/mysql/zabbix/housekeeper.frm new file mode 100644 index 000000000..81b4ad785 Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix/housekeeper.frm differ diff --git a/zbx_env/var/lib/mysql/zabbix/housekeeper.ibd b/zbx_env/var/lib/mysql/zabbix/housekeeper.ibd new file mode 100644 index 000000000..26ca1984c Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix/housekeeper.ibd differ diff --git a/zbx_env/var/lib/mysql/zabbix/httpstep.frm b/zbx_env/var/lib/mysql/zabbix/httpstep.frm new file mode 100644 index 000000000..fa8844842 Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix/httpstep.frm differ diff --git a/zbx_env/var/lib/mysql/zabbix/httpstep.ibd b/zbx_env/var/lib/mysql/zabbix/httpstep.ibd new file mode 100644 index 000000000..9c2715ed4 Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix/httpstep.ibd differ diff --git a/zbx_env/var/lib/mysql/zabbix/httpstep_field.frm b/zbx_env/var/lib/mysql/zabbix/httpstep_field.frm new file mode 100644 index 000000000..a65aa7c70 Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix/httpstep_field.frm differ diff --git a/zbx_env/var/lib/mysql/zabbix/httpstep_field.ibd b/zbx_env/var/lib/mysql/zabbix/httpstep_field.ibd new file mode 100644 index 000000000..ce3075ad9 Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix/httpstep_field.ibd differ diff --git a/zbx_env/var/lib/mysql/zabbix/httpstepitem.frm b/zbx_env/var/lib/mysql/zabbix/httpstepitem.frm new file mode 100644 index 000000000..60778d500 Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix/httpstepitem.frm differ diff --git a/zbx_env/var/lib/mysql/zabbix/httpstepitem.ibd b/zbx_env/var/lib/mysql/zabbix/httpstepitem.ibd new file mode 100644 index 000000000..0e6e49d35 Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix/httpstepitem.ibd differ diff --git a/zbx_env/var/lib/mysql/zabbix/httptest.frm b/zbx_env/var/lib/mysql/zabbix/httptest.frm new file mode 100644 index 000000000..5b680daf5 Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix/httptest.frm differ diff --git a/zbx_env/var/lib/mysql/zabbix/httptest.ibd b/zbx_env/var/lib/mysql/zabbix/httptest.ibd new file mode 100644 index 000000000..b4f0b8528 Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix/httptest.ibd differ diff --git a/zbx_env/var/lib/mysql/zabbix/httptest_field.frm b/zbx_env/var/lib/mysql/zabbix/httptest_field.frm new file mode 100644 index 000000000..ca5a61a2c Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix/httptest_field.frm differ diff --git a/zbx_env/var/lib/mysql/zabbix/httptest_field.ibd b/zbx_env/var/lib/mysql/zabbix/httptest_field.ibd new file mode 100644 index 000000000..ad38c1860 Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix/httptest_field.ibd differ diff --git a/zbx_env/var/lib/mysql/zabbix/httptestitem.frm b/zbx_env/var/lib/mysql/zabbix/httptestitem.frm new file mode 100644 index 000000000..f437b657c Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix/httptestitem.frm differ diff --git a/zbx_env/var/lib/mysql/zabbix/httptestitem.ibd b/zbx_env/var/lib/mysql/zabbix/httptestitem.ibd new file mode 100644 index 000000000..03c81ab80 Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix/httptestitem.ibd differ diff --git a/zbx_env/var/lib/mysql/zabbix/icon_map.frm b/zbx_env/var/lib/mysql/zabbix/icon_map.frm new file mode 100644 index 000000000..d7f8e2350 Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix/icon_map.frm differ diff --git a/zbx_env/var/lib/mysql/zabbix/icon_map.ibd b/zbx_env/var/lib/mysql/zabbix/icon_map.ibd new file mode 100644 index 000000000..4cccba205 Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix/icon_map.ibd differ diff --git a/zbx_env/var/lib/mysql/zabbix/icon_mapping.frm b/zbx_env/var/lib/mysql/zabbix/icon_mapping.frm new file mode 100644 index 000000000..41029fc46 Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix/icon_mapping.frm differ diff --git a/zbx_env/var/lib/mysql/zabbix/icon_mapping.ibd b/zbx_env/var/lib/mysql/zabbix/icon_mapping.ibd new file mode 100644 index 000000000..946ed3e9c Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix/icon_mapping.ibd differ diff --git a/zbx_env/var/lib/mysql/zabbix/ids.frm b/zbx_env/var/lib/mysql/zabbix/ids.frm new file mode 100644 index 000000000..ca0dda6c7 Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix/ids.frm differ diff --git a/zbx_env/var/lib/mysql/zabbix/ids.ibd b/zbx_env/var/lib/mysql/zabbix/ids.ibd new file mode 100644 index 000000000..7c23719f9 Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix/ids.ibd differ diff --git a/zbx_env/var/lib/mysql/zabbix/images.frm b/zbx_env/var/lib/mysql/zabbix/images.frm new file mode 100644 index 000000000..05d0bc5a2 Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix/images.frm differ diff --git a/zbx_env/var/lib/mysql/zabbix/images.ibd b/zbx_env/var/lib/mysql/zabbix/images.ibd new file mode 100644 index 000000000..8532c81bd Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix/images.ibd differ diff --git a/zbx_env/var/lib/mysql/zabbix/interface.frm b/zbx_env/var/lib/mysql/zabbix/interface.frm new file mode 100644 index 000000000..f7fa852f3 Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix/interface.frm differ diff --git a/zbx_env/var/lib/mysql/zabbix/interface.ibd b/zbx_env/var/lib/mysql/zabbix/interface.ibd new file mode 100644 index 000000000..acf6cc94d Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix/interface.ibd differ diff --git a/zbx_env/var/lib/mysql/zabbix/interface_discovery.frm b/zbx_env/var/lib/mysql/zabbix/interface_discovery.frm new file mode 100644 index 000000000..2b28473f4 Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix/interface_discovery.frm differ diff --git a/zbx_env/var/lib/mysql/zabbix/interface_discovery.ibd b/zbx_env/var/lib/mysql/zabbix/interface_discovery.ibd new file mode 100644 index 000000000..dc4e22740 Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix/interface_discovery.ibd differ diff --git a/zbx_env/var/lib/mysql/zabbix/item_application_prototype.frm b/zbx_env/var/lib/mysql/zabbix/item_application_prototype.frm new file mode 100644 index 000000000..b7a40c466 Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix/item_application_prototype.frm differ diff --git a/zbx_env/var/lib/mysql/zabbix/item_application_prototype.ibd b/zbx_env/var/lib/mysql/zabbix/item_application_prototype.ibd new file mode 100644 index 000000000..d49645489 Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix/item_application_prototype.ibd differ diff --git a/zbx_env/var/lib/mysql/zabbix/item_condition.frm b/zbx_env/var/lib/mysql/zabbix/item_condition.frm new file mode 100644 index 000000000..2f8722750 Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix/item_condition.frm differ diff --git a/zbx_env/var/lib/mysql/zabbix/item_condition.ibd b/zbx_env/var/lib/mysql/zabbix/item_condition.ibd new file mode 100644 index 000000000..a831379bf Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix/item_condition.ibd differ diff --git a/zbx_env/var/lib/mysql/zabbix/item_discovery.frm b/zbx_env/var/lib/mysql/zabbix/item_discovery.frm new file mode 100644 index 000000000..d23367005 Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix/item_discovery.frm differ diff --git a/zbx_env/var/lib/mysql/zabbix/item_discovery.ibd b/zbx_env/var/lib/mysql/zabbix/item_discovery.ibd new file mode 100644 index 000000000..de169cf22 Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix/item_discovery.ibd differ diff --git a/zbx_env/var/lib/mysql/zabbix/item_preproc.frm b/zbx_env/var/lib/mysql/zabbix/item_preproc.frm new file mode 100644 index 000000000..04571a452 Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix/item_preproc.frm differ diff --git a/zbx_env/var/lib/mysql/zabbix/item_preproc.ibd b/zbx_env/var/lib/mysql/zabbix/item_preproc.ibd new file mode 100644 index 000000000..2dd9c69dc Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix/item_preproc.ibd differ diff --git a/zbx_env/var/lib/mysql/zabbix/items.frm b/zbx_env/var/lib/mysql/zabbix/items.frm new file mode 100644 index 000000000..ea0608687 Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix/items.frm differ diff --git a/zbx_env/var/lib/mysql/zabbix/items.ibd b/zbx_env/var/lib/mysql/zabbix/items.ibd new file mode 100644 index 000000000..c3d668ec0 Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix/items.ibd differ diff --git a/zbx_env/var/lib/mysql/zabbix/items_applications.frm b/zbx_env/var/lib/mysql/zabbix/items_applications.frm new file mode 100644 index 000000000..4b6148ba0 Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix/items_applications.frm differ diff --git a/zbx_env/var/lib/mysql/zabbix/items_applications.ibd b/zbx_env/var/lib/mysql/zabbix/items_applications.ibd new file mode 100644 index 000000000..58656d17c Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix/items_applications.ibd differ diff --git a/zbx_env/var/lib/mysql/zabbix/maintenances.frm b/zbx_env/var/lib/mysql/zabbix/maintenances.frm new file mode 100644 index 000000000..1135d58c9 Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix/maintenances.frm differ diff --git a/zbx_env/var/lib/mysql/zabbix/maintenances.ibd b/zbx_env/var/lib/mysql/zabbix/maintenances.ibd new file mode 100644 index 000000000..bd82f0d4b Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix/maintenances.ibd differ diff --git a/zbx_env/var/lib/mysql/zabbix/maintenances_groups.frm b/zbx_env/var/lib/mysql/zabbix/maintenances_groups.frm new file mode 100644 index 000000000..692016143 Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix/maintenances_groups.frm differ diff --git a/zbx_env/var/lib/mysql/zabbix/maintenances_groups.ibd b/zbx_env/var/lib/mysql/zabbix/maintenances_groups.ibd new file mode 100644 index 000000000..abacc2d16 Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix/maintenances_groups.ibd differ diff --git a/zbx_env/var/lib/mysql/zabbix/maintenances_hosts.frm b/zbx_env/var/lib/mysql/zabbix/maintenances_hosts.frm new file mode 100644 index 000000000..cbbdcd472 Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix/maintenances_hosts.frm differ diff --git a/zbx_env/var/lib/mysql/zabbix/maintenances_hosts.ibd b/zbx_env/var/lib/mysql/zabbix/maintenances_hosts.ibd new file mode 100644 index 000000000..9ac4a311a Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix/maintenances_hosts.ibd differ diff --git a/zbx_env/var/lib/mysql/zabbix/maintenances_windows.frm b/zbx_env/var/lib/mysql/zabbix/maintenances_windows.frm new file mode 100644 index 000000000..c59f2c441 Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix/maintenances_windows.frm differ diff --git a/zbx_env/var/lib/mysql/zabbix/maintenances_windows.ibd b/zbx_env/var/lib/mysql/zabbix/maintenances_windows.ibd new file mode 100644 index 000000000..527afc613 Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix/maintenances_windows.ibd differ diff --git a/zbx_env/var/lib/mysql/zabbix/mappings.frm b/zbx_env/var/lib/mysql/zabbix/mappings.frm new file mode 100644 index 000000000..d844e77ca Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix/mappings.frm differ diff --git a/zbx_env/var/lib/mysql/zabbix/mappings.ibd b/zbx_env/var/lib/mysql/zabbix/mappings.ibd new file mode 100644 index 000000000..67be29d9c Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix/mappings.ibd differ diff --git a/zbx_env/var/lib/mysql/zabbix/media.frm b/zbx_env/var/lib/mysql/zabbix/media.frm new file mode 100644 index 000000000..5258f2055 Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix/media.frm differ diff --git a/zbx_env/var/lib/mysql/zabbix/media.ibd b/zbx_env/var/lib/mysql/zabbix/media.ibd new file mode 100644 index 000000000..86cdb9a7c Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix/media.ibd differ diff --git a/zbx_env/var/lib/mysql/zabbix/media_type.frm b/zbx_env/var/lib/mysql/zabbix/media_type.frm new file mode 100644 index 000000000..22ef591e8 Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix/media_type.frm differ diff --git a/zbx_env/var/lib/mysql/zabbix/media_type.ibd b/zbx_env/var/lib/mysql/zabbix/media_type.ibd new file mode 100644 index 000000000..834159a18 Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix/media_type.ibd differ diff --git a/zbx_env/var/lib/mysql/zabbix/opcommand.frm b/zbx_env/var/lib/mysql/zabbix/opcommand.frm new file mode 100644 index 000000000..2d3baf6a5 Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix/opcommand.frm differ diff --git a/zbx_env/var/lib/mysql/zabbix/opcommand.ibd b/zbx_env/var/lib/mysql/zabbix/opcommand.ibd new file mode 100644 index 000000000..4900aef1c Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix/opcommand.ibd differ diff --git a/zbx_env/var/lib/mysql/zabbix/opcommand_grp.frm b/zbx_env/var/lib/mysql/zabbix/opcommand_grp.frm new file mode 100644 index 000000000..b9f0b8e62 Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix/opcommand_grp.frm differ diff --git a/zbx_env/var/lib/mysql/zabbix/opcommand_grp.ibd b/zbx_env/var/lib/mysql/zabbix/opcommand_grp.ibd new file mode 100644 index 000000000..c34db1ee9 Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix/opcommand_grp.ibd differ diff --git a/zbx_env/var/lib/mysql/zabbix/opcommand_hst.frm b/zbx_env/var/lib/mysql/zabbix/opcommand_hst.frm new file mode 100644 index 000000000..78823dd9e Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix/opcommand_hst.frm differ diff --git a/zbx_env/var/lib/mysql/zabbix/opcommand_hst.ibd b/zbx_env/var/lib/mysql/zabbix/opcommand_hst.ibd new file mode 100644 index 000000000..8bc9732fe Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix/opcommand_hst.ibd differ diff --git a/zbx_env/var/lib/mysql/zabbix/opconditions.frm b/zbx_env/var/lib/mysql/zabbix/opconditions.frm new file mode 100644 index 000000000..0918d04bb Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix/opconditions.frm differ diff --git a/zbx_env/var/lib/mysql/zabbix/opconditions.ibd b/zbx_env/var/lib/mysql/zabbix/opconditions.ibd new file mode 100644 index 000000000..666581416 Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix/opconditions.ibd differ diff --git a/zbx_env/var/lib/mysql/zabbix/operations.frm b/zbx_env/var/lib/mysql/zabbix/operations.frm new file mode 100644 index 000000000..756f03b53 Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix/operations.frm differ diff --git a/zbx_env/var/lib/mysql/zabbix/operations.ibd b/zbx_env/var/lib/mysql/zabbix/operations.ibd new file mode 100644 index 000000000..998c4fa90 Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix/operations.ibd differ diff --git a/zbx_env/var/lib/mysql/zabbix/opgroup.frm b/zbx_env/var/lib/mysql/zabbix/opgroup.frm new file mode 100644 index 000000000..1301eb59e Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix/opgroup.frm differ diff --git a/zbx_env/var/lib/mysql/zabbix/opgroup.ibd b/zbx_env/var/lib/mysql/zabbix/opgroup.ibd new file mode 100644 index 000000000..2bb9027d2 Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix/opgroup.ibd differ diff --git a/zbx_env/var/lib/mysql/zabbix/opinventory.frm b/zbx_env/var/lib/mysql/zabbix/opinventory.frm new file mode 100644 index 000000000..a94f06852 Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix/opinventory.frm differ diff --git a/zbx_env/var/lib/mysql/zabbix/opinventory.ibd b/zbx_env/var/lib/mysql/zabbix/opinventory.ibd new file mode 100644 index 000000000..eb1144cb6 Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix/opinventory.ibd differ diff --git a/zbx_env/var/lib/mysql/zabbix/opmessage.frm b/zbx_env/var/lib/mysql/zabbix/opmessage.frm new file mode 100644 index 000000000..395e0b78e Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix/opmessage.frm differ diff --git a/zbx_env/var/lib/mysql/zabbix/opmessage.ibd b/zbx_env/var/lib/mysql/zabbix/opmessage.ibd new file mode 100644 index 000000000..832e2a393 Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix/opmessage.ibd differ diff --git a/zbx_env/var/lib/mysql/zabbix/opmessage_grp.frm b/zbx_env/var/lib/mysql/zabbix/opmessage_grp.frm new file mode 100644 index 000000000..f4e00d05e Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix/opmessage_grp.frm differ diff --git a/zbx_env/var/lib/mysql/zabbix/opmessage_grp.ibd b/zbx_env/var/lib/mysql/zabbix/opmessage_grp.ibd new file mode 100644 index 000000000..967d631bc Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix/opmessage_grp.ibd differ diff --git a/zbx_env/var/lib/mysql/zabbix/opmessage_usr.frm b/zbx_env/var/lib/mysql/zabbix/opmessage_usr.frm new file mode 100644 index 000000000..7431d847b Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix/opmessage_usr.frm differ diff --git a/zbx_env/var/lib/mysql/zabbix/opmessage_usr.ibd b/zbx_env/var/lib/mysql/zabbix/opmessage_usr.ibd new file mode 100644 index 000000000..a19a150e7 Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix/opmessage_usr.ibd differ diff --git a/zbx_env/var/lib/mysql/zabbix/optemplate.frm b/zbx_env/var/lib/mysql/zabbix/optemplate.frm new file mode 100644 index 000000000..46d852a44 Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix/optemplate.frm differ diff --git a/zbx_env/var/lib/mysql/zabbix/optemplate.ibd b/zbx_env/var/lib/mysql/zabbix/optemplate.ibd new file mode 100644 index 000000000..baa4a5ee1 Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix/optemplate.ibd differ diff --git a/zbx_env/var/lib/mysql/zabbix/problem.frm b/zbx_env/var/lib/mysql/zabbix/problem.frm new file mode 100644 index 000000000..2aeea5ccd Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix/problem.frm differ diff --git a/zbx_env/var/lib/mysql/zabbix/problem.ibd b/zbx_env/var/lib/mysql/zabbix/problem.ibd new file mode 100644 index 000000000..0eefb8be2 Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix/problem.ibd differ diff --git a/zbx_env/var/lib/mysql/zabbix/problem_tag.frm b/zbx_env/var/lib/mysql/zabbix/problem_tag.frm new file mode 100644 index 000000000..7b954e04b Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix/problem_tag.frm differ diff --git a/zbx_env/var/lib/mysql/zabbix/problem_tag.ibd b/zbx_env/var/lib/mysql/zabbix/problem_tag.ibd new file mode 100644 index 000000000..7645103d2 Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix/problem_tag.ibd differ diff --git a/zbx_env/var/lib/mysql/zabbix/profiles.frm b/zbx_env/var/lib/mysql/zabbix/profiles.frm new file mode 100644 index 000000000..dab2b5098 Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix/profiles.frm differ diff --git a/zbx_env/var/lib/mysql/zabbix/profiles.ibd b/zbx_env/var/lib/mysql/zabbix/profiles.ibd new file mode 100644 index 000000000..31344649c Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix/profiles.ibd differ diff --git a/zbx_env/var/lib/mysql/zabbix/proxy_autoreg_host.frm b/zbx_env/var/lib/mysql/zabbix/proxy_autoreg_host.frm new file mode 100644 index 000000000..75383a91f Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix/proxy_autoreg_host.frm differ diff --git a/zbx_env/var/lib/mysql/zabbix/proxy_autoreg_host.ibd b/zbx_env/var/lib/mysql/zabbix/proxy_autoreg_host.ibd new file mode 100644 index 000000000..a55ec068f Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix/proxy_autoreg_host.ibd differ diff --git a/zbx_env/var/lib/mysql/zabbix/proxy_dhistory.frm b/zbx_env/var/lib/mysql/zabbix/proxy_dhistory.frm new file mode 100644 index 000000000..882ed8457 Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix/proxy_dhistory.frm differ diff --git a/zbx_env/var/lib/mysql/zabbix/proxy_dhistory.ibd b/zbx_env/var/lib/mysql/zabbix/proxy_dhistory.ibd new file mode 100644 index 000000000..afef6dfad Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix/proxy_dhistory.ibd differ diff --git a/zbx_env/var/lib/mysql/zabbix/proxy_history.frm b/zbx_env/var/lib/mysql/zabbix/proxy_history.frm new file mode 100644 index 000000000..351a6bdb4 Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix/proxy_history.frm differ diff --git a/zbx_env/var/lib/mysql/zabbix/proxy_history.ibd b/zbx_env/var/lib/mysql/zabbix/proxy_history.ibd new file mode 100644 index 000000000..f5774ed9d Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix/proxy_history.ibd differ diff --git a/zbx_env/var/lib/mysql/zabbix/regexps.frm b/zbx_env/var/lib/mysql/zabbix/regexps.frm new file mode 100644 index 000000000..45ccfea8f Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix/regexps.frm differ diff --git a/zbx_env/var/lib/mysql/zabbix/regexps.ibd b/zbx_env/var/lib/mysql/zabbix/regexps.ibd new file mode 100644 index 000000000..84d5c4aa7 Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix/regexps.ibd differ diff --git a/zbx_env/var/lib/mysql/zabbix/rights.frm b/zbx_env/var/lib/mysql/zabbix/rights.frm new file mode 100644 index 000000000..6859e8ca7 Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix/rights.frm differ diff --git a/zbx_env/var/lib/mysql/zabbix/rights.ibd b/zbx_env/var/lib/mysql/zabbix/rights.ibd new file mode 100644 index 000000000..a67e6d8a5 Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix/rights.ibd differ diff --git a/zbx_env/var/lib/mysql/zabbix/screen_user.frm b/zbx_env/var/lib/mysql/zabbix/screen_user.frm new file mode 100644 index 000000000..d66ae0053 Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix/screen_user.frm differ diff --git a/zbx_env/var/lib/mysql/zabbix/screen_user.ibd b/zbx_env/var/lib/mysql/zabbix/screen_user.ibd new file mode 100644 index 000000000..aa16bfa34 Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix/screen_user.ibd differ diff --git a/zbx_env/var/lib/mysql/zabbix/screen_usrgrp.frm b/zbx_env/var/lib/mysql/zabbix/screen_usrgrp.frm new file mode 100644 index 000000000..0fb351b59 Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix/screen_usrgrp.frm differ diff --git a/zbx_env/var/lib/mysql/zabbix/screen_usrgrp.ibd b/zbx_env/var/lib/mysql/zabbix/screen_usrgrp.ibd new file mode 100644 index 000000000..b73d48ecd Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix/screen_usrgrp.ibd differ diff --git a/zbx_env/var/lib/mysql/zabbix/screens.frm b/zbx_env/var/lib/mysql/zabbix/screens.frm new file mode 100644 index 000000000..cc3b03ac5 Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix/screens.frm differ diff --git a/zbx_env/var/lib/mysql/zabbix/screens.ibd b/zbx_env/var/lib/mysql/zabbix/screens.ibd new file mode 100644 index 000000000..96173cb8d Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix/screens.ibd differ diff --git a/zbx_env/var/lib/mysql/zabbix/screens_items.frm b/zbx_env/var/lib/mysql/zabbix/screens_items.frm new file mode 100644 index 000000000..187a0a848 Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix/screens_items.frm differ diff --git a/zbx_env/var/lib/mysql/zabbix/screens_items.ibd b/zbx_env/var/lib/mysql/zabbix/screens_items.ibd new file mode 100644 index 000000000..0ebff7b1e Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix/screens_items.ibd differ diff --git a/zbx_env/var/lib/mysql/zabbix/scripts.frm b/zbx_env/var/lib/mysql/zabbix/scripts.frm new file mode 100644 index 000000000..fd1b91462 Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix/scripts.frm differ diff --git a/zbx_env/var/lib/mysql/zabbix/scripts.ibd b/zbx_env/var/lib/mysql/zabbix/scripts.ibd new file mode 100644 index 000000000..4c13b183b Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix/scripts.ibd differ diff --git a/zbx_env/var/lib/mysql/zabbix/service_alarms.frm b/zbx_env/var/lib/mysql/zabbix/service_alarms.frm new file mode 100644 index 000000000..f8df08d93 Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix/service_alarms.frm differ diff --git a/zbx_env/var/lib/mysql/zabbix/service_alarms.ibd b/zbx_env/var/lib/mysql/zabbix/service_alarms.ibd new file mode 100644 index 000000000..c631f11bf Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix/service_alarms.ibd differ diff --git a/zbx_env/var/lib/mysql/zabbix/services.frm b/zbx_env/var/lib/mysql/zabbix/services.frm new file mode 100644 index 000000000..3c1557f96 Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix/services.frm differ diff --git a/zbx_env/var/lib/mysql/zabbix/services.ibd b/zbx_env/var/lib/mysql/zabbix/services.ibd new file mode 100644 index 000000000..8e33d8e97 Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix/services.ibd differ diff --git a/zbx_env/var/lib/mysql/zabbix/services_links.frm b/zbx_env/var/lib/mysql/zabbix/services_links.frm new file mode 100644 index 000000000..545a5e11d Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix/services_links.frm differ diff --git a/zbx_env/var/lib/mysql/zabbix/services_links.ibd b/zbx_env/var/lib/mysql/zabbix/services_links.ibd new file mode 100644 index 000000000..91f3208b5 Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix/services_links.ibd differ diff --git a/zbx_env/var/lib/mysql/zabbix/services_times.frm b/zbx_env/var/lib/mysql/zabbix/services_times.frm new file mode 100644 index 000000000..ad95e20dd Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix/services_times.frm differ diff --git a/zbx_env/var/lib/mysql/zabbix/services_times.ibd b/zbx_env/var/lib/mysql/zabbix/services_times.ibd new file mode 100644 index 000000000..662052b3a Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix/services_times.ibd differ diff --git a/zbx_env/var/lib/mysql/zabbix/sessions.frm b/zbx_env/var/lib/mysql/zabbix/sessions.frm new file mode 100644 index 000000000..2b0ce84e8 Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix/sessions.frm differ diff --git a/zbx_env/var/lib/mysql/zabbix/sessions.ibd b/zbx_env/var/lib/mysql/zabbix/sessions.ibd new file mode 100644 index 000000000..6a323aca7 Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix/sessions.ibd differ diff --git a/zbx_env/var/lib/mysql/zabbix/slides.frm b/zbx_env/var/lib/mysql/zabbix/slides.frm new file mode 100644 index 000000000..8d4d92ae8 Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix/slides.frm differ diff --git a/zbx_env/var/lib/mysql/zabbix/slides.ibd b/zbx_env/var/lib/mysql/zabbix/slides.ibd new file mode 100644 index 000000000..81f1121ac Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix/slides.ibd differ diff --git a/zbx_env/var/lib/mysql/zabbix/slideshow_user.frm b/zbx_env/var/lib/mysql/zabbix/slideshow_user.frm new file mode 100644 index 000000000..e83471b22 Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix/slideshow_user.frm differ diff --git a/zbx_env/var/lib/mysql/zabbix/slideshow_user.ibd b/zbx_env/var/lib/mysql/zabbix/slideshow_user.ibd new file mode 100644 index 000000000..6aab2f050 Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix/slideshow_user.ibd differ diff --git a/zbx_env/var/lib/mysql/zabbix/slideshow_usrgrp.frm b/zbx_env/var/lib/mysql/zabbix/slideshow_usrgrp.frm new file mode 100644 index 000000000..2fabf1b54 Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix/slideshow_usrgrp.frm differ diff --git a/zbx_env/var/lib/mysql/zabbix/slideshow_usrgrp.ibd b/zbx_env/var/lib/mysql/zabbix/slideshow_usrgrp.ibd new file mode 100644 index 000000000..d0b8c39a9 Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix/slideshow_usrgrp.ibd differ diff --git a/zbx_env/var/lib/mysql/zabbix/slideshows.frm b/zbx_env/var/lib/mysql/zabbix/slideshows.frm new file mode 100644 index 000000000..0c41ff127 Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix/slideshows.frm differ diff --git a/zbx_env/var/lib/mysql/zabbix/slideshows.ibd b/zbx_env/var/lib/mysql/zabbix/slideshows.ibd new file mode 100644 index 000000000..bbba95330 Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix/slideshows.ibd differ diff --git a/zbx_env/var/lib/mysql/zabbix/sysmap_element_trigger.frm b/zbx_env/var/lib/mysql/zabbix/sysmap_element_trigger.frm new file mode 100644 index 000000000..1746d9fc4 Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix/sysmap_element_trigger.frm differ diff --git a/zbx_env/var/lib/mysql/zabbix/sysmap_element_trigger.ibd b/zbx_env/var/lib/mysql/zabbix/sysmap_element_trigger.ibd new file mode 100644 index 000000000..0544946a7 Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix/sysmap_element_trigger.ibd differ diff --git a/zbx_env/var/lib/mysql/zabbix/sysmap_element_url.frm b/zbx_env/var/lib/mysql/zabbix/sysmap_element_url.frm new file mode 100644 index 000000000..13c5140e6 Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix/sysmap_element_url.frm differ diff --git a/zbx_env/var/lib/mysql/zabbix/sysmap_element_url.ibd b/zbx_env/var/lib/mysql/zabbix/sysmap_element_url.ibd new file mode 100644 index 000000000..949a11c3c Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix/sysmap_element_url.ibd differ diff --git a/zbx_env/var/lib/mysql/zabbix/sysmap_shape.frm b/zbx_env/var/lib/mysql/zabbix/sysmap_shape.frm new file mode 100644 index 000000000..131c38301 Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix/sysmap_shape.frm differ diff --git a/zbx_env/var/lib/mysql/zabbix/sysmap_shape.ibd b/zbx_env/var/lib/mysql/zabbix/sysmap_shape.ibd new file mode 100644 index 000000000..00206ba12 Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix/sysmap_shape.ibd differ diff --git a/zbx_env/var/lib/mysql/zabbix/sysmap_url.frm b/zbx_env/var/lib/mysql/zabbix/sysmap_url.frm new file mode 100644 index 000000000..5e8b1ee7a Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix/sysmap_url.frm differ diff --git a/zbx_env/var/lib/mysql/zabbix/sysmap_url.ibd b/zbx_env/var/lib/mysql/zabbix/sysmap_url.ibd new file mode 100644 index 000000000..15d41c8dc Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix/sysmap_url.ibd differ diff --git a/zbx_env/var/lib/mysql/zabbix/sysmap_user.frm b/zbx_env/var/lib/mysql/zabbix/sysmap_user.frm new file mode 100644 index 000000000..cfc595c2a Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix/sysmap_user.frm differ diff --git a/zbx_env/var/lib/mysql/zabbix/sysmap_user.ibd b/zbx_env/var/lib/mysql/zabbix/sysmap_user.ibd new file mode 100644 index 000000000..90545b442 Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix/sysmap_user.ibd differ diff --git a/zbx_env/var/lib/mysql/zabbix/sysmap_usrgrp.frm b/zbx_env/var/lib/mysql/zabbix/sysmap_usrgrp.frm new file mode 100644 index 000000000..00826c18b Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix/sysmap_usrgrp.frm differ diff --git a/zbx_env/var/lib/mysql/zabbix/sysmap_usrgrp.ibd b/zbx_env/var/lib/mysql/zabbix/sysmap_usrgrp.ibd new file mode 100644 index 000000000..2b26395f6 Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix/sysmap_usrgrp.ibd differ diff --git a/zbx_env/var/lib/mysql/zabbix/sysmaps.frm b/zbx_env/var/lib/mysql/zabbix/sysmaps.frm new file mode 100644 index 000000000..9c36b3ecd Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix/sysmaps.frm differ diff --git a/zbx_env/var/lib/mysql/zabbix/sysmaps.ibd b/zbx_env/var/lib/mysql/zabbix/sysmaps.ibd new file mode 100644 index 000000000..d3dda23d7 Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix/sysmaps.ibd differ diff --git a/zbx_env/var/lib/mysql/zabbix/sysmaps_elements.frm b/zbx_env/var/lib/mysql/zabbix/sysmaps_elements.frm new file mode 100644 index 000000000..b2686a1f3 Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix/sysmaps_elements.frm differ diff --git a/zbx_env/var/lib/mysql/zabbix/sysmaps_elements.ibd b/zbx_env/var/lib/mysql/zabbix/sysmaps_elements.ibd new file mode 100644 index 000000000..2543c0b0a Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix/sysmaps_elements.ibd differ diff --git a/zbx_env/var/lib/mysql/zabbix/sysmaps_link_triggers.frm b/zbx_env/var/lib/mysql/zabbix/sysmaps_link_triggers.frm new file mode 100644 index 000000000..905584921 Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix/sysmaps_link_triggers.frm differ diff --git a/zbx_env/var/lib/mysql/zabbix/sysmaps_link_triggers.ibd b/zbx_env/var/lib/mysql/zabbix/sysmaps_link_triggers.ibd new file mode 100644 index 000000000..beb373b93 Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix/sysmaps_link_triggers.ibd differ diff --git a/zbx_env/var/lib/mysql/zabbix/sysmaps_links.frm b/zbx_env/var/lib/mysql/zabbix/sysmaps_links.frm new file mode 100644 index 000000000..86aca93c4 Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix/sysmaps_links.frm differ diff --git a/zbx_env/var/lib/mysql/zabbix/sysmaps_links.ibd b/zbx_env/var/lib/mysql/zabbix/sysmaps_links.ibd new file mode 100644 index 000000000..98a76f148 Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix/sysmaps_links.ibd differ diff --git a/zbx_env/var/lib/mysql/zabbix/task.frm b/zbx_env/var/lib/mysql/zabbix/task.frm new file mode 100644 index 000000000..842ca3669 Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix/task.frm differ diff --git a/zbx_env/var/lib/mysql/zabbix/task.ibd b/zbx_env/var/lib/mysql/zabbix/task.ibd new file mode 100644 index 000000000..600dceb56 Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix/task.ibd differ diff --git a/zbx_env/var/lib/mysql/zabbix/task_acknowledge.frm b/zbx_env/var/lib/mysql/zabbix/task_acknowledge.frm new file mode 100644 index 000000000..74789a704 Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix/task_acknowledge.frm differ diff --git a/zbx_env/var/lib/mysql/zabbix/task_acknowledge.ibd b/zbx_env/var/lib/mysql/zabbix/task_acknowledge.ibd new file mode 100644 index 000000000..b6ab99555 Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix/task_acknowledge.ibd differ diff --git a/zbx_env/var/lib/mysql/zabbix/task_close_problem.frm b/zbx_env/var/lib/mysql/zabbix/task_close_problem.frm new file mode 100644 index 000000000..74789a704 Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix/task_close_problem.frm differ diff --git a/zbx_env/var/lib/mysql/zabbix/task_close_problem.ibd b/zbx_env/var/lib/mysql/zabbix/task_close_problem.ibd new file mode 100644 index 000000000..7d17037d5 Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix/task_close_problem.ibd differ diff --git a/zbx_env/var/lib/mysql/zabbix/task_remote_command.frm b/zbx_env/var/lib/mysql/zabbix/task_remote_command.frm new file mode 100644 index 000000000..c8eb91b46 Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix/task_remote_command.frm differ diff --git a/zbx_env/var/lib/mysql/zabbix/task_remote_command.ibd b/zbx_env/var/lib/mysql/zabbix/task_remote_command.ibd new file mode 100644 index 000000000..900c66f24 Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix/task_remote_command.ibd differ diff --git a/zbx_env/var/lib/mysql/zabbix/task_remote_command_result.frm b/zbx_env/var/lib/mysql/zabbix/task_remote_command_result.frm new file mode 100644 index 000000000..f0c91868c Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix/task_remote_command_result.frm differ diff --git a/zbx_env/var/lib/mysql/zabbix/task_remote_command_result.ibd b/zbx_env/var/lib/mysql/zabbix/task_remote_command_result.ibd new file mode 100644 index 000000000..c125d54b6 Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix/task_remote_command_result.ibd differ diff --git a/zbx_env/var/lib/mysql/zabbix/timeperiods.frm b/zbx_env/var/lib/mysql/zabbix/timeperiods.frm new file mode 100644 index 000000000..a1997196e Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix/timeperiods.frm differ diff --git a/zbx_env/var/lib/mysql/zabbix/timeperiods.ibd b/zbx_env/var/lib/mysql/zabbix/timeperiods.ibd new file mode 100644 index 000000000..bf580112d Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix/timeperiods.ibd differ diff --git a/zbx_env/var/lib/mysql/zabbix/trends.frm b/zbx_env/var/lib/mysql/zabbix/trends.frm new file mode 100644 index 000000000..340bf5966 Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix/trends.frm differ diff --git a/zbx_env/var/lib/mysql/zabbix/trends.ibd b/zbx_env/var/lib/mysql/zabbix/trends.ibd new file mode 100644 index 000000000..e15bef3bc Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix/trends.ibd differ diff --git a/zbx_env/var/lib/mysql/zabbix/trends_uint.frm b/zbx_env/var/lib/mysql/zabbix/trends_uint.frm new file mode 100644 index 000000000..e9755a5f5 Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix/trends_uint.frm differ diff --git a/zbx_env/var/lib/mysql/zabbix/trends_uint.ibd b/zbx_env/var/lib/mysql/zabbix/trends_uint.ibd new file mode 100644 index 000000000..582703272 Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix/trends_uint.ibd differ diff --git a/zbx_env/var/lib/mysql/zabbix/trigger_depends.frm b/zbx_env/var/lib/mysql/zabbix/trigger_depends.frm new file mode 100644 index 000000000..6eba7c509 Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix/trigger_depends.frm differ diff --git a/zbx_env/var/lib/mysql/zabbix/trigger_depends.ibd b/zbx_env/var/lib/mysql/zabbix/trigger_depends.ibd new file mode 100644 index 000000000..2b7dc8729 Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix/trigger_depends.ibd differ diff --git a/zbx_env/var/lib/mysql/zabbix/trigger_discovery.frm b/zbx_env/var/lib/mysql/zabbix/trigger_discovery.frm new file mode 100644 index 000000000..6308c846b Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix/trigger_discovery.frm differ diff --git a/zbx_env/var/lib/mysql/zabbix/trigger_discovery.ibd b/zbx_env/var/lib/mysql/zabbix/trigger_discovery.ibd new file mode 100644 index 000000000..0b0e75677 Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix/trigger_discovery.ibd differ diff --git a/zbx_env/var/lib/mysql/zabbix/trigger_tag.frm b/zbx_env/var/lib/mysql/zabbix/trigger_tag.frm new file mode 100644 index 000000000..458d7e3a4 Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix/trigger_tag.frm differ diff --git a/zbx_env/var/lib/mysql/zabbix/trigger_tag.ibd b/zbx_env/var/lib/mysql/zabbix/trigger_tag.ibd new file mode 100644 index 000000000..00a5c3f3d Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix/trigger_tag.ibd differ diff --git a/zbx_env/var/lib/mysql/zabbix/triggers.frm b/zbx_env/var/lib/mysql/zabbix/triggers.frm new file mode 100644 index 000000000..948860d2c Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix/triggers.frm differ diff --git a/zbx_env/var/lib/mysql/zabbix/triggers.ibd b/zbx_env/var/lib/mysql/zabbix/triggers.ibd new file mode 100644 index 000000000..bdcc5174a Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix/triggers.ibd differ diff --git a/zbx_env/var/lib/mysql/zabbix/users.frm b/zbx_env/var/lib/mysql/zabbix/users.frm new file mode 100644 index 000000000..e10628880 Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix/users.frm differ diff --git a/zbx_env/var/lib/mysql/zabbix/users.ibd b/zbx_env/var/lib/mysql/zabbix/users.ibd new file mode 100644 index 000000000..5ec64fe1a Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix/users.ibd differ diff --git a/zbx_env/var/lib/mysql/zabbix/users_groups.frm b/zbx_env/var/lib/mysql/zabbix/users_groups.frm new file mode 100644 index 000000000..582b315f8 Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix/users_groups.frm differ diff --git a/zbx_env/var/lib/mysql/zabbix/users_groups.ibd b/zbx_env/var/lib/mysql/zabbix/users_groups.ibd new file mode 100644 index 000000000..ac972c763 Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix/users_groups.ibd differ diff --git a/zbx_env/var/lib/mysql/zabbix/usrgrp.frm b/zbx_env/var/lib/mysql/zabbix/usrgrp.frm new file mode 100644 index 000000000..14593fb7c Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix/usrgrp.frm differ diff --git a/zbx_env/var/lib/mysql/zabbix/usrgrp.ibd b/zbx_env/var/lib/mysql/zabbix/usrgrp.ibd new file mode 100644 index 000000000..8decdd1d3 Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix/usrgrp.ibd differ diff --git a/zbx_env/var/lib/mysql/zabbix/valuemaps.frm b/zbx_env/var/lib/mysql/zabbix/valuemaps.frm new file mode 100644 index 000000000..e4be79379 Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix/valuemaps.frm differ diff --git a/zbx_env/var/lib/mysql/zabbix/valuemaps.ibd b/zbx_env/var/lib/mysql/zabbix/valuemaps.ibd new file mode 100644 index 000000000..3da960c1e Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix/valuemaps.ibd differ diff --git a/zbx_env/var/lib/mysql/zabbix/widget.frm b/zbx_env/var/lib/mysql/zabbix/widget.frm new file mode 100644 index 000000000..4a3317548 Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix/widget.frm differ diff --git a/zbx_env/var/lib/mysql/zabbix/widget.ibd b/zbx_env/var/lib/mysql/zabbix/widget.ibd new file mode 100644 index 000000000..4b245cc2f Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix/widget.ibd differ diff --git a/zbx_env/var/lib/mysql/zabbix/widget_field.frm b/zbx_env/var/lib/mysql/zabbix/widget_field.frm new file mode 100644 index 000000000..a63d03cdf Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix/widget_field.frm differ diff --git a/zbx_env/var/lib/mysql/zabbix/widget_field.ibd b/zbx_env/var/lib/mysql/zabbix/widget_field.ibd new file mode 100644 index 000000000..17e1bb0fc Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix/widget_field.ibd differ diff --git a/zbx_env/var/lib/mysql/zabbix_proxy/acknowledges.frm b/zbx_env/var/lib/mysql/zabbix_proxy/acknowledges.frm new file mode 100644 index 000000000..c5b8e135a Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix_proxy/acknowledges.frm differ diff --git a/zbx_env/var/lib/mysql/zabbix_proxy/acknowledges.ibd b/zbx_env/var/lib/mysql/zabbix_proxy/acknowledges.ibd new file mode 100644 index 000000000..4511fdb80 Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix_proxy/acknowledges.ibd differ diff --git a/zbx_env/var/lib/mysql/zabbix_proxy/actions.frm b/zbx_env/var/lib/mysql/zabbix_proxy/actions.frm new file mode 100644 index 000000000..a142836db Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix_proxy/actions.frm differ diff --git a/zbx_env/var/lib/mysql/zabbix_proxy/actions.ibd b/zbx_env/var/lib/mysql/zabbix_proxy/actions.ibd new file mode 100644 index 000000000..008b5be0b Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix_proxy/actions.ibd differ diff --git a/zbx_env/var/lib/mysql/zabbix_proxy/alerts.frm b/zbx_env/var/lib/mysql/zabbix_proxy/alerts.frm new file mode 100644 index 000000000..4b7a6d4e8 Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix_proxy/alerts.frm differ diff --git a/zbx_env/var/lib/mysql/zabbix_proxy/alerts.ibd b/zbx_env/var/lib/mysql/zabbix_proxy/alerts.ibd new file mode 100644 index 000000000..ae5e64e8b Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix_proxy/alerts.ibd differ diff --git a/zbx_env/var/lib/mysql/zabbix_proxy/application_discovery.frm b/zbx_env/var/lib/mysql/zabbix_proxy/application_discovery.frm new file mode 100644 index 000000000..8119fb87d Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix_proxy/application_discovery.frm differ diff --git a/zbx_env/var/lib/mysql/zabbix_proxy/application_discovery.ibd b/zbx_env/var/lib/mysql/zabbix_proxy/application_discovery.ibd new file mode 100644 index 000000000..d26c324b0 Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix_proxy/application_discovery.ibd differ diff --git a/zbx_env/var/lib/mysql/zabbix_proxy/application_prototype.frm b/zbx_env/var/lib/mysql/zabbix_proxy/application_prototype.frm new file mode 100644 index 000000000..7aaa6120d Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix_proxy/application_prototype.frm differ diff --git a/zbx_env/var/lib/mysql/zabbix_proxy/application_prototype.ibd b/zbx_env/var/lib/mysql/zabbix_proxy/application_prototype.ibd new file mode 100644 index 000000000..9c04429eb Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix_proxy/application_prototype.ibd differ diff --git a/zbx_env/var/lib/mysql/zabbix_proxy/application_template.frm b/zbx_env/var/lib/mysql/zabbix_proxy/application_template.frm new file mode 100644 index 000000000..522fb09aa Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix_proxy/application_template.frm differ diff --git a/zbx_env/var/lib/mysql/zabbix_proxy/application_template.ibd b/zbx_env/var/lib/mysql/zabbix_proxy/application_template.ibd new file mode 100644 index 000000000..bffc17a74 Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix_proxy/application_template.ibd differ diff --git a/zbx_env/var/lib/mysql/zabbix_proxy/applications.frm b/zbx_env/var/lib/mysql/zabbix_proxy/applications.frm new file mode 100644 index 000000000..5d3b6f6d8 Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix_proxy/applications.frm differ diff --git a/zbx_env/var/lib/mysql/zabbix_proxy/applications.ibd b/zbx_env/var/lib/mysql/zabbix_proxy/applications.ibd new file mode 100644 index 000000000..234d2d978 Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix_proxy/applications.ibd differ diff --git a/zbx_env/var/lib/mysql/zabbix_proxy/auditlog.frm b/zbx_env/var/lib/mysql/zabbix_proxy/auditlog.frm new file mode 100644 index 000000000..57401b52d Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix_proxy/auditlog.frm differ diff --git a/zbx_env/var/lib/mysql/zabbix_proxy/auditlog.ibd b/zbx_env/var/lib/mysql/zabbix_proxy/auditlog.ibd new file mode 100644 index 000000000..0fc922107 Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix_proxy/auditlog.ibd differ diff --git a/zbx_env/var/lib/mysql/zabbix_proxy/auditlog_details.frm b/zbx_env/var/lib/mysql/zabbix_proxy/auditlog_details.frm new file mode 100644 index 000000000..bc7fe4340 Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix_proxy/auditlog_details.frm differ diff --git a/zbx_env/var/lib/mysql/zabbix_proxy/auditlog_details.ibd b/zbx_env/var/lib/mysql/zabbix_proxy/auditlog_details.ibd new file mode 100644 index 000000000..adb6e2307 Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix_proxy/auditlog_details.ibd differ diff --git a/zbx_env/var/lib/mysql/zabbix_proxy/autoreg_host.frm b/zbx_env/var/lib/mysql/zabbix_proxy/autoreg_host.frm new file mode 100644 index 000000000..26284c058 Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix_proxy/autoreg_host.frm differ diff --git a/zbx_env/var/lib/mysql/zabbix_proxy/autoreg_host.ibd b/zbx_env/var/lib/mysql/zabbix_proxy/autoreg_host.ibd new file mode 100644 index 000000000..e83df1bbe Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix_proxy/autoreg_host.ibd differ diff --git a/zbx_env/var/lib/mysql/zabbix_proxy/conditions.frm b/zbx_env/var/lib/mysql/zabbix_proxy/conditions.frm new file mode 100644 index 000000000..7a65cea80 Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix_proxy/conditions.frm differ diff --git a/zbx_env/var/lib/mysql/zabbix_proxy/conditions.ibd b/zbx_env/var/lib/mysql/zabbix_proxy/conditions.ibd new file mode 100644 index 000000000..f53b53214 Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix_proxy/conditions.ibd differ diff --git a/zbx_env/var/lib/mysql/zabbix_proxy/config.frm b/zbx_env/var/lib/mysql/zabbix_proxy/config.frm new file mode 100644 index 000000000..e36fce231 Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix_proxy/config.frm differ diff --git a/zbx_env/var/lib/mysql/zabbix_proxy/config.ibd b/zbx_env/var/lib/mysql/zabbix_proxy/config.ibd new file mode 100644 index 000000000..ba5774149 Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix_proxy/config.ibd differ diff --git a/zbx_env/var/lib/mysql/zabbix_proxy/corr_condition.frm b/zbx_env/var/lib/mysql/zabbix_proxy/corr_condition.frm new file mode 100644 index 000000000..09fc24a25 Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix_proxy/corr_condition.frm differ diff --git a/zbx_env/var/lib/mysql/zabbix_proxy/corr_condition.ibd b/zbx_env/var/lib/mysql/zabbix_proxy/corr_condition.ibd new file mode 100644 index 000000000..6be6586c8 Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix_proxy/corr_condition.ibd differ diff --git a/zbx_env/var/lib/mysql/zabbix_proxy/corr_condition_group.frm b/zbx_env/var/lib/mysql/zabbix_proxy/corr_condition_group.frm new file mode 100644 index 000000000..c4ad95846 Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix_proxy/corr_condition_group.frm differ diff --git a/zbx_env/var/lib/mysql/zabbix_proxy/corr_condition_group.ibd b/zbx_env/var/lib/mysql/zabbix_proxy/corr_condition_group.ibd new file mode 100644 index 000000000..4fdb7c5a6 Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix_proxy/corr_condition_group.ibd differ diff --git a/zbx_env/var/lib/mysql/zabbix_proxy/corr_condition_tag.frm b/zbx_env/var/lib/mysql/zabbix_proxy/corr_condition_tag.frm new file mode 100644 index 000000000..e1f537fa5 Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix_proxy/corr_condition_tag.frm differ diff --git a/zbx_env/var/lib/mysql/zabbix_proxy/corr_condition_tag.ibd b/zbx_env/var/lib/mysql/zabbix_proxy/corr_condition_tag.ibd new file mode 100644 index 000000000..3484c8ffd Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix_proxy/corr_condition_tag.ibd differ diff --git a/zbx_env/var/lib/mysql/zabbix_proxy/corr_condition_tagpair.frm b/zbx_env/var/lib/mysql/zabbix_proxy/corr_condition_tagpair.frm new file mode 100644 index 000000000..ff6e1572d Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix_proxy/corr_condition_tagpair.frm differ diff --git a/zbx_env/var/lib/mysql/zabbix_proxy/corr_condition_tagpair.ibd b/zbx_env/var/lib/mysql/zabbix_proxy/corr_condition_tagpair.ibd new file mode 100644 index 000000000..f0712d8dd Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix_proxy/corr_condition_tagpair.ibd differ diff --git a/zbx_env/var/lib/mysql/zabbix_proxy/corr_condition_tagvalue.frm b/zbx_env/var/lib/mysql/zabbix_proxy/corr_condition_tagvalue.frm new file mode 100644 index 000000000..50cf41843 Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix_proxy/corr_condition_tagvalue.frm differ diff --git a/zbx_env/var/lib/mysql/zabbix_proxy/corr_condition_tagvalue.ibd b/zbx_env/var/lib/mysql/zabbix_proxy/corr_condition_tagvalue.ibd new file mode 100644 index 000000000..8268e5494 Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix_proxy/corr_condition_tagvalue.ibd differ diff --git a/zbx_env/var/lib/mysql/zabbix_proxy/corr_operation.frm b/zbx_env/var/lib/mysql/zabbix_proxy/corr_operation.frm new file mode 100644 index 000000000..1fbee8077 Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix_proxy/corr_operation.frm differ diff --git a/zbx_env/var/lib/mysql/zabbix_proxy/corr_operation.ibd b/zbx_env/var/lib/mysql/zabbix_proxy/corr_operation.ibd new file mode 100644 index 000000000..39ae271b4 Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix_proxy/corr_operation.ibd differ diff --git a/zbx_env/var/lib/mysql/zabbix_proxy/correlation.frm b/zbx_env/var/lib/mysql/zabbix_proxy/correlation.frm new file mode 100644 index 000000000..79a1fd3ea Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix_proxy/correlation.frm differ diff --git a/zbx_env/var/lib/mysql/zabbix_proxy/correlation.ibd b/zbx_env/var/lib/mysql/zabbix_proxy/correlation.ibd new file mode 100644 index 000000000..f8a454a41 Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix_proxy/correlation.ibd differ diff --git a/zbx_env/var/lib/mysql/zabbix_proxy/dashboard.frm b/zbx_env/var/lib/mysql/zabbix_proxy/dashboard.frm new file mode 100644 index 000000000..7976176ec Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix_proxy/dashboard.frm differ diff --git a/zbx_env/var/lib/mysql/zabbix_proxy/dashboard.ibd b/zbx_env/var/lib/mysql/zabbix_proxy/dashboard.ibd new file mode 100644 index 000000000..190ffeac8 Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix_proxy/dashboard.ibd differ diff --git a/zbx_env/var/lib/mysql/zabbix_proxy/dashboard_user.frm b/zbx_env/var/lib/mysql/zabbix_proxy/dashboard_user.frm new file mode 100644 index 000000000..ea19f07db Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix_proxy/dashboard_user.frm differ diff --git a/zbx_env/var/lib/mysql/zabbix_proxy/dashboard_user.ibd b/zbx_env/var/lib/mysql/zabbix_proxy/dashboard_user.ibd new file mode 100644 index 000000000..8c36c4da1 Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix_proxy/dashboard_user.ibd differ diff --git a/zbx_env/var/lib/mysql/zabbix_proxy/dashboard_usrgrp.frm b/zbx_env/var/lib/mysql/zabbix_proxy/dashboard_usrgrp.frm new file mode 100644 index 000000000..ae81309bc Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix_proxy/dashboard_usrgrp.frm differ diff --git a/zbx_env/var/lib/mysql/zabbix_proxy/dashboard_usrgrp.ibd b/zbx_env/var/lib/mysql/zabbix_proxy/dashboard_usrgrp.ibd new file mode 100644 index 000000000..e3c058772 Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix_proxy/dashboard_usrgrp.ibd differ diff --git a/zbx_env/var/lib/mysql/zabbix_proxy/db.opt b/zbx_env/var/lib/mysql/zabbix_proxy/db.opt new file mode 100644 index 000000000..16221b854 --- /dev/null +++ b/zbx_env/var/lib/mysql/zabbix_proxy/db.opt @@ -0,0 +1,2 @@ +default-character-set=utf8 +default-collation=utf8_bin diff --git a/zbx_env/var/lib/mysql/zabbix_proxy/dbversion.frm b/zbx_env/var/lib/mysql/zabbix_proxy/dbversion.frm new file mode 100644 index 000000000..1c10b5f1b Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix_proxy/dbversion.frm differ diff --git a/zbx_env/var/lib/mysql/zabbix_proxy/dbversion.ibd b/zbx_env/var/lib/mysql/zabbix_proxy/dbversion.ibd new file mode 100644 index 000000000..c19d612bd Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix_proxy/dbversion.ibd differ diff --git a/zbx_env/var/lib/mysql/zabbix_proxy/dchecks.frm b/zbx_env/var/lib/mysql/zabbix_proxy/dchecks.frm new file mode 100644 index 000000000..2df0b492a Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix_proxy/dchecks.frm differ diff --git a/zbx_env/var/lib/mysql/zabbix_proxy/dchecks.ibd b/zbx_env/var/lib/mysql/zabbix_proxy/dchecks.ibd new file mode 100644 index 000000000..43ad935b5 Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix_proxy/dchecks.ibd differ diff --git a/zbx_env/var/lib/mysql/zabbix_proxy/dhosts.frm b/zbx_env/var/lib/mysql/zabbix_proxy/dhosts.frm new file mode 100644 index 000000000..597ad03f3 Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix_proxy/dhosts.frm differ diff --git a/zbx_env/var/lib/mysql/zabbix_proxy/dhosts.ibd b/zbx_env/var/lib/mysql/zabbix_proxy/dhosts.ibd new file mode 100644 index 000000000..aa1f44e56 Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix_proxy/dhosts.ibd differ diff --git a/zbx_env/var/lib/mysql/zabbix_proxy/drules.frm b/zbx_env/var/lib/mysql/zabbix_proxy/drules.frm new file mode 100644 index 000000000..3b182c724 Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix_proxy/drules.frm differ diff --git a/zbx_env/var/lib/mysql/zabbix_proxy/drules.ibd b/zbx_env/var/lib/mysql/zabbix_proxy/drules.ibd new file mode 100644 index 000000000..c5fc62756 Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix_proxy/drules.ibd differ diff --git a/zbx_env/var/lib/mysql/zabbix_proxy/dservices.frm b/zbx_env/var/lib/mysql/zabbix_proxy/dservices.frm new file mode 100644 index 000000000..d2d28adda Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix_proxy/dservices.frm differ diff --git a/zbx_env/var/lib/mysql/zabbix_proxy/dservices.ibd b/zbx_env/var/lib/mysql/zabbix_proxy/dservices.ibd new file mode 100644 index 000000000..942716d86 Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix_proxy/dservices.ibd differ diff --git a/zbx_env/var/lib/mysql/zabbix_proxy/escalations.frm b/zbx_env/var/lib/mysql/zabbix_proxy/escalations.frm new file mode 100644 index 000000000..d00891aa8 Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix_proxy/escalations.frm differ diff --git a/zbx_env/var/lib/mysql/zabbix_proxy/escalations.ibd b/zbx_env/var/lib/mysql/zabbix_proxy/escalations.ibd new file mode 100644 index 000000000..32e6616e3 Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix_proxy/escalations.ibd differ diff --git a/zbx_env/var/lib/mysql/zabbix_proxy/event_recovery.frm b/zbx_env/var/lib/mysql/zabbix_proxy/event_recovery.frm new file mode 100644 index 000000000..41cac11b1 Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix_proxy/event_recovery.frm differ diff --git a/zbx_env/var/lib/mysql/zabbix_proxy/event_recovery.ibd b/zbx_env/var/lib/mysql/zabbix_proxy/event_recovery.ibd new file mode 100644 index 000000000..e4da4e4b9 Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix_proxy/event_recovery.ibd differ diff --git a/zbx_env/var/lib/mysql/zabbix_proxy/event_tag.frm b/zbx_env/var/lib/mysql/zabbix_proxy/event_tag.frm new file mode 100644 index 000000000..b4baa866d Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix_proxy/event_tag.frm differ diff --git a/zbx_env/var/lib/mysql/zabbix_proxy/event_tag.ibd b/zbx_env/var/lib/mysql/zabbix_proxy/event_tag.ibd new file mode 100644 index 000000000..048919adf Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix_proxy/event_tag.ibd differ diff --git a/zbx_env/var/lib/mysql/zabbix_proxy/events.frm b/zbx_env/var/lib/mysql/zabbix_proxy/events.frm new file mode 100644 index 000000000..39fcecd26 Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix_proxy/events.frm differ diff --git a/zbx_env/var/lib/mysql/zabbix_proxy/events.ibd b/zbx_env/var/lib/mysql/zabbix_proxy/events.ibd new file mode 100644 index 000000000..96046f551 Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix_proxy/events.ibd differ diff --git a/zbx_env/var/lib/mysql/zabbix_proxy/expressions.frm b/zbx_env/var/lib/mysql/zabbix_proxy/expressions.frm new file mode 100644 index 000000000..b57613b8a Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix_proxy/expressions.frm differ diff --git a/zbx_env/var/lib/mysql/zabbix_proxy/expressions.ibd b/zbx_env/var/lib/mysql/zabbix_proxy/expressions.ibd new file mode 100644 index 000000000..8d8ee6f1b Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix_proxy/expressions.ibd differ diff --git a/zbx_env/var/lib/mysql/zabbix_proxy/functions.frm b/zbx_env/var/lib/mysql/zabbix_proxy/functions.frm new file mode 100644 index 000000000..2e32cc9d3 Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix_proxy/functions.frm differ diff --git a/zbx_env/var/lib/mysql/zabbix_proxy/functions.ibd b/zbx_env/var/lib/mysql/zabbix_proxy/functions.ibd new file mode 100644 index 000000000..d42279b90 Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix_proxy/functions.ibd differ diff --git a/zbx_env/var/lib/mysql/zabbix_proxy/globalmacro.frm b/zbx_env/var/lib/mysql/zabbix_proxy/globalmacro.frm new file mode 100644 index 000000000..8e9d9a135 Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix_proxy/globalmacro.frm differ diff --git a/zbx_env/var/lib/mysql/zabbix_proxy/globalmacro.ibd b/zbx_env/var/lib/mysql/zabbix_proxy/globalmacro.ibd new file mode 100644 index 000000000..c0801f309 Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix_proxy/globalmacro.ibd differ diff --git a/zbx_env/var/lib/mysql/zabbix_proxy/globalvars.frm b/zbx_env/var/lib/mysql/zabbix_proxy/globalvars.frm new file mode 100644 index 000000000..2d0781c8a Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix_proxy/globalvars.frm differ diff --git a/zbx_env/var/lib/mysql/zabbix_proxy/globalvars.ibd b/zbx_env/var/lib/mysql/zabbix_proxy/globalvars.ibd new file mode 100644 index 000000000..0ebfece26 Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix_proxy/globalvars.ibd differ diff --git a/zbx_env/var/lib/mysql/zabbix_proxy/graph_discovery.frm b/zbx_env/var/lib/mysql/zabbix_proxy/graph_discovery.frm new file mode 100644 index 000000000..b6da0fbd3 Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix_proxy/graph_discovery.frm differ diff --git a/zbx_env/var/lib/mysql/zabbix_proxy/graph_discovery.ibd b/zbx_env/var/lib/mysql/zabbix_proxy/graph_discovery.ibd new file mode 100644 index 000000000..e644ccbdc Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix_proxy/graph_discovery.ibd differ diff --git a/zbx_env/var/lib/mysql/zabbix_proxy/graph_theme.frm b/zbx_env/var/lib/mysql/zabbix_proxy/graph_theme.frm new file mode 100644 index 000000000..d690d6c3e Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix_proxy/graph_theme.frm differ diff --git a/zbx_env/var/lib/mysql/zabbix_proxy/graph_theme.ibd b/zbx_env/var/lib/mysql/zabbix_proxy/graph_theme.ibd new file mode 100644 index 000000000..40134f41a Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix_proxy/graph_theme.ibd differ diff --git a/zbx_env/var/lib/mysql/zabbix_proxy/graphs.frm b/zbx_env/var/lib/mysql/zabbix_proxy/graphs.frm new file mode 100644 index 000000000..22132fefb Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix_proxy/graphs.frm differ diff --git a/zbx_env/var/lib/mysql/zabbix_proxy/graphs.ibd b/zbx_env/var/lib/mysql/zabbix_proxy/graphs.ibd new file mode 100644 index 000000000..be3131deb Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix_proxy/graphs.ibd differ diff --git a/zbx_env/var/lib/mysql/zabbix_proxy/graphs_items.frm b/zbx_env/var/lib/mysql/zabbix_proxy/graphs_items.frm new file mode 100644 index 000000000..7ba123a9d Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix_proxy/graphs_items.frm differ diff --git a/zbx_env/var/lib/mysql/zabbix_proxy/graphs_items.ibd b/zbx_env/var/lib/mysql/zabbix_proxy/graphs_items.ibd new file mode 100644 index 000000000..bcfd71f25 Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix_proxy/graphs_items.ibd differ diff --git a/zbx_env/var/lib/mysql/zabbix_proxy/group_discovery.frm b/zbx_env/var/lib/mysql/zabbix_proxy/group_discovery.frm new file mode 100644 index 000000000..195502ca4 Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix_proxy/group_discovery.frm differ diff --git a/zbx_env/var/lib/mysql/zabbix_proxy/group_discovery.ibd b/zbx_env/var/lib/mysql/zabbix_proxy/group_discovery.ibd new file mode 100644 index 000000000..090771ad7 Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix_proxy/group_discovery.ibd differ diff --git a/zbx_env/var/lib/mysql/zabbix_proxy/group_prototype.frm b/zbx_env/var/lib/mysql/zabbix_proxy/group_prototype.frm new file mode 100644 index 000000000..2967441dc Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix_proxy/group_prototype.frm differ diff --git a/zbx_env/var/lib/mysql/zabbix_proxy/group_prototype.ibd b/zbx_env/var/lib/mysql/zabbix_proxy/group_prototype.ibd new file mode 100644 index 000000000..58a001f7b Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix_proxy/group_prototype.ibd differ diff --git a/zbx_env/var/lib/mysql/zabbix_proxy/groups.frm b/zbx_env/var/lib/mysql/zabbix_proxy/groups.frm new file mode 100644 index 000000000..80c0cb495 Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix_proxy/groups.frm differ diff --git a/zbx_env/var/lib/mysql/zabbix_proxy/groups.ibd b/zbx_env/var/lib/mysql/zabbix_proxy/groups.ibd new file mode 100644 index 000000000..4d44f8df0 Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix_proxy/groups.ibd differ diff --git a/zbx_env/var/lib/mysql/zabbix_proxy/history.frm b/zbx_env/var/lib/mysql/zabbix_proxy/history.frm new file mode 100644 index 000000000..534e43828 Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix_proxy/history.frm differ diff --git a/zbx_env/var/lib/mysql/zabbix_proxy/history.ibd b/zbx_env/var/lib/mysql/zabbix_proxy/history.ibd new file mode 100644 index 000000000..255bee9e1 Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix_proxy/history.ibd differ diff --git a/zbx_env/var/lib/mysql/zabbix_proxy/history_log.frm b/zbx_env/var/lib/mysql/zabbix_proxy/history_log.frm new file mode 100644 index 000000000..2d53aaae2 Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix_proxy/history_log.frm differ diff --git a/zbx_env/var/lib/mysql/zabbix_proxy/history_log.ibd b/zbx_env/var/lib/mysql/zabbix_proxy/history_log.ibd new file mode 100644 index 000000000..7a1f036d2 Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix_proxy/history_log.ibd differ diff --git a/zbx_env/var/lib/mysql/zabbix_proxy/history_str.frm b/zbx_env/var/lib/mysql/zabbix_proxy/history_str.frm new file mode 100644 index 000000000..5f8d8e771 Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix_proxy/history_str.frm differ diff --git a/zbx_env/var/lib/mysql/zabbix_proxy/history_str.ibd b/zbx_env/var/lib/mysql/zabbix_proxy/history_str.ibd new file mode 100644 index 000000000..b8439fb06 Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix_proxy/history_str.ibd differ diff --git a/zbx_env/var/lib/mysql/zabbix_proxy/history_text.frm b/zbx_env/var/lib/mysql/zabbix_proxy/history_text.frm new file mode 100644 index 000000000..254fdf531 Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix_proxy/history_text.frm differ diff --git a/zbx_env/var/lib/mysql/zabbix_proxy/history_text.ibd b/zbx_env/var/lib/mysql/zabbix_proxy/history_text.ibd new file mode 100644 index 000000000..2818942ed Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix_proxy/history_text.ibd differ diff --git a/zbx_env/var/lib/mysql/zabbix_proxy/history_uint.frm b/zbx_env/var/lib/mysql/zabbix_proxy/history_uint.frm new file mode 100644 index 000000000..863d9bac6 Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix_proxy/history_uint.frm differ diff --git a/zbx_env/var/lib/mysql/zabbix_proxy/history_uint.ibd b/zbx_env/var/lib/mysql/zabbix_proxy/history_uint.ibd new file mode 100644 index 000000000..612a70bb7 Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix_proxy/history_uint.ibd differ diff --git a/zbx_env/var/lib/mysql/zabbix_proxy/host_discovery.frm b/zbx_env/var/lib/mysql/zabbix_proxy/host_discovery.frm new file mode 100644 index 000000000..eca892c47 Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix_proxy/host_discovery.frm differ diff --git a/zbx_env/var/lib/mysql/zabbix_proxy/host_discovery.ibd b/zbx_env/var/lib/mysql/zabbix_proxy/host_discovery.ibd new file mode 100644 index 000000000..5813c6563 Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix_proxy/host_discovery.ibd differ diff --git a/zbx_env/var/lib/mysql/zabbix_proxy/host_inventory.frm b/zbx_env/var/lib/mysql/zabbix_proxy/host_inventory.frm new file mode 100644 index 000000000..cda32745c Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix_proxy/host_inventory.frm differ diff --git a/zbx_env/var/lib/mysql/zabbix_proxy/host_inventory.ibd b/zbx_env/var/lib/mysql/zabbix_proxy/host_inventory.ibd new file mode 100644 index 000000000..907e0168b Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix_proxy/host_inventory.ibd differ diff --git a/zbx_env/var/lib/mysql/zabbix_proxy/hostmacro.frm b/zbx_env/var/lib/mysql/zabbix_proxy/hostmacro.frm new file mode 100644 index 000000000..57d203591 Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix_proxy/hostmacro.frm differ diff --git a/zbx_env/var/lib/mysql/zabbix_proxy/hostmacro.ibd b/zbx_env/var/lib/mysql/zabbix_proxy/hostmacro.ibd new file mode 100644 index 000000000..7be7aa214 Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix_proxy/hostmacro.ibd differ diff --git a/zbx_env/var/lib/mysql/zabbix_proxy/hosts.frm b/zbx_env/var/lib/mysql/zabbix_proxy/hosts.frm new file mode 100644 index 000000000..ec25fcf4e Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix_proxy/hosts.frm differ diff --git a/zbx_env/var/lib/mysql/zabbix_proxy/hosts.ibd b/zbx_env/var/lib/mysql/zabbix_proxy/hosts.ibd new file mode 100644 index 000000000..8e7204756 Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix_proxy/hosts.ibd differ diff --git a/zbx_env/var/lib/mysql/zabbix_proxy/hosts_groups.frm b/zbx_env/var/lib/mysql/zabbix_proxy/hosts_groups.frm new file mode 100644 index 000000000..c228f2c10 Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix_proxy/hosts_groups.frm differ diff --git a/zbx_env/var/lib/mysql/zabbix_proxy/hosts_groups.ibd b/zbx_env/var/lib/mysql/zabbix_proxy/hosts_groups.ibd new file mode 100644 index 000000000..be448cf59 Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix_proxy/hosts_groups.ibd differ diff --git a/zbx_env/var/lib/mysql/zabbix_proxy/hosts_templates.frm b/zbx_env/var/lib/mysql/zabbix_proxy/hosts_templates.frm new file mode 100644 index 000000000..50882b739 Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix_proxy/hosts_templates.frm differ diff --git a/zbx_env/var/lib/mysql/zabbix_proxy/hosts_templates.ibd b/zbx_env/var/lib/mysql/zabbix_proxy/hosts_templates.ibd new file mode 100644 index 000000000..b814f5378 Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix_proxy/hosts_templates.ibd differ diff --git a/zbx_env/var/lib/mysql/zabbix_proxy/housekeeper.frm b/zbx_env/var/lib/mysql/zabbix_proxy/housekeeper.frm new file mode 100644 index 000000000..81b4ad785 Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix_proxy/housekeeper.frm differ diff --git a/zbx_env/var/lib/mysql/zabbix_proxy/housekeeper.ibd b/zbx_env/var/lib/mysql/zabbix_proxy/housekeeper.ibd new file mode 100644 index 000000000..bbfae027c Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix_proxy/housekeeper.ibd differ diff --git a/zbx_env/var/lib/mysql/zabbix_proxy/httpstep.frm b/zbx_env/var/lib/mysql/zabbix_proxy/httpstep.frm new file mode 100644 index 000000000..fa8844842 Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix_proxy/httpstep.frm differ diff --git a/zbx_env/var/lib/mysql/zabbix_proxy/httpstep.ibd b/zbx_env/var/lib/mysql/zabbix_proxy/httpstep.ibd new file mode 100644 index 000000000..ba0fd86eb Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix_proxy/httpstep.ibd differ diff --git a/zbx_env/var/lib/mysql/zabbix_proxy/httpstep_field.frm b/zbx_env/var/lib/mysql/zabbix_proxy/httpstep_field.frm new file mode 100644 index 000000000..a65aa7c70 Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix_proxy/httpstep_field.frm differ diff --git a/zbx_env/var/lib/mysql/zabbix_proxy/httpstep_field.ibd b/zbx_env/var/lib/mysql/zabbix_proxy/httpstep_field.ibd new file mode 100644 index 000000000..817ab1482 Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix_proxy/httpstep_field.ibd differ diff --git a/zbx_env/var/lib/mysql/zabbix_proxy/httpstepitem.frm b/zbx_env/var/lib/mysql/zabbix_proxy/httpstepitem.frm new file mode 100644 index 000000000..60778d500 Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix_proxy/httpstepitem.frm differ diff --git a/zbx_env/var/lib/mysql/zabbix_proxy/httpstepitem.ibd b/zbx_env/var/lib/mysql/zabbix_proxy/httpstepitem.ibd new file mode 100644 index 000000000..52d93f74a Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix_proxy/httpstepitem.ibd differ diff --git a/zbx_env/var/lib/mysql/zabbix_proxy/httptest.frm b/zbx_env/var/lib/mysql/zabbix_proxy/httptest.frm new file mode 100644 index 000000000..5b680daf5 Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix_proxy/httptest.frm differ diff --git a/zbx_env/var/lib/mysql/zabbix_proxy/httptest.ibd b/zbx_env/var/lib/mysql/zabbix_proxy/httptest.ibd new file mode 100644 index 000000000..c4a390af7 Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix_proxy/httptest.ibd differ diff --git a/zbx_env/var/lib/mysql/zabbix_proxy/httptest_field.frm b/zbx_env/var/lib/mysql/zabbix_proxy/httptest_field.frm new file mode 100644 index 000000000..ca5a61a2c Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix_proxy/httptest_field.frm differ diff --git a/zbx_env/var/lib/mysql/zabbix_proxy/httptest_field.ibd b/zbx_env/var/lib/mysql/zabbix_proxy/httptest_field.ibd new file mode 100644 index 000000000..c952ac05f Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix_proxy/httptest_field.ibd differ diff --git a/zbx_env/var/lib/mysql/zabbix_proxy/httptestitem.frm b/zbx_env/var/lib/mysql/zabbix_proxy/httptestitem.frm new file mode 100644 index 000000000..f437b657c Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix_proxy/httptestitem.frm differ diff --git a/zbx_env/var/lib/mysql/zabbix_proxy/httptestitem.ibd b/zbx_env/var/lib/mysql/zabbix_proxy/httptestitem.ibd new file mode 100644 index 000000000..af262dea3 Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix_proxy/httptestitem.ibd differ diff --git a/zbx_env/var/lib/mysql/zabbix_proxy/icon_map.frm b/zbx_env/var/lib/mysql/zabbix_proxy/icon_map.frm new file mode 100644 index 000000000..d7f8e2350 Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix_proxy/icon_map.frm differ diff --git a/zbx_env/var/lib/mysql/zabbix_proxy/icon_map.ibd b/zbx_env/var/lib/mysql/zabbix_proxy/icon_map.ibd new file mode 100644 index 000000000..80c374691 Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix_proxy/icon_map.ibd differ diff --git a/zbx_env/var/lib/mysql/zabbix_proxy/icon_mapping.frm b/zbx_env/var/lib/mysql/zabbix_proxy/icon_mapping.frm new file mode 100644 index 000000000..41029fc46 Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix_proxy/icon_mapping.frm differ diff --git a/zbx_env/var/lib/mysql/zabbix_proxy/icon_mapping.ibd b/zbx_env/var/lib/mysql/zabbix_proxy/icon_mapping.ibd new file mode 100644 index 000000000..01be81c1a Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix_proxy/icon_mapping.ibd differ diff --git a/zbx_env/var/lib/mysql/zabbix_proxy/ids.frm b/zbx_env/var/lib/mysql/zabbix_proxy/ids.frm new file mode 100644 index 000000000..ca0dda6c7 Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix_proxy/ids.frm differ diff --git a/zbx_env/var/lib/mysql/zabbix_proxy/ids.ibd b/zbx_env/var/lib/mysql/zabbix_proxy/ids.ibd new file mode 100644 index 000000000..78955b30b Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix_proxy/ids.ibd differ diff --git a/zbx_env/var/lib/mysql/zabbix_proxy/images.frm b/zbx_env/var/lib/mysql/zabbix_proxy/images.frm new file mode 100644 index 000000000..05d0bc5a2 Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix_proxy/images.frm differ diff --git a/zbx_env/var/lib/mysql/zabbix_proxy/images.ibd b/zbx_env/var/lib/mysql/zabbix_proxy/images.ibd new file mode 100644 index 000000000..236a0b360 Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix_proxy/images.ibd differ diff --git a/zbx_env/var/lib/mysql/zabbix_proxy/interface.frm b/zbx_env/var/lib/mysql/zabbix_proxy/interface.frm new file mode 100644 index 000000000..f7fa852f3 Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix_proxy/interface.frm differ diff --git a/zbx_env/var/lib/mysql/zabbix_proxy/interface.ibd b/zbx_env/var/lib/mysql/zabbix_proxy/interface.ibd new file mode 100644 index 000000000..3f706cb92 Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix_proxy/interface.ibd differ diff --git a/zbx_env/var/lib/mysql/zabbix_proxy/interface_discovery.frm b/zbx_env/var/lib/mysql/zabbix_proxy/interface_discovery.frm new file mode 100644 index 000000000..2b28473f4 Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix_proxy/interface_discovery.frm differ diff --git a/zbx_env/var/lib/mysql/zabbix_proxy/interface_discovery.ibd b/zbx_env/var/lib/mysql/zabbix_proxy/interface_discovery.ibd new file mode 100644 index 000000000..38643d1c2 Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix_proxy/interface_discovery.ibd differ diff --git a/zbx_env/var/lib/mysql/zabbix_proxy/item_application_prototype.frm b/zbx_env/var/lib/mysql/zabbix_proxy/item_application_prototype.frm new file mode 100644 index 000000000..b7a40c466 Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix_proxy/item_application_prototype.frm differ diff --git a/zbx_env/var/lib/mysql/zabbix_proxy/item_application_prototype.ibd b/zbx_env/var/lib/mysql/zabbix_proxy/item_application_prototype.ibd new file mode 100644 index 000000000..3b8cbc5a9 Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix_proxy/item_application_prototype.ibd differ diff --git a/zbx_env/var/lib/mysql/zabbix_proxy/item_condition.frm b/zbx_env/var/lib/mysql/zabbix_proxy/item_condition.frm new file mode 100644 index 000000000..2f8722750 Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix_proxy/item_condition.frm differ diff --git a/zbx_env/var/lib/mysql/zabbix_proxy/item_condition.ibd b/zbx_env/var/lib/mysql/zabbix_proxy/item_condition.ibd new file mode 100644 index 000000000..fd1702143 Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix_proxy/item_condition.ibd differ diff --git a/zbx_env/var/lib/mysql/zabbix_proxy/item_discovery.frm b/zbx_env/var/lib/mysql/zabbix_proxy/item_discovery.frm new file mode 100644 index 000000000..d23367005 Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix_proxy/item_discovery.frm differ diff --git a/zbx_env/var/lib/mysql/zabbix_proxy/item_discovery.ibd b/zbx_env/var/lib/mysql/zabbix_proxy/item_discovery.ibd new file mode 100644 index 000000000..e494558ce Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix_proxy/item_discovery.ibd differ diff --git a/zbx_env/var/lib/mysql/zabbix_proxy/item_preproc.frm b/zbx_env/var/lib/mysql/zabbix_proxy/item_preproc.frm new file mode 100644 index 000000000..04571a452 Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix_proxy/item_preproc.frm differ diff --git a/zbx_env/var/lib/mysql/zabbix_proxy/item_preproc.ibd b/zbx_env/var/lib/mysql/zabbix_proxy/item_preproc.ibd new file mode 100644 index 000000000..17298274d Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix_proxy/item_preproc.ibd differ diff --git a/zbx_env/var/lib/mysql/zabbix_proxy/items.frm b/zbx_env/var/lib/mysql/zabbix_proxy/items.frm new file mode 100644 index 000000000..ea0608687 Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix_proxy/items.frm differ diff --git a/zbx_env/var/lib/mysql/zabbix_proxy/items.ibd b/zbx_env/var/lib/mysql/zabbix_proxy/items.ibd new file mode 100644 index 000000000..90cd1a088 Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix_proxy/items.ibd differ diff --git a/zbx_env/var/lib/mysql/zabbix_proxy/items_applications.frm b/zbx_env/var/lib/mysql/zabbix_proxy/items_applications.frm new file mode 100644 index 000000000..4b6148ba0 Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix_proxy/items_applications.frm differ diff --git a/zbx_env/var/lib/mysql/zabbix_proxy/items_applications.ibd b/zbx_env/var/lib/mysql/zabbix_proxy/items_applications.ibd new file mode 100644 index 000000000..87adb50fd Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix_proxy/items_applications.ibd differ diff --git a/zbx_env/var/lib/mysql/zabbix_proxy/maintenances.frm b/zbx_env/var/lib/mysql/zabbix_proxy/maintenances.frm new file mode 100644 index 000000000..1135d58c9 Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix_proxy/maintenances.frm differ diff --git a/zbx_env/var/lib/mysql/zabbix_proxy/maintenances.ibd b/zbx_env/var/lib/mysql/zabbix_proxy/maintenances.ibd new file mode 100644 index 000000000..19414154d Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix_proxy/maintenances.ibd differ diff --git a/zbx_env/var/lib/mysql/zabbix_proxy/maintenances_groups.frm b/zbx_env/var/lib/mysql/zabbix_proxy/maintenances_groups.frm new file mode 100644 index 000000000..692016143 Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix_proxy/maintenances_groups.frm differ diff --git a/zbx_env/var/lib/mysql/zabbix_proxy/maintenances_groups.ibd b/zbx_env/var/lib/mysql/zabbix_proxy/maintenances_groups.ibd new file mode 100644 index 000000000..d30b2bffd Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix_proxy/maintenances_groups.ibd differ diff --git a/zbx_env/var/lib/mysql/zabbix_proxy/maintenances_hosts.frm b/zbx_env/var/lib/mysql/zabbix_proxy/maintenances_hosts.frm new file mode 100644 index 000000000..cbbdcd472 Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix_proxy/maintenances_hosts.frm differ diff --git a/zbx_env/var/lib/mysql/zabbix_proxy/maintenances_hosts.ibd b/zbx_env/var/lib/mysql/zabbix_proxy/maintenances_hosts.ibd new file mode 100644 index 000000000..3e8ea3770 Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix_proxy/maintenances_hosts.ibd differ diff --git a/zbx_env/var/lib/mysql/zabbix_proxy/maintenances_windows.frm b/zbx_env/var/lib/mysql/zabbix_proxy/maintenances_windows.frm new file mode 100644 index 000000000..c59f2c441 Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix_proxy/maintenances_windows.frm differ diff --git a/zbx_env/var/lib/mysql/zabbix_proxy/maintenances_windows.ibd b/zbx_env/var/lib/mysql/zabbix_proxy/maintenances_windows.ibd new file mode 100644 index 000000000..e7d6b8787 Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix_proxy/maintenances_windows.ibd differ diff --git a/zbx_env/var/lib/mysql/zabbix_proxy/mappings.frm b/zbx_env/var/lib/mysql/zabbix_proxy/mappings.frm new file mode 100644 index 000000000..d844e77ca Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix_proxy/mappings.frm differ diff --git a/zbx_env/var/lib/mysql/zabbix_proxy/mappings.ibd b/zbx_env/var/lib/mysql/zabbix_proxy/mappings.ibd new file mode 100644 index 000000000..f070cace9 Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix_proxy/mappings.ibd differ diff --git a/zbx_env/var/lib/mysql/zabbix_proxy/media.frm b/zbx_env/var/lib/mysql/zabbix_proxy/media.frm new file mode 100644 index 000000000..5258f2055 Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix_proxy/media.frm differ diff --git a/zbx_env/var/lib/mysql/zabbix_proxy/media.ibd b/zbx_env/var/lib/mysql/zabbix_proxy/media.ibd new file mode 100644 index 000000000..a8d699835 Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix_proxy/media.ibd differ diff --git a/zbx_env/var/lib/mysql/zabbix_proxy/media_type.frm b/zbx_env/var/lib/mysql/zabbix_proxy/media_type.frm new file mode 100644 index 000000000..22ef591e8 Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix_proxy/media_type.frm differ diff --git a/zbx_env/var/lib/mysql/zabbix_proxy/media_type.ibd b/zbx_env/var/lib/mysql/zabbix_proxy/media_type.ibd new file mode 100644 index 000000000..db10b9e3b Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix_proxy/media_type.ibd differ diff --git a/zbx_env/var/lib/mysql/zabbix_proxy/opcommand.frm b/zbx_env/var/lib/mysql/zabbix_proxy/opcommand.frm new file mode 100644 index 000000000..2d3baf6a5 Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix_proxy/opcommand.frm differ diff --git a/zbx_env/var/lib/mysql/zabbix_proxy/opcommand.ibd b/zbx_env/var/lib/mysql/zabbix_proxy/opcommand.ibd new file mode 100644 index 000000000..da582c3c0 Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix_proxy/opcommand.ibd differ diff --git a/zbx_env/var/lib/mysql/zabbix_proxy/opcommand_grp.frm b/zbx_env/var/lib/mysql/zabbix_proxy/opcommand_grp.frm new file mode 100644 index 000000000..b9f0b8e62 Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix_proxy/opcommand_grp.frm differ diff --git a/zbx_env/var/lib/mysql/zabbix_proxy/opcommand_grp.ibd b/zbx_env/var/lib/mysql/zabbix_proxy/opcommand_grp.ibd new file mode 100644 index 000000000..a072ff8bf Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix_proxy/opcommand_grp.ibd differ diff --git a/zbx_env/var/lib/mysql/zabbix_proxy/opcommand_hst.frm b/zbx_env/var/lib/mysql/zabbix_proxy/opcommand_hst.frm new file mode 100644 index 000000000..78823dd9e Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix_proxy/opcommand_hst.frm differ diff --git a/zbx_env/var/lib/mysql/zabbix_proxy/opcommand_hst.ibd b/zbx_env/var/lib/mysql/zabbix_proxy/opcommand_hst.ibd new file mode 100644 index 000000000..9e4bc6120 Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix_proxy/opcommand_hst.ibd differ diff --git a/zbx_env/var/lib/mysql/zabbix_proxy/opconditions.frm b/zbx_env/var/lib/mysql/zabbix_proxy/opconditions.frm new file mode 100644 index 000000000..0918d04bb Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix_proxy/opconditions.frm differ diff --git a/zbx_env/var/lib/mysql/zabbix_proxy/opconditions.ibd b/zbx_env/var/lib/mysql/zabbix_proxy/opconditions.ibd new file mode 100644 index 000000000..debf206e7 Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix_proxy/opconditions.ibd differ diff --git a/zbx_env/var/lib/mysql/zabbix_proxy/operations.frm b/zbx_env/var/lib/mysql/zabbix_proxy/operations.frm new file mode 100644 index 000000000..756f03b53 Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix_proxy/operations.frm differ diff --git a/zbx_env/var/lib/mysql/zabbix_proxy/operations.ibd b/zbx_env/var/lib/mysql/zabbix_proxy/operations.ibd new file mode 100644 index 000000000..2ba84cebe Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix_proxy/operations.ibd differ diff --git a/zbx_env/var/lib/mysql/zabbix_proxy/opgroup.frm b/zbx_env/var/lib/mysql/zabbix_proxy/opgroup.frm new file mode 100644 index 000000000..1301eb59e Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix_proxy/opgroup.frm differ diff --git a/zbx_env/var/lib/mysql/zabbix_proxy/opgroup.ibd b/zbx_env/var/lib/mysql/zabbix_proxy/opgroup.ibd new file mode 100644 index 000000000..0f2e8c23f Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix_proxy/opgroup.ibd differ diff --git a/zbx_env/var/lib/mysql/zabbix_proxy/opinventory.frm b/zbx_env/var/lib/mysql/zabbix_proxy/opinventory.frm new file mode 100644 index 000000000..a94f06852 Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix_proxy/opinventory.frm differ diff --git a/zbx_env/var/lib/mysql/zabbix_proxy/opinventory.ibd b/zbx_env/var/lib/mysql/zabbix_proxy/opinventory.ibd new file mode 100644 index 000000000..c0153f096 Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix_proxy/opinventory.ibd differ diff --git a/zbx_env/var/lib/mysql/zabbix_proxy/opmessage.frm b/zbx_env/var/lib/mysql/zabbix_proxy/opmessage.frm new file mode 100644 index 000000000..395e0b78e Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix_proxy/opmessage.frm differ diff --git a/zbx_env/var/lib/mysql/zabbix_proxy/opmessage.ibd b/zbx_env/var/lib/mysql/zabbix_proxy/opmessage.ibd new file mode 100644 index 000000000..8d0982c0e Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix_proxy/opmessage.ibd differ diff --git a/zbx_env/var/lib/mysql/zabbix_proxy/opmessage_grp.frm b/zbx_env/var/lib/mysql/zabbix_proxy/opmessage_grp.frm new file mode 100644 index 000000000..f4e00d05e Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix_proxy/opmessage_grp.frm differ diff --git a/zbx_env/var/lib/mysql/zabbix_proxy/opmessage_grp.ibd b/zbx_env/var/lib/mysql/zabbix_proxy/opmessage_grp.ibd new file mode 100644 index 000000000..cdd964f84 Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix_proxy/opmessage_grp.ibd differ diff --git a/zbx_env/var/lib/mysql/zabbix_proxy/opmessage_usr.frm b/zbx_env/var/lib/mysql/zabbix_proxy/opmessage_usr.frm new file mode 100644 index 000000000..7431d847b Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix_proxy/opmessage_usr.frm differ diff --git a/zbx_env/var/lib/mysql/zabbix_proxy/opmessage_usr.ibd b/zbx_env/var/lib/mysql/zabbix_proxy/opmessage_usr.ibd new file mode 100644 index 000000000..aa4a4f034 Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix_proxy/opmessage_usr.ibd differ diff --git a/zbx_env/var/lib/mysql/zabbix_proxy/optemplate.frm b/zbx_env/var/lib/mysql/zabbix_proxy/optemplate.frm new file mode 100644 index 000000000..46d852a44 Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix_proxy/optemplate.frm differ diff --git a/zbx_env/var/lib/mysql/zabbix_proxy/optemplate.ibd b/zbx_env/var/lib/mysql/zabbix_proxy/optemplate.ibd new file mode 100644 index 000000000..e7183697e Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix_proxy/optemplate.ibd differ diff --git a/zbx_env/var/lib/mysql/zabbix_proxy/problem.frm b/zbx_env/var/lib/mysql/zabbix_proxy/problem.frm new file mode 100644 index 000000000..2aeea5ccd Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix_proxy/problem.frm differ diff --git a/zbx_env/var/lib/mysql/zabbix_proxy/problem.ibd b/zbx_env/var/lib/mysql/zabbix_proxy/problem.ibd new file mode 100644 index 000000000..3984fa4d0 Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix_proxy/problem.ibd differ diff --git a/zbx_env/var/lib/mysql/zabbix_proxy/problem_tag.frm b/zbx_env/var/lib/mysql/zabbix_proxy/problem_tag.frm new file mode 100644 index 000000000..7b954e04b Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix_proxy/problem_tag.frm differ diff --git a/zbx_env/var/lib/mysql/zabbix_proxy/problem_tag.ibd b/zbx_env/var/lib/mysql/zabbix_proxy/problem_tag.ibd new file mode 100644 index 000000000..2b3a9b7b8 Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix_proxy/problem_tag.ibd differ diff --git a/zbx_env/var/lib/mysql/zabbix_proxy/profiles.frm b/zbx_env/var/lib/mysql/zabbix_proxy/profiles.frm new file mode 100644 index 000000000..dab2b5098 Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix_proxy/profiles.frm differ diff --git a/zbx_env/var/lib/mysql/zabbix_proxy/profiles.ibd b/zbx_env/var/lib/mysql/zabbix_proxy/profiles.ibd new file mode 100644 index 000000000..b7327065b Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix_proxy/profiles.ibd differ diff --git a/zbx_env/var/lib/mysql/zabbix_proxy/proxy_autoreg_host.frm b/zbx_env/var/lib/mysql/zabbix_proxy/proxy_autoreg_host.frm new file mode 100644 index 000000000..75383a91f Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix_proxy/proxy_autoreg_host.frm differ diff --git a/zbx_env/var/lib/mysql/zabbix_proxy/proxy_autoreg_host.ibd b/zbx_env/var/lib/mysql/zabbix_proxy/proxy_autoreg_host.ibd new file mode 100644 index 000000000..ec917c125 Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix_proxy/proxy_autoreg_host.ibd differ diff --git a/zbx_env/var/lib/mysql/zabbix_proxy/proxy_dhistory.frm b/zbx_env/var/lib/mysql/zabbix_proxy/proxy_dhistory.frm new file mode 100644 index 000000000..882ed8457 Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix_proxy/proxy_dhistory.frm differ diff --git a/zbx_env/var/lib/mysql/zabbix_proxy/proxy_dhistory.ibd b/zbx_env/var/lib/mysql/zabbix_proxy/proxy_dhistory.ibd new file mode 100644 index 000000000..f4d21be3f Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix_proxy/proxy_dhistory.ibd differ diff --git a/zbx_env/var/lib/mysql/zabbix_proxy/proxy_history.frm b/zbx_env/var/lib/mysql/zabbix_proxy/proxy_history.frm new file mode 100644 index 000000000..351a6bdb4 Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix_proxy/proxy_history.frm differ diff --git a/zbx_env/var/lib/mysql/zabbix_proxy/proxy_history.ibd b/zbx_env/var/lib/mysql/zabbix_proxy/proxy_history.ibd new file mode 100644 index 000000000..b9f9611d5 Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix_proxy/proxy_history.ibd differ diff --git a/zbx_env/var/lib/mysql/zabbix_proxy/regexps.frm b/zbx_env/var/lib/mysql/zabbix_proxy/regexps.frm new file mode 100644 index 000000000..45ccfea8f Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix_proxy/regexps.frm differ diff --git a/zbx_env/var/lib/mysql/zabbix_proxy/regexps.ibd b/zbx_env/var/lib/mysql/zabbix_proxy/regexps.ibd new file mode 100644 index 000000000..959160a82 Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix_proxy/regexps.ibd differ diff --git a/zbx_env/var/lib/mysql/zabbix_proxy/rights.frm b/zbx_env/var/lib/mysql/zabbix_proxy/rights.frm new file mode 100644 index 000000000..6859e8ca7 Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix_proxy/rights.frm differ diff --git a/zbx_env/var/lib/mysql/zabbix_proxy/rights.ibd b/zbx_env/var/lib/mysql/zabbix_proxy/rights.ibd new file mode 100644 index 000000000..dff662502 Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix_proxy/rights.ibd differ diff --git a/zbx_env/var/lib/mysql/zabbix_proxy/screen_user.frm b/zbx_env/var/lib/mysql/zabbix_proxy/screen_user.frm new file mode 100644 index 000000000..d66ae0053 Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix_proxy/screen_user.frm differ diff --git a/zbx_env/var/lib/mysql/zabbix_proxy/screen_user.ibd b/zbx_env/var/lib/mysql/zabbix_proxy/screen_user.ibd new file mode 100644 index 000000000..406a1fa6e Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix_proxy/screen_user.ibd differ diff --git a/zbx_env/var/lib/mysql/zabbix_proxy/screen_usrgrp.frm b/zbx_env/var/lib/mysql/zabbix_proxy/screen_usrgrp.frm new file mode 100644 index 000000000..0fb351b59 Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix_proxy/screen_usrgrp.frm differ diff --git a/zbx_env/var/lib/mysql/zabbix_proxy/screen_usrgrp.ibd b/zbx_env/var/lib/mysql/zabbix_proxy/screen_usrgrp.ibd new file mode 100644 index 000000000..347ecc302 Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix_proxy/screen_usrgrp.ibd differ diff --git a/zbx_env/var/lib/mysql/zabbix_proxy/screens.frm b/zbx_env/var/lib/mysql/zabbix_proxy/screens.frm new file mode 100644 index 000000000..cc3b03ac5 Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix_proxy/screens.frm differ diff --git a/zbx_env/var/lib/mysql/zabbix_proxy/screens.ibd b/zbx_env/var/lib/mysql/zabbix_proxy/screens.ibd new file mode 100644 index 000000000..33f435ee4 Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix_proxy/screens.ibd differ diff --git a/zbx_env/var/lib/mysql/zabbix_proxy/screens_items.frm b/zbx_env/var/lib/mysql/zabbix_proxy/screens_items.frm new file mode 100644 index 000000000..187a0a848 Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix_proxy/screens_items.frm differ diff --git a/zbx_env/var/lib/mysql/zabbix_proxy/screens_items.ibd b/zbx_env/var/lib/mysql/zabbix_proxy/screens_items.ibd new file mode 100644 index 000000000..9abeb401d Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix_proxy/screens_items.ibd differ diff --git a/zbx_env/var/lib/mysql/zabbix_proxy/scripts.frm b/zbx_env/var/lib/mysql/zabbix_proxy/scripts.frm new file mode 100644 index 000000000..fd1b91462 Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix_proxy/scripts.frm differ diff --git a/zbx_env/var/lib/mysql/zabbix_proxy/scripts.ibd b/zbx_env/var/lib/mysql/zabbix_proxy/scripts.ibd new file mode 100644 index 000000000..6d92da7b5 Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix_proxy/scripts.ibd differ diff --git a/zbx_env/var/lib/mysql/zabbix_proxy/service_alarms.frm b/zbx_env/var/lib/mysql/zabbix_proxy/service_alarms.frm new file mode 100644 index 000000000..f8df08d93 Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix_proxy/service_alarms.frm differ diff --git a/zbx_env/var/lib/mysql/zabbix_proxy/service_alarms.ibd b/zbx_env/var/lib/mysql/zabbix_proxy/service_alarms.ibd new file mode 100644 index 000000000..530f232c4 Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix_proxy/service_alarms.ibd differ diff --git a/zbx_env/var/lib/mysql/zabbix_proxy/services.frm b/zbx_env/var/lib/mysql/zabbix_proxy/services.frm new file mode 100644 index 000000000..3c1557f96 Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix_proxy/services.frm differ diff --git a/zbx_env/var/lib/mysql/zabbix_proxy/services.ibd b/zbx_env/var/lib/mysql/zabbix_proxy/services.ibd new file mode 100644 index 000000000..9830001df Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix_proxy/services.ibd differ diff --git a/zbx_env/var/lib/mysql/zabbix_proxy/services_links.frm b/zbx_env/var/lib/mysql/zabbix_proxy/services_links.frm new file mode 100644 index 000000000..545a5e11d Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix_proxy/services_links.frm differ diff --git a/zbx_env/var/lib/mysql/zabbix_proxy/services_links.ibd b/zbx_env/var/lib/mysql/zabbix_proxy/services_links.ibd new file mode 100644 index 000000000..fc827a052 Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix_proxy/services_links.ibd differ diff --git a/zbx_env/var/lib/mysql/zabbix_proxy/services_times.frm b/zbx_env/var/lib/mysql/zabbix_proxy/services_times.frm new file mode 100644 index 000000000..ad95e20dd Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix_proxy/services_times.frm differ diff --git a/zbx_env/var/lib/mysql/zabbix_proxy/services_times.ibd b/zbx_env/var/lib/mysql/zabbix_proxy/services_times.ibd new file mode 100644 index 000000000..dc147db40 Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix_proxy/services_times.ibd differ diff --git a/zbx_env/var/lib/mysql/zabbix_proxy/sessions.frm b/zbx_env/var/lib/mysql/zabbix_proxy/sessions.frm new file mode 100644 index 000000000..2b0ce84e8 Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix_proxy/sessions.frm differ diff --git a/zbx_env/var/lib/mysql/zabbix_proxy/sessions.ibd b/zbx_env/var/lib/mysql/zabbix_proxy/sessions.ibd new file mode 100644 index 000000000..88c9bb8d0 Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix_proxy/sessions.ibd differ diff --git a/zbx_env/var/lib/mysql/zabbix_proxy/slides.frm b/zbx_env/var/lib/mysql/zabbix_proxy/slides.frm new file mode 100644 index 000000000..8d4d92ae8 Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix_proxy/slides.frm differ diff --git a/zbx_env/var/lib/mysql/zabbix_proxy/slides.ibd b/zbx_env/var/lib/mysql/zabbix_proxy/slides.ibd new file mode 100644 index 000000000..166a05742 Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix_proxy/slides.ibd differ diff --git a/zbx_env/var/lib/mysql/zabbix_proxy/slideshow_user.frm b/zbx_env/var/lib/mysql/zabbix_proxy/slideshow_user.frm new file mode 100644 index 000000000..e83471b22 Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix_proxy/slideshow_user.frm differ diff --git a/zbx_env/var/lib/mysql/zabbix_proxy/slideshow_user.ibd b/zbx_env/var/lib/mysql/zabbix_proxy/slideshow_user.ibd new file mode 100644 index 000000000..a3d4adba3 Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix_proxy/slideshow_user.ibd differ diff --git a/zbx_env/var/lib/mysql/zabbix_proxy/slideshow_usrgrp.frm b/zbx_env/var/lib/mysql/zabbix_proxy/slideshow_usrgrp.frm new file mode 100644 index 000000000..2fabf1b54 Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix_proxy/slideshow_usrgrp.frm differ diff --git a/zbx_env/var/lib/mysql/zabbix_proxy/slideshow_usrgrp.ibd b/zbx_env/var/lib/mysql/zabbix_proxy/slideshow_usrgrp.ibd new file mode 100644 index 000000000..0da112e39 Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix_proxy/slideshow_usrgrp.ibd differ diff --git a/zbx_env/var/lib/mysql/zabbix_proxy/slideshows.frm b/zbx_env/var/lib/mysql/zabbix_proxy/slideshows.frm new file mode 100644 index 000000000..0c41ff127 Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix_proxy/slideshows.frm differ diff --git a/zbx_env/var/lib/mysql/zabbix_proxy/slideshows.ibd b/zbx_env/var/lib/mysql/zabbix_proxy/slideshows.ibd new file mode 100644 index 000000000..8e30a102e Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix_proxy/slideshows.ibd differ diff --git a/zbx_env/var/lib/mysql/zabbix_proxy/sysmap_element_trigger.frm b/zbx_env/var/lib/mysql/zabbix_proxy/sysmap_element_trigger.frm new file mode 100644 index 000000000..1746d9fc4 Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix_proxy/sysmap_element_trigger.frm differ diff --git a/zbx_env/var/lib/mysql/zabbix_proxy/sysmap_element_trigger.ibd b/zbx_env/var/lib/mysql/zabbix_proxy/sysmap_element_trigger.ibd new file mode 100644 index 000000000..9e7d5a53f Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix_proxy/sysmap_element_trigger.ibd differ diff --git a/zbx_env/var/lib/mysql/zabbix_proxy/sysmap_element_url.frm b/zbx_env/var/lib/mysql/zabbix_proxy/sysmap_element_url.frm new file mode 100644 index 000000000..13c5140e6 Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix_proxy/sysmap_element_url.frm differ diff --git a/zbx_env/var/lib/mysql/zabbix_proxy/sysmap_element_url.ibd b/zbx_env/var/lib/mysql/zabbix_proxy/sysmap_element_url.ibd new file mode 100644 index 000000000..8db388bd4 Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix_proxy/sysmap_element_url.ibd differ diff --git a/zbx_env/var/lib/mysql/zabbix_proxy/sysmap_shape.frm b/zbx_env/var/lib/mysql/zabbix_proxy/sysmap_shape.frm new file mode 100644 index 000000000..131c38301 Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix_proxy/sysmap_shape.frm differ diff --git a/zbx_env/var/lib/mysql/zabbix_proxy/sysmap_shape.ibd b/zbx_env/var/lib/mysql/zabbix_proxy/sysmap_shape.ibd new file mode 100644 index 000000000..243d8247c Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix_proxy/sysmap_shape.ibd differ diff --git a/zbx_env/var/lib/mysql/zabbix_proxy/sysmap_url.frm b/zbx_env/var/lib/mysql/zabbix_proxy/sysmap_url.frm new file mode 100644 index 000000000..5e8b1ee7a Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix_proxy/sysmap_url.frm differ diff --git a/zbx_env/var/lib/mysql/zabbix_proxy/sysmap_url.ibd b/zbx_env/var/lib/mysql/zabbix_proxy/sysmap_url.ibd new file mode 100644 index 000000000..c43e5d4e0 Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix_proxy/sysmap_url.ibd differ diff --git a/zbx_env/var/lib/mysql/zabbix_proxy/sysmap_user.frm b/zbx_env/var/lib/mysql/zabbix_proxy/sysmap_user.frm new file mode 100644 index 000000000..cfc595c2a Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix_proxy/sysmap_user.frm differ diff --git a/zbx_env/var/lib/mysql/zabbix_proxy/sysmap_user.ibd b/zbx_env/var/lib/mysql/zabbix_proxy/sysmap_user.ibd new file mode 100644 index 000000000..f271c7b61 Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix_proxy/sysmap_user.ibd differ diff --git a/zbx_env/var/lib/mysql/zabbix_proxy/sysmap_usrgrp.frm b/zbx_env/var/lib/mysql/zabbix_proxy/sysmap_usrgrp.frm new file mode 100644 index 000000000..00826c18b Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix_proxy/sysmap_usrgrp.frm differ diff --git a/zbx_env/var/lib/mysql/zabbix_proxy/sysmap_usrgrp.ibd b/zbx_env/var/lib/mysql/zabbix_proxy/sysmap_usrgrp.ibd new file mode 100644 index 000000000..d25abbb1b Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix_proxy/sysmap_usrgrp.ibd differ diff --git a/zbx_env/var/lib/mysql/zabbix_proxy/sysmaps.frm b/zbx_env/var/lib/mysql/zabbix_proxy/sysmaps.frm new file mode 100644 index 000000000..9c36b3ecd Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix_proxy/sysmaps.frm differ diff --git a/zbx_env/var/lib/mysql/zabbix_proxy/sysmaps.ibd b/zbx_env/var/lib/mysql/zabbix_proxy/sysmaps.ibd new file mode 100644 index 000000000..fecb32003 Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix_proxy/sysmaps.ibd differ diff --git a/zbx_env/var/lib/mysql/zabbix_proxy/sysmaps_elements.frm b/zbx_env/var/lib/mysql/zabbix_proxy/sysmaps_elements.frm new file mode 100644 index 000000000..b2686a1f3 Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix_proxy/sysmaps_elements.frm differ diff --git a/zbx_env/var/lib/mysql/zabbix_proxy/sysmaps_elements.ibd b/zbx_env/var/lib/mysql/zabbix_proxy/sysmaps_elements.ibd new file mode 100644 index 000000000..a67a36c80 Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix_proxy/sysmaps_elements.ibd differ diff --git a/zbx_env/var/lib/mysql/zabbix_proxy/sysmaps_link_triggers.frm b/zbx_env/var/lib/mysql/zabbix_proxy/sysmaps_link_triggers.frm new file mode 100644 index 000000000..905584921 Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix_proxy/sysmaps_link_triggers.frm differ diff --git a/zbx_env/var/lib/mysql/zabbix_proxy/sysmaps_link_triggers.ibd b/zbx_env/var/lib/mysql/zabbix_proxy/sysmaps_link_triggers.ibd new file mode 100644 index 000000000..f9cd26855 Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix_proxy/sysmaps_link_triggers.ibd differ diff --git a/zbx_env/var/lib/mysql/zabbix_proxy/sysmaps_links.frm b/zbx_env/var/lib/mysql/zabbix_proxy/sysmaps_links.frm new file mode 100644 index 000000000..86aca93c4 Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix_proxy/sysmaps_links.frm differ diff --git a/zbx_env/var/lib/mysql/zabbix_proxy/sysmaps_links.ibd b/zbx_env/var/lib/mysql/zabbix_proxy/sysmaps_links.ibd new file mode 100644 index 000000000..562ba982a Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix_proxy/sysmaps_links.ibd differ diff --git a/zbx_env/var/lib/mysql/zabbix_proxy/task.frm b/zbx_env/var/lib/mysql/zabbix_proxy/task.frm new file mode 100644 index 000000000..842ca3669 Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix_proxy/task.frm differ diff --git a/zbx_env/var/lib/mysql/zabbix_proxy/task.ibd b/zbx_env/var/lib/mysql/zabbix_proxy/task.ibd new file mode 100644 index 000000000..646696b32 Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix_proxy/task.ibd differ diff --git a/zbx_env/var/lib/mysql/zabbix_proxy/task_acknowledge.frm b/zbx_env/var/lib/mysql/zabbix_proxy/task_acknowledge.frm new file mode 100644 index 000000000..74789a704 Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix_proxy/task_acknowledge.frm differ diff --git a/zbx_env/var/lib/mysql/zabbix_proxy/task_acknowledge.ibd b/zbx_env/var/lib/mysql/zabbix_proxy/task_acknowledge.ibd new file mode 100644 index 000000000..0d6302d87 Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix_proxy/task_acknowledge.ibd differ diff --git a/zbx_env/var/lib/mysql/zabbix_proxy/task_close_problem.frm b/zbx_env/var/lib/mysql/zabbix_proxy/task_close_problem.frm new file mode 100644 index 000000000..74789a704 Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix_proxy/task_close_problem.frm differ diff --git a/zbx_env/var/lib/mysql/zabbix_proxy/task_close_problem.ibd b/zbx_env/var/lib/mysql/zabbix_proxy/task_close_problem.ibd new file mode 100644 index 000000000..06ae4ca14 Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix_proxy/task_close_problem.ibd differ diff --git a/zbx_env/var/lib/mysql/zabbix_proxy/task_remote_command.frm b/zbx_env/var/lib/mysql/zabbix_proxy/task_remote_command.frm new file mode 100644 index 000000000..c8eb91b46 Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix_proxy/task_remote_command.frm differ diff --git a/zbx_env/var/lib/mysql/zabbix_proxy/task_remote_command.ibd b/zbx_env/var/lib/mysql/zabbix_proxy/task_remote_command.ibd new file mode 100644 index 000000000..0b49703ea Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix_proxy/task_remote_command.ibd differ diff --git a/zbx_env/var/lib/mysql/zabbix_proxy/task_remote_command_result.frm b/zbx_env/var/lib/mysql/zabbix_proxy/task_remote_command_result.frm new file mode 100644 index 000000000..f0c91868c Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix_proxy/task_remote_command_result.frm differ diff --git a/zbx_env/var/lib/mysql/zabbix_proxy/task_remote_command_result.ibd b/zbx_env/var/lib/mysql/zabbix_proxy/task_remote_command_result.ibd new file mode 100644 index 000000000..463ed9499 Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix_proxy/task_remote_command_result.ibd differ diff --git a/zbx_env/var/lib/mysql/zabbix_proxy/timeperiods.frm b/zbx_env/var/lib/mysql/zabbix_proxy/timeperiods.frm new file mode 100644 index 000000000..a1997196e Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix_proxy/timeperiods.frm differ diff --git a/zbx_env/var/lib/mysql/zabbix_proxy/timeperiods.ibd b/zbx_env/var/lib/mysql/zabbix_proxy/timeperiods.ibd new file mode 100644 index 000000000..4dfdc414d Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix_proxy/timeperiods.ibd differ diff --git a/zbx_env/var/lib/mysql/zabbix_proxy/trends.frm b/zbx_env/var/lib/mysql/zabbix_proxy/trends.frm new file mode 100644 index 000000000..340bf5966 Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix_proxy/trends.frm differ diff --git a/zbx_env/var/lib/mysql/zabbix_proxy/trends.ibd b/zbx_env/var/lib/mysql/zabbix_proxy/trends.ibd new file mode 100644 index 000000000..867551820 Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix_proxy/trends.ibd differ diff --git a/zbx_env/var/lib/mysql/zabbix_proxy/trends_uint.frm b/zbx_env/var/lib/mysql/zabbix_proxy/trends_uint.frm new file mode 100644 index 000000000..e9755a5f5 Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix_proxy/trends_uint.frm differ diff --git a/zbx_env/var/lib/mysql/zabbix_proxy/trends_uint.ibd b/zbx_env/var/lib/mysql/zabbix_proxy/trends_uint.ibd new file mode 100644 index 000000000..da5c822be Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix_proxy/trends_uint.ibd differ diff --git a/zbx_env/var/lib/mysql/zabbix_proxy/trigger_depends.frm b/zbx_env/var/lib/mysql/zabbix_proxy/trigger_depends.frm new file mode 100644 index 000000000..6eba7c509 Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix_proxy/trigger_depends.frm differ diff --git a/zbx_env/var/lib/mysql/zabbix_proxy/trigger_depends.ibd b/zbx_env/var/lib/mysql/zabbix_proxy/trigger_depends.ibd new file mode 100644 index 000000000..342bd33fb Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix_proxy/trigger_depends.ibd differ diff --git a/zbx_env/var/lib/mysql/zabbix_proxy/trigger_discovery.frm b/zbx_env/var/lib/mysql/zabbix_proxy/trigger_discovery.frm new file mode 100644 index 000000000..6308c846b Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix_proxy/trigger_discovery.frm differ diff --git a/zbx_env/var/lib/mysql/zabbix_proxy/trigger_discovery.ibd b/zbx_env/var/lib/mysql/zabbix_proxy/trigger_discovery.ibd new file mode 100644 index 000000000..37fd665d0 Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix_proxy/trigger_discovery.ibd differ diff --git a/zbx_env/var/lib/mysql/zabbix_proxy/trigger_tag.frm b/zbx_env/var/lib/mysql/zabbix_proxy/trigger_tag.frm new file mode 100644 index 000000000..458d7e3a4 Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix_proxy/trigger_tag.frm differ diff --git a/zbx_env/var/lib/mysql/zabbix_proxy/trigger_tag.ibd b/zbx_env/var/lib/mysql/zabbix_proxy/trigger_tag.ibd new file mode 100644 index 000000000..9f3114616 Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix_proxy/trigger_tag.ibd differ diff --git a/zbx_env/var/lib/mysql/zabbix_proxy/triggers.frm b/zbx_env/var/lib/mysql/zabbix_proxy/triggers.frm new file mode 100644 index 000000000..948860d2c Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix_proxy/triggers.frm differ diff --git a/zbx_env/var/lib/mysql/zabbix_proxy/triggers.ibd b/zbx_env/var/lib/mysql/zabbix_proxy/triggers.ibd new file mode 100644 index 000000000..246a08737 Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix_proxy/triggers.ibd differ diff --git a/zbx_env/var/lib/mysql/zabbix_proxy/users.frm b/zbx_env/var/lib/mysql/zabbix_proxy/users.frm new file mode 100644 index 000000000..e10628880 Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix_proxy/users.frm differ diff --git a/zbx_env/var/lib/mysql/zabbix_proxy/users.ibd b/zbx_env/var/lib/mysql/zabbix_proxy/users.ibd new file mode 100644 index 000000000..550d42215 Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix_proxy/users.ibd differ diff --git a/zbx_env/var/lib/mysql/zabbix_proxy/users_groups.frm b/zbx_env/var/lib/mysql/zabbix_proxy/users_groups.frm new file mode 100644 index 000000000..582b315f8 Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix_proxy/users_groups.frm differ diff --git a/zbx_env/var/lib/mysql/zabbix_proxy/users_groups.ibd b/zbx_env/var/lib/mysql/zabbix_proxy/users_groups.ibd new file mode 100644 index 000000000..dec1de0ae Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix_proxy/users_groups.ibd differ diff --git a/zbx_env/var/lib/mysql/zabbix_proxy/usrgrp.frm b/zbx_env/var/lib/mysql/zabbix_proxy/usrgrp.frm new file mode 100644 index 000000000..14593fb7c Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix_proxy/usrgrp.frm differ diff --git a/zbx_env/var/lib/mysql/zabbix_proxy/usrgrp.ibd b/zbx_env/var/lib/mysql/zabbix_proxy/usrgrp.ibd new file mode 100644 index 000000000..b0b52884e Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix_proxy/usrgrp.ibd differ diff --git a/zbx_env/var/lib/mysql/zabbix_proxy/valuemaps.frm b/zbx_env/var/lib/mysql/zabbix_proxy/valuemaps.frm new file mode 100644 index 000000000..e4be79379 Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix_proxy/valuemaps.frm differ diff --git a/zbx_env/var/lib/mysql/zabbix_proxy/valuemaps.ibd b/zbx_env/var/lib/mysql/zabbix_proxy/valuemaps.ibd new file mode 100644 index 000000000..397512c6f Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix_proxy/valuemaps.ibd differ diff --git a/zbx_env/var/lib/mysql/zabbix_proxy/widget.frm b/zbx_env/var/lib/mysql/zabbix_proxy/widget.frm new file mode 100644 index 000000000..4a3317548 Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix_proxy/widget.frm differ diff --git a/zbx_env/var/lib/mysql/zabbix_proxy/widget.ibd b/zbx_env/var/lib/mysql/zabbix_proxy/widget.ibd new file mode 100644 index 000000000..d1ecfd262 Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix_proxy/widget.ibd differ diff --git a/zbx_env/var/lib/mysql/zabbix_proxy/widget_field.frm b/zbx_env/var/lib/mysql/zabbix_proxy/widget_field.frm new file mode 100644 index 000000000..a63d03cdf Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix_proxy/widget_field.frm differ diff --git a/zbx_env/var/lib/mysql/zabbix_proxy/widget_field.ibd b/zbx_env/var/lib/mysql/zabbix_proxy/widget_field.ibd new file mode 100644 index 000000000..cae069e83 Binary files /dev/null and b/zbx_env/var/lib/mysql/zabbix_proxy/widget_field.ibd differ diff --git a/zbx_env/var/lib/postgresql/data/PG_VERSION b/zbx_env/var/lib/postgresql/data/PG_VERSION new file mode 100644 index 000000000..f599e28b8 --- /dev/null +++ b/zbx_env/var/lib/postgresql/data/PG_VERSION @@ -0,0 +1 @@ +10 diff --git a/zbx_env/var/lib/postgresql/data/base/1/112 b/zbx_env/var/lib/postgresql/data/base/1/112 new file mode 100644 index 000000000..8b130c348 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/1/112 differ diff --git a/zbx_env/var/lib/postgresql/data/base/1/113 b/zbx_env/var/lib/postgresql/data/base/1/113 new file mode 100644 index 000000000..aca9f3471 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/1/113 differ diff --git a/zbx_env/var/lib/postgresql/data/base/1/1247 b/zbx_env/var/lib/postgresql/data/base/1/1247 new file mode 100644 index 000000000..cd6a460f8 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/1/1247 differ diff --git a/zbx_env/var/lib/postgresql/data/base/1/1247_fsm b/zbx_env/var/lib/postgresql/data/base/1/1247_fsm new file mode 100644 index 000000000..2afa6c37d Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/1/1247_fsm differ diff --git a/zbx_env/var/lib/postgresql/data/base/1/1247_vm b/zbx_env/var/lib/postgresql/data/base/1/1247_vm new file mode 100644 index 000000000..ee2235651 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/1/1247_vm differ diff --git a/zbx_env/var/lib/postgresql/data/base/1/1249 b/zbx_env/var/lib/postgresql/data/base/1/1249 new file mode 100644 index 000000000..03ac5bae9 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/1/1249 differ diff --git a/zbx_env/var/lib/postgresql/data/base/1/1249_fsm b/zbx_env/var/lib/postgresql/data/base/1/1249_fsm new file mode 100644 index 000000000..620636091 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/1/1249_fsm differ diff --git a/zbx_env/var/lib/postgresql/data/base/1/1249_vm b/zbx_env/var/lib/postgresql/data/base/1/1249_vm new file mode 100644 index 000000000..dcac89013 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/1/1249_vm differ diff --git a/zbx_env/var/lib/postgresql/data/base/1/1255 b/zbx_env/var/lib/postgresql/data/base/1/1255 new file mode 100644 index 000000000..5db8ed232 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/1/1255 differ diff --git a/zbx_env/var/lib/postgresql/data/base/1/1255_fsm b/zbx_env/var/lib/postgresql/data/base/1/1255_fsm new file mode 100644 index 000000000..72da66c0e Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/1/1255_fsm differ diff --git a/zbx_env/var/lib/postgresql/data/base/1/1255_vm b/zbx_env/var/lib/postgresql/data/base/1/1255_vm new file mode 100644 index 000000000..ba43c4836 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/1/1255_vm differ diff --git a/zbx_env/var/lib/postgresql/data/base/1/1259 b/zbx_env/var/lib/postgresql/data/base/1/1259 new file mode 100644 index 000000000..fa008c711 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/1/1259 differ diff --git a/zbx_env/var/lib/postgresql/data/base/1/1259_fsm b/zbx_env/var/lib/postgresql/data/base/1/1259_fsm new file mode 100644 index 000000000..e172feb90 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/1/1259_fsm differ diff --git a/zbx_env/var/lib/postgresql/data/base/1/1259_vm b/zbx_env/var/lib/postgresql/data/base/1/1259_vm new file mode 100644 index 000000000..eba7a64a4 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/1/1259_vm differ diff --git a/zbx_env/var/lib/postgresql/data/base/1/12829 b/zbx_env/var/lib/postgresql/data/base/1/12829 new file mode 100644 index 000000000..ac7e7e56a Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/1/12829 differ diff --git a/zbx_env/var/lib/postgresql/data/base/1/12829_fsm b/zbx_env/var/lib/postgresql/data/base/1/12829_fsm new file mode 100644 index 000000000..19948ba3d Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/1/12829_fsm differ diff --git a/zbx_env/var/lib/postgresql/data/base/1/12829_vm b/zbx_env/var/lib/postgresql/data/base/1/12829_vm new file mode 100644 index 000000000..648054e0f Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/1/12829_vm differ diff --git a/zbx_env/var/lib/postgresql/data/base/1/12831 b/zbx_env/var/lib/postgresql/data/base/1/12831 new file mode 100644 index 000000000..e69de29bb diff --git a/zbx_env/var/lib/postgresql/data/base/1/12833 b/zbx_env/var/lib/postgresql/data/base/1/12833 new file mode 100644 index 000000000..5efdd5c62 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/1/12833 differ diff --git a/zbx_env/var/lib/postgresql/data/base/1/12834 b/zbx_env/var/lib/postgresql/data/base/1/12834 new file mode 100644 index 000000000..6147c7e0a Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/1/12834 differ diff --git a/zbx_env/var/lib/postgresql/data/base/1/12834_fsm b/zbx_env/var/lib/postgresql/data/base/1/12834_fsm new file mode 100644 index 000000000..ce7c26eb6 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/1/12834_fsm differ diff --git a/zbx_env/var/lib/postgresql/data/base/1/12834_vm b/zbx_env/var/lib/postgresql/data/base/1/12834_vm new file mode 100644 index 000000000..025df3da1 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/1/12834_vm differ diff --git a/zbx_env/var/lib/postgresql/data/base/1/12836 b/zbx_env/var/lib/postgresql/data/base/1/12836 new file mode 100644 index 000000000..e69de29bb diff --git a/zbx_env/var/lib/postgresql/data/base/1/12838 b/zbx_env/var/lib/postgresql/data/base/1/12838 new file mode 100644 index 000000000..ab2a70f83 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/1/12838 differ diff --git a/zbx_env/var/lib/postgresql/data/base/1/12839 b/zbx_env/var/lib/postgresql/data/base/1/12839 new file mode 100644 index 000000000..5c80dacb3 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/1/12839 differ diff --git a/zbx_env/var/lib/postgresql/data/base/1/12839_fsm b/zbx_env/var/lib/postgresql/data/base/1/12839_fsm new file mode 100644 index 000000000..98dc620ab Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/1/12839_fsm differ diff --git a/zbx_env/var/lib/postgresql/data/base/1/12839_vm b/zbx_env/var/lib/postgresql/data/base/1/12839_vm new file mode 100644 index 000000000..602207e10 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/1/12839_vm differ diff --git a/zbx_env/var/lib/postgresql/data/base/1/12841 b/zbx_env/var/lib/postgresql/data/base/1/12841 new file mode 100644 index 000000000..e69de29bb diff --git a/zbx_env/var/lib/postgresql/data/base/1/12843 b/zbx_env/var/lib/postgresql/data/base/1/12843 new file mode 100644 index 000000000..01f3abd46 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/1/12843 differ diff --git a/zbx_env/var/lib/postgresql/data/base/1/12844 b/zbx_env/var/lib/postgresql/data/base/1/12844 new file mode 100644 index 000000000..0d56ac3f3 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/1/12844 differ diff --git a/zbx_env/var/lib/postgresql/data/base/1/12844_fsm b/zbx_env/var/lib/postgresql/data/base/1/12844_fsm new file mode 100644 index 000000000..f8a0e258a Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/1/12844_fsm differ diff --git a/zbx_env/var/lib/postgresql/data/base/1/12844_vm b/zbx_env/var/lib/postgresql/data/base/1/12844_vm new file mode 100644 index 000000000..a853e6e13 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/1/12844_vm differ diff --git a/zbx_env/var/lib/postgresql/data/base/1/12846 b/zbx_env/var/lib/postgresql/data/base/1/12846 new file mode 100644 index 000000000..e69de29bb diff --git a/zbx_env/var/lib/postgresql/data/base/1/12848 b/zbx_env/var/lib/postgresql/data/base/1/12848 new file mode 100644 index 000000000..a3e9f3820 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/1/12848 differ diff --git a/zbx_env/var/lib/postgresql/data/base/1/12849 b/zbx_env/var/lib/postgresql/data/base/1/12849 new file mode 100644 index 000000000..3db9a1627 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/1/12849 differ diff --git a/zbx_env/var/lib/postgresql/data/base/1/12849_fsm b/zbx_env/var/lib/postgresql/data/base/1/12849_fsm new file mode 100644 index 000000000..ecbfaee5e Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/1/12849_fsm differ diff --git a/zbx_env/var/lib/postgresql/data/base/1/12849_vm b/zbx_env/var/lib/postgresql/data/base/1/12849_vm new file mode 100644 index 000000000..dddd66103 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/1/12849_vm differ diff --git a/zbx_env/var/lib/postgresql/data/base/1/12851 b/zbx_env/var/lib/postgresql/data/base/1/12851 new file mode 100644 index 000000000..e69de29bb diff --git a/zbx_env/var/lib/postgresql/data/base/1/12853 b/zbx_env/var/lib/postgresql/data/base/1/12853 new file mode 100644 index 000000000..4c0a3393e Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/1/12853 differ diff --git a/zbx_env/var/lib/postgresql/data/base/1/12854 b/zbx_env/var/lib/postgresql/data/base/1/12854 new file mode 100644 index 000000000..afc566762 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/1/12854 differ diff --git a/zbx_env/var/lib/postgresql/data/base/1/12854_fsm b/zbx_env/var/lib/postgresql/data/base/1/12854_fsm new file mode 100644 index 000000000..a836ddf75 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/1/12854_fsm differ diff --git a/zbx_env/var/lib/postgresql/data/base/1/12854_vm b/zbx_env/var/lib/postgresql/data/base/1/12854_vm new file mode 100644 index 000000000..763cfb136 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/1/12854_vm differ diff --git a/zbx_env/var/lib/postgresql/data/base/1/12856 b/zbx_env/var/lib/postgresql/data/base/1/12856 new file mode 100644 index 000000000..e69de29bb diff --git a/zbx_env/var/lib/postgresql/data/base/1/12858 b/zbx_env/var/lib/postgresql/data/base/1/12858 new file mode 100644 index 000000000..e81edf7b4 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/1/12858 differ diff --git a/zbx_env/var/lib/postgresql/data/base/1/12859 b/zbx_env/var/lib/postgresql/data/base/1/12859 new file mode 100644 index 000000000..e69de29bb diff --git a/zbx_env/var/lib/postgresql/data/base/1/12861 b/zbx_env/var/lib/postgresql/data/base/1/12861 new file mode 100644 index 000000000..e69de29bb diff --git a/zbx_env/var/lib/postgresql/data/base/1/12863 b/zbx_env/var/lib/postgresql/data/base/1/12863 new file mode 100644 index 000000000..d4d51b3d9 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/1/12863 differ diff --git a/zbx_env/var/lib/postgresql/data/base/1/1417 b/zbx_env/var/lib/postgresql/data/base/1/1417 new file mode 100644 index 000000000..e69de29bb diff --git a/zbx_env/var/lib/postgresql/data/base/1/1417_vm b/zbx_env/var/lib/postgresql/data/base/1/1417_vm new file mode 100644 index 000000000..e69de29bb diff --git a/zbx_env/var/lib/postgresql/data/base/1/1418 b/zbx_env/var/lib/postgresql/data/base/1/1418 new file mode 100644 index 000000000..e69de29bb diff --git a/zbx_env/var/lib/postgresql/data/base/1/1418_vm b/zbx_env/var/lib/postgresql/data/base/1/1418_vm new file mode 100644 index 000000000..e69de29bb diff --git a/zbx_env/var/lib/postgresql/data/base/1/174 b/zbx_env/var/lib/postgresql/data/base/1/174 new file mode 100644 index 000000000..edad2c14c Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/1/174 differ diff --git a/zbx_env/var/lib/postgresql/data/base/1/175 b/zbx_env/var/lib/postgresql/data/base/1/175 new file mode 100644 index 000000000..a8041c693 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/1/175 differ diff --git a/zbx_env/var/lib/postgresql/data/base/1/2187 b/zbx_env/var/lib/postgresql/data/base/1/2187 new file mode 100644 index 000000000..d39a0b782 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/1/2187 differ diff --git a/zbx_env/var/lib/postgresql/data/base/1/2224 b/zbx_env/var/lib/postgresql/data/base/1/2224 new file mode 100644 index 000000000..e69de29bb diff --git a/zbx_env/var/lib/postgresql/data/base/1/2224_vm b/zbx_env/var/lib/postgresql/data/base/1/2224_vm new file mode 100644 index 000000000..e69de29bb diff --git a/zbx_env/var/lib/postgresql/data/base/1/2328 b/zbx_env/var/lib/postgresql/data/base/1/2328 new file mode 100644 index 000000000..e69de29bb diff --git a/zbx_env/var/lib/postgresql/data/base/1/2328_vm b/zbx_env/var/lib/postgresql/data/base/1/2328_vm new file mode 100644 index 000000000..e69de29bb diff --git a/zbx_env/var/lib/postgresql/data/base/1/2336 b/zbx_env/var/lib/postgresql/data/base/1/2336 new file mode 100644 index 000000000..e69de29bb diff --git a/zbx_env/var/lib/postgresql/data/base/1/2336_vm b/zbx_env/var/lib/postgresql/data/base/1/2336_vm new file mode 100644 index 000000000..e69de29bb diff --git a/zbx_env/var/lib/postgresql/data/base/1/2337 b/zbx_env/var/lib/postgresql/data/base/1/2337 new file mode 100644 index 000000000..c16658041 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/1/2337 differ diff --git a/zbx_env/var/lib/postgresql/data/base/1/2600 b/zbx_env/var/lib/postgresql/data/base/1/2600 new file mode 100644 index 000000000..980d98e71 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/1/2600 differ diff --git a/zbx_env/var/lib/postgresql/data/base/1/2600_fsm b/zbx_env/var/lib/postgresql/data/base/1/2600_fsm new file mode 100644 index 000000000..e63ffab3e Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/1/2600_fsm differ diff --git a/zbx_env/var/lib/postgresql/data/base/1/2600_vm b/zbx_env/var/lib/postgresql/data/base/1/2600_vm new file mode 100644 index 000000000..be059bc07 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/1/2600_vm differ diff --git a/zbx_env/var/lib/postgresql/data/base/1/2601 b/zbx_env/var/lib/postgresql/data/base/1/2601 new file mode 100644 index 000000000..1d44fa56b Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/1/2601 differ diff --git a/zbx_env/var/lib/postgresql/data/base/1/2601_fsm b/zbx_env/var/lib/postgresql/data/base/1/2601_fsm new file mode 100644 index 000000000..0908076c0 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/1/2601_fsm differ diff --git a/zbx_env/var/lib/postgresql/data/base/1/2601_vm b/zbx_env/var/lib/postgresql/data/base/1/2601_vm new file mode 100644 index 000000000..2aa5dcdb5 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/1/2601_vm differ diff --git a/zbx_env/var/lib/postgresql/data/base/1/2602 b/zbx_env/var/lib/postgresql/data/base/1/2602 new file mode 100644 index 000000000..66f5754af Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/1/2602 differ diff --git a/zbx_env/var/lib/postgresql/data/base/1/2602_fsm b/zbx_env/var/lib/postgresql/data/base/1/2602_fsm new file mode 100644 index 000000000..5ed43b88a Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/1/2602_fsm differ diff --git a/zbx_env/var/lib/postgresql/data/base/1/2602_vm b/zbx_env/var/lib/postgresql/data/base/1/2602_vm new file mode 100644 index 000000000..d1b65bdb8 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/1/2602_vm differ diff --git a/zbx_env/var/lib/postgresql/data/base/1/2603 b/zbx_env/var/lib/postgresql/data/base/1/2603 new file mode 100644 index 000000000..a51df6676 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/1/2603 differ diff --git a/zbx_env/var/lib/postgresql/data/base/1/2603_fsm b/zbx_env/var/lib/postgresql/data/base/1/2603_fsm new file mode 100644 index 000000000..f507d0e9f Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/1/2603_fsm differ diff --git a/zbx_env/var/lib/postgresql/data/base/1/2603_vm b/zbx_env/var/lib/postgresql/data/base/1/2603_vm new file mode 100644 index 000000000..95728db4a Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/1/2603_vm differ diff --git a/zbx_env/var/lib/postgresql/data/base/1/2604 b/zbx_env/var/lib/postgresql/data/base/1/2604 new file mode 100644 index 000000000..e69de29bb diff --git a/zbx_env/var/lib/postgresql/data/base/1/2604_vm b/zbx_env/var/lib/postgresql/data/base/1/2604_vm new file mode 100644 index 000000000..e69de29bb diff --git a/zbx_env/var/lib/postgresql/data/base/1/2605 b/zbx_env/var/lib/postgresql/data/base/1/2605 new file mode 100644 index 000000000..45f16c079 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/1/2605 differ diff --git a/zbx_env/var/lib/postgresql/data/base/1/2605_fsm b/zbx_env/var/lib/postgresql/data/base/1/2605_fsm new file mode 100644 index 000000000..c1b0e039f Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/1/2605_fsm differ diff --git a/zbx_env/var/lib/postgresql/data/base/1/2605_vm b/zbx_env/var/lib/postgresql/data/base/1/2605_vm new file mode 100644 index 000000000..bd231050a Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/1/2605_vm differ diff --git a/zbx_env/var/lib/postgresql/data/base/1/2606 b/zbx_env/var/lib/postgresql/data/base/1/2606 new file mode 100644 index 000000000..163eee21e Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/1/2606 differ diff --git a/zbx_env/var/lib/postgresql/data/base/1/2606_fsm b/zbx_env/var/lib/postgresql/data/base/1/2606_fsm new file mode 100644 index 000000000..d37e4dd05 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/1/2606_fsm differ diff --git a/zbx_env/var/lib/postgresql/data/base/1/2606_vm b/zbx_env/var/lib/postgresql/data/base/1/2606_vm new file mode 100644 index 000000000..4301f6b95 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/1/2606_vm differ diff --git a/zbx_env/var/lib/postgresql/data/base/1/2607 b/zbx_env/var/lib/postgresql/data/base/1/2607 new file mode 100644 index 000000000..1ecadcbc8 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/1/2607 differ diff --git a/zbx_env/var/lib/postgresql/data/base/1/2607_fsm b/zbx_env/var/lib/postgresql/data/base/1/2607_fsm new file mode 100644 index 000000000..5b066f1a3 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/1/2607_fsm differ diff --git a/zbx_env/var/lib/postgresql/data/base/1/2607_vm b/zbx_env/var/lib/postgresql/data/base/1/2607_vm new file mode 100644 index 000000000..913a86769 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/1/2607_vm differ diff --git a/zbx_env/var/lib/postgresql/data/base/1/2608 b/zbx_env/var/lib/postgresql/data/base/1/2608 new file mode 100644 index 000000000..49c4af1cd Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/1/2608 differ diff --git a/zbx_env/var/lib/postgresql/data/base/1/2608_fsm b/zbx_env/var/lib/postgresql/data/base/1/2608_fsm new file mode 100644 index 000000000..106a100e5 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/1/2608_fsm differ diff --git a/zbx_env/var/lib/postgresql/data/base/1/2608_vm b/zbx_env/var/lib/postgresql/data/base/1/2608_vm new file mode 100644 index 000000000..b4ec88c13 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/1/2608_vm differ diff --git a/zbx_env/var/lib/postgresql/data/base/1/2609 b/zbx_env/var/lib/postgresql/data/base/1/2609 new file mode 100644 index 000000000..55d48b226 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/1/2609 differ diff --git a/zbx_env/var/lib/postgresql/data/base/1/2609_fsm b/zbx_env/var/lib/postgresql/data/base/1/2609_fsm new file mode 100644 index 000000000..8fa6e5fa6 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/1/2609_fsm differ diff --git a/zbx_env/var/lib/postgresql/data/base/1/2609_vm b/zbx_env/var/lib/postgresql/data/base/1/2609_vm new file mode 100644 index 000000000..a459f2c88 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/1/2609_vm differ diff --git a/zbx_env/var/lib/postgresql/data/base/1/2610 b/zbx_env/var/lib/postgresql/data/base/1/2610 new file mode 100644 index 000000000..b2c1cffbb Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/1/2610 differ diff --git a/zbx_env/var/lib/postgresql/data/base/1/2610_fsm b/zbx_env/var/lib/postgresql/data/base/1/2610_fsm new file mode 100644 index 000000000..6a556770a Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/1/2610_fsm differ diff --git a/zbx_env/var/lib/postgresql/data/base/1/2610_vm b/zbx_env/var/lib/postgresql/data/base/1/2610_vm new file mode 100644 index 000000000..a2cb5435a Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/1/2610_vm differ diff --git a/zbx_env/var/lib/postgresql/data/base/1/2611 b/zbx_env/var/lib/postgresql/data/base/1/2611 new file mode 100644 index 000000000..e69de29bb diff --git a/zbx_env/var/lib/postgresql/data/base/1/2611_vm b/zbx_env/var/lib/postgresql/data/base/1/2611_vm new file mode 100644 index 000000000..e69de29bb diff --git a/zbx_env/var/lib/postgresql/data/base/1/2612 b/zbx_env/var/lib/postgresql/data/base/1/2612 new file mode 100644 index 000000000..92362df9a Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/1/2612 differ diff --git a/zbx_env/var/lib/postgresql/data/base/1/2612_fsm b/zbx_env/var/lib/postgresql/data/base/1/2612_fsm new file mode 100644 index 000000000..877976acf Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/1/2612_fsm differ diff --git a/zbx_env/var/lib/postgresql/data/base/1/2612_vm b/zbx_env/var/lib/postgresql/data/base/1/2612_vm new file mode 100644 index 000000000..27aad7785 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/1/2612_vm differ diff --git a/zbx_env/var/lib/postgresql/data/base/1/2613 b/zbx_env/var/lib/postgresql/data/base/1/2613 new file mode 100644 index 000000000..e69de29bb diff --git a/zbx_env/var/lib/postgresql/data/base/1/2613_vm b/zbx_env/var/lib/postgresql/data/base/1/2613_vm new file mode 100644 index 000000000..e69de29bb diff --git a/zbx_env/var/lib/postgresql/data/base/1/2615 b/zbx_env/var/lib/postgresql/data/base/1/2615 new file mode 100644 index 000000000..f81cca3d5 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/1/2615 differ diff --git a/zbx_env/var/lib/postgresql/data/base/1/2615_fsm b/zbx_env/var/lib/postgresql/data/base/1/2615_fsm new file mode 100644 index 000000000..948882ce6 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/1/2615_fsm differ diff --git a/zbx_env/var/lib/postgresql/data/base/1/2615_vm b/zbx_env/var/lib/postgresql/data/base/1/2615_vm new file mode 100644 index 000000000..0ceaa2a80 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/1/2615_vm differ diff --git a/zbx_env/var/lib/postgresql/data/base/1/2616 b/zbx_env/var/lib/postgresql/data/base/1/2616 new file mode 100644 index 000000000..19f42857d Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/1/2616 differ diff --git a/zbx_env/var/lib/postgresql/data/base/1/2616_fsm b/zbx_env/var/lib/postgresql/data/base/1/2616_fsm new file mode 100644 index 000000000..995a05b3c Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/1/2616_fsm differ diff --git a/zbx_env/var/lib/postgresql/data/base/1/2616_vm b/zbx_env/var/lib/postgresql/data/base/1/2616_vm new file mode 100644 index 000000000..dfb995f88 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/1/2616_vm differ diff --git a/zbx_env/var/lib/postgresql/data/base/1/2617 b/zbx_env/var/lib/postgresql/data/base/1/2617 new file mode 100644 index 000000000..d989d35e2 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/1/2617 differ diff --git a/zbx_env/var/lib/postgresql/data/base/1/2617_fsm b/zbx_env/var/lib/postgresql/data/base/1/2617_fsm new file mode 100644 index 000000000..cb2a806b3 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/1/2617_fsm differ diff --git a/zbx_env/var/lib/postgresql/data/base/1/2617_vm b/zbx_env/var/lib/postgresql/data/base/1/2617_vm new file mode 100644 index 000000000..678b7f7f3 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/1/2617_vm differ diff --git a/zbx_env/var/lib/postgresql/data/base/1/2618 b/zbx_env/var/lib/postgresql/data/base/1/2618 new file mode 100644 index 000000000..8a17c1706 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/1/2618 differ diff --git a/zbx_env/var/lib/postgresql/data/base/1/2618_fsm b/zbx_env/var/lib/postgresql/data/base/1/2618_fsm new file mode 100644 index 000000000..2379916aa Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/1/2618_fsm differ diff --git a/zbx_env/var/lib/postgresql/data/base/1/2618_vm b/zbx_env/var/lib/postgresql/data/base/1/2618_vm new file mode 100644 index 000000000..4b06dd76e Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/1/2618_vm differ diff --git a/zbx_env/var/lib/postgresql/data/base/1/2619 b/zbx_env/var/lib/postgresql/data/base/1/2619 new file mode 100644 index 000000000..c14ecd8fa Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/1/2619 differ diff --git a/zbx_env/var/lib/postgresql/data/base/1/2619_fsm b/zbx_env/var/lib/postgresql/data/base/1/2619_fsm new file mode 100644 index 000000000..81f80a5b6 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/1/2619_fsm differ diff --git a/zbx_env/var/lib/postgresql/data/base/1/2619_vm b/zbx_env/var/lib/postgresql/data/base/1/2619_vm new file mode 100644 index 000000000..554e94eb4 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/1/2619_vm differ diff --git a/zbx_env/var/lib/postgresql/data/base/1/2620 b/zbx_env/var/lib/postgresql/data/base/1/2620 new file mode 100644 index 000000000..e69de29bb diff --git a/zbx_env/var/lib/postgresql/data/base/1/2620_vm b/zbx_env/var/lib/postgresql/data/base/1/2620_vm new file mode 100644 index 000000000..e69de29bb diff --git a/zbx_env/var/lib/postgresql/data/base/1/2650 b/zbx_env/var/lib/postgresql/data/base/1/2650 new file mode 100644 index 000000000..8a0d71d50 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/1/2650 differ diff --git a/zbx_env/var/lib/postgresql/data/base/1/2651 b/zbx_env/var/lib/postgresql/data/base/1/2651 new file mode 100644 index 000000000..29e245e35 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/1/2651 differ diff --git a/zbx_env/var/lib/postgresql/data/base/1/2652 b/zbx_env/var/lib/postgresql/data/base/1/2652 new file mode 100644 index 000000000..9e26143e4 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/1/2652 differ diff --git a/zbx_env/var/lib/postgresql/data/base/1/2653 b/zbx_env/var/lib/postgresql/data/base/1/2653 new file mode 100644 index 000000000..e02db67df Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/1/2653 differ diff --git a/zbx_env/var/lib/postgresql/data/base/1/2654 b/zbx_env/var/lib/postgresql/data/base/1/2654 new file mode 100644 index 000000000..95363af10 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/1/2654 differ diff --git a/zbx_env/var/lib/postgresql/data/base/1/2655 b/zbx_env/var/lib/postgresql/data/base/1/2655 new file mode 100644 index 000000000..a9a12adf9 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/1/2655 differ diff --git a/zbx_env/var/lib/postgresql/data/base/1/2656 b/zbx_env/var/lib/postgresql/data/base/1/2656 new file mode 100644 index 000000000..ba509bf8d Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/1/2656 differ diff --git a/zbx_env/var/lib/postgresql/data/base/1/2657 b/zbx_env/var/lib/postgresql/data/base/1/2657 new file mode 100644 index 000000000..fbc747331 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/1/2657 differ diff --git a/zbx_env/var/lib/postgresql/data/base/1/2658 b/zbx_env/var/lib/postgresql/data/base/1/2658 new file mode 100644 index 000000000..d2ceec244 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/1/2658 differ diff --git a/zbx_env/var/lib/postgresql/data/base/1/2659 b/zbx_env/var/lib/postgresql/data/base/1/2659 new file mode 100644 index 000000000..1f1a4947f Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/1/2659 differ diff --git a/zbx_env/var/lib/postgresql/data/base/1/2660 b/zbx_env/var/lib/postgresql/data/base/1/2660 new file mode 100644 index 000000000..d16f41a42 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/1/2660 differ diff --git a/zbx_env/var/lib/postgresql/data/base/1/2661 b/zbx_env/var/lib/postgresql/data/base/1/2661 new file mode 100644 index 000000000..59ade838f Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/1/2661 differ diff --git a/zbx_env/var/lib/postgresql/data/base/1/2662 b/zbx_env/var/lib/postgresql/data/base/1/2662 new file mode 100644 index 000000000..6026eaac9 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/1/2662 differ diff --git a/zbx_env/var/lib/postgresql/data/base/1/2663 b/zbx_env/var/lib/postgresql/data/base/1/2663 new file mode 100644 index 000000000..7ce14003d Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/1/2663 differ diff --git a/zbx_env/var/lib/postgresql/data/base/1/2664 b/zbx_env/var/lib/postgresql/data/base/1/2664 new file mode 100644 index 000000000..c44bbad79 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/1/2664 differ diff --git a/zbx_env/var/lib/postgresql/data/base/1/2665 b/zbx_env/var/lib/postgresql/data/base/1/2665 new file mode 100644 index 000000000..63ca88a3e Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/1/2665 differ diff --git a/zbx_env/var/lib/postgresql/data/base/1/2666 b/zbx_env/var/lib/postgresql/data/base/1/2666 new file mode 100644 index 000000000..e7c92d1f5 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/1/2666 differ diff --git a/zbx_env/var/lib/postgresql/data/base/1/2667 b/zbx_env/var/lib/postgresql/data/base/1/2667 new file mode 100644 index 000000000..5755a624a Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/1/2667 differ diff --git a/zbx_env/var/lib/postgresql/data/base/1/2668 b/zbx_env/var/lib/postgresql/data/base/1/2668 new file mode 100644 index 000000000..11a6b5270 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/1/2668 differ diff --git a/zbx_env/var/lib/postgresql/data/base/1/2669 b/zbx_env/var/lib/postgresql/data/base/1/2669 new file mode 100644 index 000000000..79d31ebcc Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/1/2669 differ diff --git a/zbx_env/var/lib/postgresql/data/base/1/2670 b/zbx_env/var/lib/postgresql/data/base/1/2670 new file mode 100644 index 000000000..6184b908d Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/1/2670 differ diff --git a/zbx_env/var/lib/postgresql/data/base/1/2673 b/zbx_env/var/lib/postgresql/data/base/1/2673 new file mode 100644 index 000000000..7f74fdd5c Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/1/2673 differ diff --git a/zbx_env/var/lib/postgresql/data/base/1/2674 b/zbx_env/var/lib/postgresql/data/base/1/2674 new file mode 100644 index 000000000..1fb21fcba Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/1/2674 differ diff --git a/zbx_env/var/lib/postgresql/data/base/1/2675 b/zbx_env/var/lib/postgresql/data/base/1/2675 new file mode 100644 index 000000000..c88a53bd5 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/1/2675 differ diff --git a/zbx_env/var/lib/postgresql/data/base/1/2678 b/zbx_env/var/lib/postgresql/data/base/1/2678 new file mode 100644 index 000000000..5239feded Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/1/2678 differ diff --git a/zbx_env/var/lib/postgresql/data/base/1/2679 b/zbx_env/var/lib/postgresql/data/base/1/2679 new file mode 100644 index 000000000..cb7b561bb Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/1/2679 differ diff --git a/zbx_env/var/lib/postgresql/data/base/1/2680 b/zbx_env/var/lib/postgresql/data/base/1/2680 new file mode 100644 index 000000000..876da95b2 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/1/2680 differ diff --git a/zbx_env/var/lib/postgresql/data/base/1/2681 b/zbx_env/var/lib/postgresql/data/base/1/2681 new file mode 100644 index 000000000..4987623fd Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/1/2681 differ diff --git a/zbx_env/var/lib/postgresql/data/base/1/2682 b/zbx_env/var/lib/postgresql/data/base/1/2682 new file mode 100644 index 000000000..7943e766e Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/1/2682 differ diff --git a/zbx_env/var/lib/postgresql/data/base/1/2683 b/zbx_env/var/lib/postgresql/data/base/1/2683 new file mode 100644 index 000000000..636f10144 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/1/2683 differ diff --git a/zbx_env/var/lib/postgresql/data/base/1/2684 b/zbx_env/var/lib/postgresql/data/base/1/2684 new file mode 100644 index 000000000..f54f9598d Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/1/2684 differ diff --git a/zbx_env/var/lib/postgresql/data/base/1/2685 b/zbx_env/var/lib/postgresql/data/base/1/2685 new file mode 100644 index 000000000..95d7fde28 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/1/2685 differ diff --git a/zbx_env/var/lib/postgresql/data/base/1/2686 b/zbx_env/var/lib/postgresql/data/base/1/2686 new file mode 100644 index 000000000..bc86cec09 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/1/2686 differ diff --git a/zbx_env/var/lib/postgresql/data/base/1/2687 b/zbx_env/var/lib/postgresql/data/base/1/2687 new file mode 100644 index 000000000..f080504d5 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/1/2687 differ diff --git a/zbx_env/var/lib/postgresql/data/base/1/2688 b/zbx_env/var/lib/postgresql/data/base/1/2688 new file mode 100644 index 000000000..47572a662 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/1/2688 differ diff --git a/zbx_env/var/lib/postgresql/data/base/1/2689 b/zbx_env/var/lib/postgresql/data/base/1/2689 new file mode 100644 index 000000000..4333d769f Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/1/2689 differ diff --git a/zbx_env/var/lib/postgresql/data/base/1/2690 b/zbx_env/var/lib/postgresql/data/base/1/2690 new file mode 100644 index 000000000..89fab01a4 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/1/2690 differ diff --git a/zbx_env/var/lib/postgresql/data/base/1/2691 b/zbx_env/var/lib/postgresql/data/base/1/2691 new file mode 100644 index 000000000..08dade0dd Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/1/2691 differ diff --git a/zbx_env/var/lib/postgresql/data/base/1/2692 b/zbx_env/var/lib/postgresql/data/base/1/2692 new file mode 100644 index 000000000..150467201 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/1/2692 differ diff --git a/zbx_env/var/lib/postgresql/data/base/1/2693 b/zbx_env/var/lib/postgresql/data/base/1/2693 new file mode 100644 index 000000000..ef76c5b32 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/1/2693 differ diff --git a/zbx_env/var/lib/postgresql/data/base/1/2696 b/zbx_env/var/lib/postgresql/data/base/1/2696 new file mode 100644 index 000000000..69014bb1f Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/1/2696 differ diff --git a/zbx_env/var/lib/postgresql/data/base/1/2699 b/zbx_env/var/lib/postgresql/data/base/1/2699 new file mode 100644 index 000000000..9a9b94663 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/1/2699 differ diff --git a/zbx_env/var/lib/postgresql/data/base/1/2701 b/zbx_env/var/lib/postgresql/data/base/1/2701 new file mode 100644 index 000000000..0376dbefa Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/1/2701 differ diff --git a/zbx_env/var/lib/postgresql/data/base/1/2702 b/zbx_env/var/lib/postgresql/data/base/1/2702 new file mode 100644 index 000000000..b2e4287f6 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/1/2702 differ diff --git a/zbx_env/var/lib/postgresql/data/base/1/2703 b/zbx_env/var/lib/postgresql/data/base/1/2703 new file mode 100644 index 000000000..d7477ab76 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/1/2703 differ diff --git a/zbx_env/var/lib/postgresql/data/base/1/2704 b/zbx_env/var/lib/postgresql/data/base/1/2704 new file mode 100644 index 000000000..a18deab09 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/1/2704 differ diff --git a/zbx_env/var/lib/postgresql/data/base/1/2753 b/zbx_env/var/lib/postgresql/data/base/1/2753 new file mode 100644 index 000000000..73f903165 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/1/2753 differ diff --git a/zbx_env/var/lib/postgresql/data/base/1/2753_fsm b/zbx_env/var/lib/postgresql/data/base/1/2753_fsm new file mode 100644 index 000000000..0787df53d Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/1/2753_fsm differ diff --git a/zbx_env/var/lib/postgresql/data/base/1/2753_vm b/zbx_env/var/lib/postgresql/data/base/1/2753_vm new file mode 100644 index 000000000..6c8ced900 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/1/2753_vm differ diff --git a/zbx_env/var/lib/postgresql/data/base/1/2754 b/zbx_env/var/lib/postgresql/data/base/1/2754 new file mode 100644 index 000000000..5a44a7962 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/1/2754 differ diff --git a/zbx_env/var/lib/postgresql/data/base/1/2755 b/zbx_env/var/lib/postgresql/data/base/1/2755 new file mode 100644 index 000000000..fac11c420 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/1/2755 differ diff --git a/zbx_env/var/lib/postgresql/data/base/1/2756 b/zbx_env/var/lib/postgresql/data/base/1/2756 new file mode 100644 index 000000000..5b9bc166b Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/1/2756 differ diff --git a/zbx_env/var/lib/postgresql/data/base/1/2757 b/zbx_env/var/lib/postgresql/data/base/1/2757 new file mode 100644 index 000000000..1bade66ff Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/1/2757 differ diff --git a/zbx_env/var/lib/postgresql/data/base/1/2830 b/zbx_env/var/lib/postgresql/data/base/1/2830 new file mode 100644 index 000000000..e69de29bb diff --git a/zbx_env/var/lib/postgresql/data/base/1/2830_vm b/zbx_env/var/lib/postgresql/data/base/1/2830_vm new file mode 100644 index 000000000..e69de29bb diff --git a/zbx_env/var/lib/postgresql/data/base/1/2831 b/zbx_env/var/lib/postgresql/data/base/1/2831 new file mode 100644 index 000000000..b0c0ed88c Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/1/2831 differ diff --git a/zbx_env/var/lib/postgresql/data/base/1/2832 b/zbx_env/var/lib/postgresql/data/base/1/2832 new file mode 100644 index 000000000..e69de29bb diff --git a/zbx_env/var/lib/postgresql/data/base/1/2832_vm b/zbx_env/var/lib/postgresql/data/base/1/2832_vm new file mode 100644 index 000000000..e69de29bb diff --git a/zbx_env/var/lib/postgresql/data/base/1/2833 b/zbx_env/var/lib/postgresql/data/base/1/2833 new file mode 100644 index 000000000..e70ee62b0 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/1/2833 differ diff --git a/zbx_env/var/lib/postgresql/data/base/1/2834 b/zbx_env/var/lib/postgresql/data/base/1/2834 new file mode 100644 index 000000000..e69de29bb diff --git a/zbx_env/var/lib/postgresql/data/base/1/2834_vm b/zbx_env/var/lib/postgresql/data/base/1/2834_vm new file mode 100644 index 000000000..e69de29bb diff --git a/zbx_env/var/lib/postgresql/data/base/1/2835 b/zbx_env/var/lib/postgresql/data/base/1/2835 new file mode 100644 index 000000000..c65e18b5e Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/1/2835 differ diff --git a/zbx_env/var/lib/postgresql/data/base/1/2836 b/zbx_env/var/lib/postgresql/data/base/1/2836 new file mode 100644 index 000000000..e69de29bb diff --git a/zbx_env/var/lib/postgresql/data/base/1/2836_vm b/zbx_env/var/lib/postgresql/data/base/1/2836_vm new file mode 100644 index 000000000..e69de29bb diff --git a/zbx_env/var/lib/postgresql/data/base/1/2837 b/zbx_env/var/lib/postgresql/data/base/1/2837 new file mode 100644 index 000000000..4ef00f573 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/1/2837 differ diff --git a/zbx_env/var/lib/postgresql/data/base/1/2838 b/zbx_env/var/lib/postgresql/data/base/1/2838 new file mode 100644 index 000000000..5efb4501d Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/1/2838 differ diff --git a/zbx_env/var/lib/postgresql/data/base/1/2838_fsm b/zbx_env/var/lib/postgresql/data/base/1/2838_fsm new file mode 100644 index 000000000..72ba496ec Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/1/2838_fsm differ diff --git a/zbx_env/var/lib/postgresql/data/base/1/2838_vm b/zbx_env/var/lib/postgresql/data/base/1/2838_vm new file mode 100644 index 000000000..962055edb Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/1/2838_vm differ diff --git a/zbx_env/var/lib/postgresql/data/base/1/2839 b/zbx_env/var/lib/postgresql/data/base/1/2839 new file mode 100644 index 000000000..9b1c1e571 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/1/2839 differ diff --git a/zbx_env/var/lib/postgresql/data/base/1/2840 b/zbx_env/var/lib/postgresql/data/base/1/2840 new file mode 100644 index 000000000..840ad144c Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/1/2840 differ diff --git a/zbx_env/var/lib/postgresql/data/base/1/2840_fsm b/zbx_env/var/lib/postgresql/data/base/1/2840_fsm new file mode 100644 index 000000000..7d14d0cfe Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/1/2840_fsm differ diff --git a/zbx_env/var/lib/postgresql/data/base/1/2840_vm b/zbx_env/var/lib/postgresql/data/base/1/2840_vm new file mode 100644 index 000000000..fee0e0473 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/1/2840_vm differ diff --git a/zbx_env/var/lib/postgresql/data/base/1/2841 b/zbx_env/var/lib/postgresql/data/base/1/2841 new file mode 100644 index 000000000..44212c4cd Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/1/2841 differ diff --git a/zbx_env/var/lib/postgresql/data/base/1/2995 b/zbx_env/var/lib/postgresql/data/base/1/2995 new file mode 100644 index 000000000..e69de29bb diff --git a/zbx_env/var/lib/postgresql/data/base/1/2995_vm b/zbx_env/var/lib/postgresql/data/base/1/2995_vm new file mode 100644 index 000000000..e69de29bb diff --git a/zbx_env/var/lib/postgresql/data/base/1/2996 b/zbx_env/var/lib/postgresql/data/base/1/2996 new file mode 100644 index 000000000..a1e392a5f Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/1/2996 differ diff --git a/zbx_env/var/lib/postgresql/data/base/1/3079 b/zbx_env/var/lib/postgresql/data/base/1/3079 new file mode 100644 index 000000000..2ac5237cb Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/1/3079 differ diff --git a/zbx_env/var/lib/postgresql/data/base/1/3079_fsm b/zbx_env/var/lib/postgresql/data/base/1/3079_fsm new file mode 100644 index 000000000..7732d22b7 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/1/3079_fsm differ diff --git a/zbx_env/var/lib/postgresql/data/base/1/3079_vm b/zbx_env/var/lib/postgresql/data/base/1/3079_vm new file mode 100644 index 000000000..44a2ff91e Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/1/3079_vm differ diff --git a/zbx_env/var/lib/postgresql/data/base/1/3080 b/zbx_env/var/lib/postgresql/data/base/1/3080 new file mode 100644 index 000000000..91f8d4902 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/1/3080 differ diff --git a/zbx_env/var/lib/postgresql/data/base/1/3081 b/zbx_env/var/lib/postgresql/data/base/1/3081 new file mode 100644 index 000000000..8bc74ec63 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/1/3081 differ diff --git a/zbx_env/var/lib/postgresql/data/base/1/3085 b/zbx_env/var/lib/postgresql/data/base/1/3085 new file mode 100644 index 000000000..05c256fa5 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/1/3085 differ diff --git a/zbx_env/var/lib/postgresql/data/base/1/3118 b/zbx_env/var/lib/postgresql/data/base/1/3118 new file mode 100644 index 000000000..e69de29bb diff --git a/zbx_env/var/lib/postgresql/data/base/1/3118_vm b/zbx_env/var/lib/postgresql/data/base/1/3118_vm new file mode 100644 index 000000000..e69de29bb diff --git a/zbx_env/var/lib/postgresql/data/base/1/3119 b/zbx_env/var/lib/postgresql/data/base/1/3119 new file mode 100644 index 000000000..cdf9c180f Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/1/3119 differ diff --git a/zbx_env/var/lib/postgresql/data/base/1/3164 b/zbx_env/var/lib/postgresql/data/base/1/3164 new file mode 100644 index 000000000..a58c39469 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/1/3164 differ diff --git a/zbx_env/var/lib/postgresql/data/base/1/3256 b/zbx_env/var/lib/postgresql/data/base/1/3256 new file mode 100644 index 000000000..e69de29bb diff --git a/zbx_env/var/lib/postgresql/data/base/1/3256_vm b/zbx_env/var/lib/postgresql/data/base/1/3256_vm new file mode 100644 index 000000000..e69de29bb diff --git a/zbx_env/var/lib/postgresql/data/base/1/3257 b/zbx_env/var/lib/postgresql/data/base/1/3257 new file mode 100644 index 000000000..fb1ff935a Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/1/3257 differ diff --git a/zbx_env/var/lib/postgresql/data/base/1/3258 b/zbx_env/var/lib/postgresql/data/base/1/3258 new file mode 100644 index 000000000..0b6aca02a Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/1/3258 differ diff --git a/zbx_env/var/lib/postgresql/data/base/1/3350 b/zbx_env/var/lib/postgresql/data/base/1/3350 new file mode 100644 index 000000000..e69de29bb diff --git a/zbx_env/var/lib/postgresql/data/base/1/3350_vm b/zbx_env/var/lib/postgresql/data/base/1/3350_vm new file mode 100644 index 000000000..e69de29bb diff --git a/zbx_env/var/lib/postgresql/data/base/1/3351 b/zbx_env/var/lib/postgresql/data/base/1/3351 new file mode 100644 index 000000000..485a7f339 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/1/3351 differ diff --git a/zbx_env/var/lib/postgresql/data/base/1/3379 b/zbx_env/var/lib/postgresql/data/base/1/3379 new file mode 100644 index 000000000..2b3165f78 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/1/3379 differ diff --git a/zbx_env/var/lib/postgresql/data/base/1/3380 b/zbx_env/var/lib/postgresql/data/base/1/3380 new file mode 100644 index 000000000..262c95057 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/1/3380 differ diff --git a/zbx_env/var/lib/postgresql/data/base/1/3381 b/zbx_env/var/lib/postgresql/data/base/1/3381 new file mode 100644 index 000000000..e69de29bb diff --git a/zbx_env/var/lib/postgresql/data/base/1/3381_vm b/zbx_env/var/lib/postgresql/data/base/1/3381_vm new file mode 100644 index 000000000..e69de29bb diff --git a/zbx_env/var/lib/postgresql/data/base/1/3394 b/zbx_env/var/lib/postgresql/data/base/1/3394 new file mode 100644 index 000000000..b6a9edeae Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/1/3394 differ diff --git a/zbx_env/var/lib/postgresql/data/base/1/3394_fsm b/zbx_env/var/lib/postgresql/data/base/1/3394_fsm new file mode 100644 index 000000000..9bf23e33a Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/1/3394_fsm differ diff --git a/zbx_env/var/lib/postgresql/data/base/1/3394_vm b/zbx_env/var/lib/postgresql/data/base/1/3394_vm new file mode 100644 index 000000000..450f3d7c2 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/1/3394_vm differ diff --git a/zbx_env/var/lib/postgresql/data/base/1/3395 b/zbx_env/var/lib/postgresql/data/base/1/3395 new file mode 100644 index 000000000..5bd6238c1 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/1/3395 differ diff --git a/zbx_env/var/lib/postgresql/data/base/1/3439 b/zbx_env/var/lib/postgresql/data/base/1/3439 new file mode 100644 index 000000000..e69de29bb diff --git a/zbx_env/var/lib/postgresql/data/base/1/3439_vm b/zbx_env/var/lib/postgresql/data/base/1/3439_vm new file mode 100644 index 000000000..e69de29bb diff --git a/zbx_env/var/lib/postgresql/data/base/1/3440 b/zbx_env/var/lib/postgresql/data/base/1/3440 new file mode 100644 index 000000000..bae4de162 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/1/3440 differ diff --git a/zbx_env/var/lib/postgresql/data/base/1/3455 b/zbx_env/var/lib/postgresql/data/base/1/3455 new file mode 100644 index 000000000..0f1a7376e Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/1/3455 differ diff --git a/zbx_env/var/lib/postgresql/data/base/1/3456 b/zbx_env/var/lib/postgresql/data/base/1/3456 new file mode 100644 index 000000000..2bc0341f9 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/1/3456 differ diff --git a/zbx_env/var/lib/postgresql/data/base/1/3456_fsm b/zbx_env/var/lib/postgresql/data/base/1/3456_fsm new file mode 100644 index 000000000..ea43ee9d4 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/1/3456_fsm differ diff --git a/zbx_env/var/lib/postgresql/data/base/1/3456_vm b/zbx_env/var/lib/postgresql/data/base/1/3456_vm new file mode 100644 index 000000000..7ac9233fc Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/1/3456_vm differ diff --git a/zbx_env/var/lib/postgresql/data/base/1/3466 b/zbx_env/var/lib/postgresql/data/base/1/3466 new file mode 100644 index 000000000..e69de29bb diff --git a/zbx_env/var/lib/postgresql/data/base/1/3466_vm b/zbx_env/var/lib/postgresql/data/base/1/3466_vm new file mode 100644 index 000000000..e69de29bb diff --git a/zbx_env/var/lib/postgresql/data/base/1/3467 b/zbx_env/var/lib/postgresql/data/base/1/3467 new file mode 100644 index 000000000..d28a66e55 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/1/3467 differ diff --git a/zbx_env/var/lib/postgresql/data/base/1/3468 b/zbx_env/var/lib/postgresql/data/base/1/3468 new file mode 100644 index 000000000..79b6e9472 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/1/3468 differ diff --git a/zbx_env/var/lib/postgresql/data/base/1/3501 b/zbx_env/var/lib/postgresql/data/base/1/3501 new file mode 100644 index 000000000..e69de29bb diff --git a/zbx_env/var/lib/postgresql/data/base/1/3501_vm b/zbx_env/var/lib/postgresql/data/base/1/3501_vm new file mode 100644 index 000000000..e69de29bb diff --git a/zbx_env/var/lib/postgresql/data/base/1/3502 b/zbx_env/var/lib/postgresql/data/base/1/3502 new file mode 100644 index 000000000..061a18dc6 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/1/3502 differ diff --git a/zbx_env/var/lib/postgresql/data/base/1/3503 b/zbx_env/var/lib/postgresql/data/base/1/3503 new file mode 100644 index 000000000..ebd24c5cb Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/1/3503 differ diff --git a/zbx_env/var/lib/postgresql/data/base/1/3534 b/zbx_env/var/lib/postgresql/data/base/1/3534 new file mode 100644 index 000000000..4fdd31ed7 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/1/3534 differ diff --git a/zbx_env/var/lib/postgresql/data/base/1/3541 b/zbx_env/var/lib/postgresql/data/base/1/3541 new file mode 100644 index 000000000..ad69913a9 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/1/3541 differ diff --git a/zbx_env/var/lib/postgresql/data/base/1/3541_fsm b/zbx_env/var/lib/postgresql/data/base/1/3541_fsm new file mode 100644 index 000000000..62f015667 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/1/3541_fsm differ diff --git a/zbx_env/var/lib/postgresql/data/base/1/3541_vm b/zbx_env/var/lib/postgresql/data/base/1/3541_vm new file mode 100644 index 000000000..338f46301 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/1/3541_vm differ diff --git a/zbx_env/var/lib/postgresql/data/base/1/3542 b/zbx_env/var/lib/postgresql/data/base/1/3542 new file mode 100644 index 000000000..bf7c3330f Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/1/3542 differ diff --git a/zbx_env/var/lib/postgresql/data/base/1/3574 b/zbx_env/var/lib/postgresql/data/base/1/3574 new file mode 100644 index 000000000..0861ca0e2 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/1/3574 differ diff --git a/zbx_env/var/lib/postgresql/data/base/1/3575 b/zbx_env/var/lib/postgresql/data/base/1/3575 new file mode 100644 index 000000000..2b57a8ed5 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/1/3575 differ diff --git a/zbx_env/var/lib/postgresql/data/base/1/3576 b/zbx_env/var/lib/postgresql/data/base/1/3576 new file mode 100644 index 000000000..e69de29bb diff --git a/zbx_env/var/lib/postgresql/data/base/1/3576_vm b/zbx_env/var/lib/postgresql/data/base/1/3576_vm new file mode 100644 index 000000000..e69de29bb diff --git a/zbx_env/var/lib/postgresql/data/base/1/3596 b/zbx_env/var/lib/postgresql/data/base/1/3596 new file mode 100644 index 000000000..e69de29bb diff --git a/zbx_env/var/lib/postgresql/data/base/1/3596_vm b/zbx_env/var/lib/postgresql/data/base/1/3596_vm new file mode 100644 index 000000000..e69de29bb diff --git a/zbx_env/var/lib/postgresql/data/base/1/3597 b/zbx_env/var/lib/postgresql/data/base/1/3597 new file mode 100644 index 000000000..8684c812e Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/1/3597 differ diff --git a/zbx_env/var/lib/postgresql/data/base/1/3598 b/zbx_env/var/lib/postgresql/data/base/1/3598 new file mode 100644 index 000000000..e69de29bb diff --git a/zbx_env/var/lib/postgresql/data/base/1/3598_vm b/zbx_env/var/lib/postgresql/data/base/1/3598_vm new file mode 100644 index 000000000..e69de29bb diff --git a/zbx_env/var/lib/postgresql/data/base/1/3599 b/zbx_env/var/lib/postgresql/data/base/1/3599 new file mode 100644 index 000000000..d48e4a663 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/1/3599 differ diff --git a/zbx_env/var/lib/postgresql/data/base/1/3600 b/zbx_env/var/lib/postgresql/data/base/1/3600 new file mode 100644 index 000000000..6f5b9c650 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/1/3600 differ diff --git a/zbx_env/var/lib/postgresql/data/base/1/3600_fsm b/zbx_env/var/lib/postgresql/data/base/1/3600_fsm new file mode 100644 index 000000000..ffd4b1594 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/1/3600_fsm differ diff --git a/zbx_env/var/lib/postgresql/data/base/1/3600_vm b/zbx_env/var/lib/postgresql/data/base/1/3600_vm new file mode 100644 index 000000000..eda7dfa8b Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/1/3600_vm differ diff --git a/zbx_env/var/lib/postgresql/data/base/1/3601 b/zbx_env/var/lib/postgresql/data/base/1/3601 new file mode 100644 index 000000000..065e4e19a Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/1/3601 differ diff --git a/zbx_env/var/lib/postgresql/data/base/1/3601_fsm b/zbx_env/var/lib/postgresql/data/base/1/3601_fsm new file mode 100644 index 000000000..7732d22b7 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/1/3601_fsm differ diff --git a/zbx_env/var/lib/postgresql/data/base/1/3601_vm b/zbx_env/var/lib/postgresql/data/base/1/3601_vm new file mode 100644 index 000000000..ccebc9717 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/1/3601_vm differ diff --git a/zbx_env/var/lib/postgresql/data/base/1/3602 b/zbx_env/var/lib/postgresql/data/base/1/3602 new file mode 100644 index 000000000..a4991530e Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/1/3602 differ diff --git a/zbx_env/var/lib/postgresql/data/base/1/3602_fsm b/zbx_env/var/lib/postgresql/data/base/1/3602_fsm new file mode 100644 index 000000000..7cbf83404 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/1/3602_fsm differ diff --git a/zbx_env/var/lib/postgresql/data/base/1/3602_vm b/zbx_env/var/lib/postgresql/data/base/1/3602_vm new file mode 100644 index 000000000..51db8d829 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/1/3602_vm differ diff --git a/zbx_env/var/lib/postgresql/data/base/1/3603 b/zbx_env/var/lib/postgresql/data/base/1/3603 new file mode 100644 index 000000000..7ec261796 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/1/3603 differ diff --git a/zbx_env/var/lib/postgresql/data/base/1/3603_fsm b/zbx_env/var/lib/postgresql/data/base/1/3603_fsm new file mode 100644 index 000000000..6d00d6859 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/1/3603_fsm differ diff --git a/zbx_env/var/lib/postgresql/data/base/1/3603_vm b/zbx_env/var/lib/postgresql/data/base/1/3603_vm new file mode 100644 index 000000000..d7c5456fe Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/1/3603_vm differ diff --git a/zbx_env/var/lib/postgresql/data/base/1/3604 b/zbx_env/var/lib/postgresql/data/base/1/3604 new file mode 100644 index 000000000..8c2e843bd Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/1/3604 differ diff --git a/zbx_env/var/lib/postgresql/data/base/1/3605 b/zbx_env/var/lib/postgresql/data/base/1/3605 new file mode 100644 index 000000000..4c51aeb50 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/1/3605 differ diff --git a/zbx_env/var/lib/postgresql/data/base/1/3606 b/zbx_env/var/lib/postgresql/data/base/1/3606 new file mode 100644 index 000000000..973f81de1 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/1/3606 differ diff --git a/zbx_env/var/lib/postgresql/data/base/1/3607 b/zbx_env/var/lib/postgresql/data/base/1/3607 new file mode 100644 index 000000000..bb91efdd3 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/1/3607 differ diff --git a/zbx_env/var/lib/postgresql/data/base/1/3608 b/zbx_env/var/lib/postgresql/data/base/1/3608 new file mode 100644 index 000000000..edd6032b2 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/1/3608 differ diff --git a/zbx_env/var/lib/postgresql/data/base/1/3609 b/zbx_env/var/lib/postgresql/data/base/1/3609 new file mode 100644 index 000000000..d723790f6 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/1/3609 differ diff --git a/zbx_env/var/lib/postgresql/data/base/1/3712 b/zbx_env/var/lib/postgresql/data/base/1/3712 new file mode 100644 index 000000000..972327c1f Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/1/3712 differ diff --git a/zbx_env/var/lib/postgresql/data/base/1/3764 b/zbx_env/var/lib/postgresql/data/base/1/3764 new file mode 100644 index 000000000..8b7953258 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/1/3764 differ diff --git a/zbx_env/var/lib/postgresql/data/base/1/3764_fsm b/zbx_env/var/lib/postgresql/data/base/1/3764_fsm new file mode 100644 index 000000000..d041693e8 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/1/3764_fsm differ diff --git a/zbx_env/var/lib/postgresql/data/base/1/3764_vm b/zbx_env/var/lib/postgresql/data/base/1/3764_vm new file mode 100644 index 000000000..81e9a8d75 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/1/3764_vm differ diff --git a/zbx_env/var/lib/postgresql/data/base/1/3766 b/zbx_env/var/lib/postgresql/data/base/1/3766 new file mode 100644 index 000000000..adc6bd05b Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/1/3766 differ diff --git a/zbx_env/var/lib/postgresql/data/base/1/3767 b/zbx_env/var/lib/postgresql/data/base/1/3767 new file mode 100644 index 000000000..8a13ca18a Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/1/3767 differ diff --git a/zbx_env/var/lib/postgresql/data/base/1/3997 b/zbx_env/var/lib/postgresql/data/base/1/3997 new file mode 100644 index 000000000..8bef1d51c Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/1/3997 differ diff --git a/zbx_env/var/lib/postgresql/data/base/1/5002 b/zbx_env/var/lib/postgresql/data/base/1/5002 new file mode 100644 index 000000000..a107339a5 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/1/5002 differ diff --git a/zbx_env/var/lib/postgresql/data/base/1/548 b/zbx_env/var/lib/postgresql/data/base/1/548 new file mode 100644 index 000000000..95a149a1b Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/1/548 differ diff --git a/zbx_env/var/lib/postgresql/data/base/1/549 b/zbx_env/var/lib/postgresql/data/base/1/549 new file mode 100644 index 000000000..b8d72f418 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/1/549 differ diff --git a/zbx_env/var/lib/postgresql/data/base/1/6102 b/zbx_env/var/lib/postgresql/data/base/1/6102 new file mode 100644 index 000000000..e69de29bb diff --git a/zbx_env/var/lib/postgresql/data/base/1/6102_vm b/zbx_env/var/lib/postgresql/data/base/1/6102_vm new file mode 100644 index 000000000..e69de29bb diff --git a/zbx_env/var/lib/postgresql/data/base/1/6104 b/zbx_env/var/lib/postgresql/data/base/1/6104 new file mode 100644 index 000000000..e69de29bb diff --git a/zbx_env/var/lib/postgresql/data/base/1/6104_vm b/zbx_env/var/lib/postgresql/data/base/1/6104_vm new file mode 100644 index 000000000..e69de29bb diff --git a/zbx_env/var/lib/postgresql/data/base/1/6106 b/zbx_env/var/lib/postgresql/data/base/1/6106 new file mode 100644 index 000000000..e69de29bb diff --git a/zbx_env/var/lib/postgresql/data/base/1/6106_vm b/zbx_env/var/lib/postgresql/data/base/1/6106_vm new file mode 100644 index 000000000..e69de29bb diff --git a/zbx_env/var/lib/postgresql/data/base/1/6110 b/zbx_env/var/lib/postgresql/data/base/1/6110 new file mode 100644 index 000000000..88905e93c Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/1/6110 differ diff --git a/zbx_env/var/lib/postgresql/data/base/1/6111 b/zbx_env/var/lib/postgresql/data/base/1/6111 new file mode 100644 index 000000000..fc5fe1e60 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/1/6111 differ diff --git a/zbx_env/var/lib/postgresql/data/base/1/6112 b/zbx_env/var/lib/postgresql/data/base/1/6112 new file mode 100644 index 000000000..2c009e3c0 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/1/6112 differ diff --git a/zbx_env/var/lib/postgresql/data/base/1/6113 b/zbx_env/var/lib/postgresql/data/base/1/6113 new file mode 100644 index 000000000..09ca7f38a Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/1/6113 differ diff --git a/zbx_env/var/lib/postgresql/data/base/1/6117 b/zbx_env/var/lib/postgresql/data/base/1/6117 new file mode 100644 index 000000000..b2a8f2639 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/1/6117 differ diff --git a/zbx_env/var/lib/postgresql/data/base/1/826 b/zbx_env/var/lib/postgresql/data/base/1/826 new file mode 100644 index 000000000..e69de29bb diff --git a/zbx_env/var/lib/postgresql/data/base/1/826_vm b/zbx_env/var/lib/postgresql/data/base/1/826_vm new file mode 100644 index 000000000..e69de29bb diff --git a/zbx_env/var/lib/postgresql/data/base/1/827 b/zbx_env/var/lib/postgresql/data/base/1/827 new file mode 100644 index 000000000..45ca171f5 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/1/827 differ diff --git a/zbx_env/var/lib/postgresql/data/base/1/828 b/zbx_env/var/lib/postgresql/data/base/1/828 new file mode 100644 index 000000000..9543d4d5d Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/1/828 differ diff --git a/zbx_env/var/lib/postgresql/data/base/1/PG_VERSION b/zbx_env/var/lib/postgresql/data/base/1/PG_VERSION new file mode 100644 index 000000000..f599e28b8 --- /dev/null +++ b/zbx_env/var/lib/postgresql/data/base/1/PG_VERSION @@ -0,0 +1 @@ +10 diff --git a/zbx_env/var/lib/postgresql/data/base/1/pg_filenode.map b/zbx_env/var/lib/postgresql/data/base/1/pg_filenode.map new file mode 100644 index 000000000..428c97e9a Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/1/pg_filenode.map differ diff --git a/zbx_env/var/lib/postgresql/data/base/12993/112 b/zbx_env/var/lib/postgresql/data/base/12993/112 new file mode 100644 index 000000000..8b130c348 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/12993/112 differ diff --git a/zbx_env/var/lib/postgresql/data/base/12993/113 b/zbx_env/var/lib/postgresql/data/base/12993/113 new file mode 100644 index 000000000..aca9f3471 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/12993/113 differ diff --git a/zbx_env/var/lib/postgresql/data/base/12993/1247 b/zbx_env/var/lib/postgresql/data/base/12993/1247 new file mode 100644 index 000000000..cd6a460f8 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/12993/1247 differ diff --git a/zbx_env/var/lib/postgresql/data/base/12993/1247_fsm b/zbx_env/var/lib/postgresql/data/base/12993/1247_fsm new file mode 100644 index 000000000..2afa6c37d Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/12993/1247_fsm differ diff --git a/zbx_env/var/lib/postgresql/data/base/12993/1247_vm b/zbx_env/var/lib/postgresql/data/base/12993/1247_vm new file mode 100644 index 000000000..ee2235651 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/12993/1247_vm differ diff --git a/zbx_env/var/lib/postgresql/data/base/12993/1249 b/zbx_env/var/lib/postgresql/data/base/12993/1249 new file mode 100644 index 000000000..03ac5bae9 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/12993/1249 differ diff --git a/zbx_env/var/lib/postgresql/data/base/12993/1249_fsm b/zbx_env/var/lib/postgresql/data/base/12993/1249_fsm new file mode 100644 index 000000000..620636091 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/12993/1249_fsm differ diff --git a/zbx_env/var/lib/postgresql/data/base/12993/1249_vm b/zbx_env/var/lib/postgresql/data/base/12993/1249_vm new file mode 100644 index 000000000..dcac89013 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/12993/1249_vm differ diff --git a/zbx_env/var/lib/postgresql/data/base/12993/1255 b/zbx_env/var/lib/postgresql/data/base/12993/1255 new file mode 100644 index 000000000..5db8ed232 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/12993/1255 differ diff --git a/zbx_env/var/lib/postgresql/data/base/12993/1255_fsm b/zbx_env/var/lib/postgresql/data/base/12993/1255_fsm new file mode 100644 index 000000000..72da66c0e Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/12993/1255_fsm differ diff --git a/zbx_env/var/lib/postgresql/data/base/12993/1255_vm b/zbx_env/var/lib/postgresql/data/base/12993/1255_vm new file mode 100644 index 000000000..ba43c4836 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/12993/1255_vm differ diff --git a/zbx_env/var/lib/postgresql/data/base/12993/1259 b/zbx_env/var/lib/postgresql/data/base/12993/1259 new file mode 100644 index 000000000..20e20e134 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/12993/1259 differ diff --git a/zbx_env/var/lib/postgresql/data/base/12993/1259_fsm b/zbx_env/var/lib/postgresql/data/base/12993/1259_fsm new file mode 100644 index 000000000..e172feb90 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/12993/1259_fsm differ diff --git a/zbx_env/var/lib/postgresql/data/base/12993/1259_vm b/zbx_env/var/lib/postgresql/data/base/12993/1259_vm new file mode 100644 index 000000000..eba7a64a4 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/12993/1259_vm differ diff --git a/zbx_env/var/lib/postgresql/data/base/12993/12829 b/zbx_env/var/lib/postgresql/data/base/12993/12829 new file mode 100644 index 000000000..ac7e7e56a Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/12993/12829 differ diff --git a/zbx_env/var/lib/postgresql/data/base/12993/12829_fsm b/zbx_env/var/lib/postgresql/data/base/12993/12829_fsm new file mode 100644 index 000000000..19948ba3d Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/12993/12829_fsm differ diff --git a/zbx_env/var/lib/postgresql/data/base/12993/12829_vm b/zbx_env/var/lib/postgresql/data/base/12993/12829_vm new file mode 100644 index 000000000..648054e0f Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/12993/12829_vm differ diff --git a/zbx_env/var/lib/postgresql/data/base/12993/12831 b/zbx_env/var/lib/postgresql/data/base/12993/12831 new file mode 100644 index 000000000..e69de29bb diff --git a/zbx_env/var/lib/postgresql/data/base/12993/12833 b/zbx_env/var/lib/postgresql/data/base/12993/12833 new file mode 100644 index 000000000..5efdd5c62 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/12993/12833 differ diff --git a/zbx_env/var/lib/postgresql/data/base/12993/12834 b/zbx_env/var/lib/postgresql/data/base/12993/12834 new file mode 100644 index 000000000..6147c7e0a Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/12993/12834 differ diff --git a/zbx_env/var/lib/postgresql/data/base/12993/12834_fsm b/zbx_env/var/lib/postgresql/data/base/12993/12834_fsm new file mode 100644 index 000000000..ce7c26eb6 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/12993/12834_fsm differ diff --git a/zbx_env/var/lib/postgresql/data/base/12993/12834_vm b/zbx_env/var/lib/postgresql/data/base/12993/12834_vm new file mode 100644 index 000000000..025df3da1 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/12993/12834_vm differ diff --git a/zbx_env/var/lib/postgresql/data/base/12993/12836 b/zbx_env/var/lib/postgresql/data/base/12993/12836 new file mode 100644 index 000000000..e69de29bb diff --git a/zbx_env/var/lib/postgresql/data/base/12993/12838 b/zbx_env/var/lib/postgresql/data/base/12993/12838 new file mode 100644 index 000000000..ab2a70f83 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/12993/12838 differ diff --git a/zbx_env/var/lib/postgresql/data/base/12993/12839 b/zbx_env/var/lib/postgresql/data/base/12993/12839 new file mode 100644 index 000000000..5c80dacb3 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/12993/12839 differ diff --git a/zbx_env/var/lib/postgresql/data/base/12993/12839_fsm b/zbx_env/var/lib/postgresql/data/base/12993/12839_fsm new file mode 100644 index 000000000..98dc620ab Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/12993/12839_fsm differ diff --git a/zbx_env/var/lib/postgresql/data/base/12993/12839_vm b/zbx_env/var/lib/postgresql/data/base/12993/12839_vm new file mode 100644 index 000000000..602207e10 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/12993/12839_vm differ diff --git a/zbx_env/var/lib/postgresql/data/base/12993/12841 b/zbx_env/var/lib/postgresql/data/base/12993/12841 new file mode 100644 index 000000000..e69de29bb diff --git a/zbx_env/var/lib/postgresql/data/base/12993/12843 b/zbx_env/var/lib/postgresql/data/base/12993/12843 new file mode 100644 index 000000000..01f3abd46 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/12993/12843 differ diff --git a/zbx_env/var/lib/postgresql/data/base/12993/12844 b/zbx_env/var/lib/postgresql/data/base/12993/12844 new file mode 100644 index 000000000..0d56ac3f3 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/12993/12844 differ diff --git a/zbx_env/var/lib/postgresql/data/base/12993/12844_fsm b/zbx_env/var/lib/postgresql/data/base/12993/12844_fsm new file mode 100644 index 000000000..f8a0e258a Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/12993/12844_fsm differ diff --git a/zbx_env/var/lib/postgresql/data/base/12993/12844_vm b/zbx_env/var/lib/postgresql/data/base/12993/12844_vm new file mode 100644 index 000000000..a853e6e13 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/12993/12844_vm differ diff --git a/zbx_env/var/lib/postgresql/data/base/12993/12846 b/zbx_env/var/lib/postgresql/data/base/12993/12846 new file mode 100644 index 000000000..e69de29bb diff --git a/zbx_env/var/lib/postgresql/data/base/12993/12848 b/zbx_env/var/lib/postgresql/data/base/12993/12848 new file mode 100644 index 000000000..a3e9f3820 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/12993/12848 differ diff --git a/zbx_env/var/lib/postgresql/data/base/12993/12849 b/zbx_env/var/lib/postgresql/data/base/12993/12849 new file mode 100644 index 000000000..3db9a1627 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/12993/12849 differ diff --git a/zbx_env/var/lib/postgresql/data/base/12993/12849_fsm b/zbx_env/var/lib/postgresql/data/base/12993/12849_fsm new file mode 100644 index 000000000..ecbfaee5e Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/12993/12849_fsm differ diff --git a/zbx_env/var/lib/postgresql/data/base/12993/12849_vm b/zbx_env/var/lib/postgresql/data/base/12993/12849_vm new file mode 100644 index 000000000..dddd66103 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/12993/12849_vm differ diff --git a/zbx_env/var/lib/postgresql/data/base/12993/12851 b/zbx_env/var/lib/postgresql/data/base/12993/12851 new file mode 100644 index 000000000..e69de29bb diff --git a/zbx_env/var/lib/postgresql/data/base/12993/12853 b/zbx_env/var/lib/postgresql/data/base/12993/12853 new file mode 100644 index 000000000..4c0a3393e Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/12993/12853 differ diff --git a/zbx_env/var/lib/postgresql/data/base/12993/12854 b/zbx_env/var/lib/postgresql/data/base/12993/12854 new file mode 100644 index 000000000..afc566762 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/12993/12854 differ diff --git a/zbx_env/var/lib/postgresql/data/base/12993/12854_fsm b/zbx_env/var/lib/postgresql/data/base/12993/12854_fsm new file mode 100644 index 000000000..a836ddf75 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/12993/12854_fsm differ diff --git a/zbx_env/var/lib/postgresql/data/base/12993/12854_vm b/zbx_env/var/lib/postgresql/data/base/12993/12854_vm new file mode 100644 index 000000000..763cfb136 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/12993/12854_vm differ diff --git a/zbx_env/var/lib/postgresql/data/base/12993/12856 b/zbx_env/var/lib/postgresql/data/base/12993/12856 new file mode 100644 index 000000000..e69de29bb diff --git a/zbx_env/var/lib/postgresql/data/base/12993/12858 b/zbx_env/var/lib/postgresql/data/base/12993/12858 new file mode 100644 index 000000000..e81edf7b4 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/12993/12858 differ diff --git a/zbx_env/var/lib/postgresql/data/base/12993/12859 b/zbx_env/var/lib/postgresql/data/base/12993/12859 new file mode 100644 index 000000000..e69de29bb diff --git a/zbx_env/var/lib/postgresql/data/base/12993/12861 b/zbx_env/var/lib/postgresql/data/base/12993/12861 new file mode 100644 index 000000000..e69de29bb diff --git a/zbx_env/var/lib/postgresql/data/base/12993/12863 b/zbx_env/var/lib/postgresql/data/base/12993/12863 new file mode 100644 index 000000000..d4d51b3d9 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/12993/12863 differ diff --git a/zbx_env/var/lib/postgresql/data/base/12993/1417 b/zbx_env/var/lib/postgresql/data/base/12993/1417 new file mode 100644 index 000000000..e69de29bb diff --git a/zbx_env/var/lib/postgresql/data/base/12993/1417_vm b/zbx_env/var/lib/postgresql/data/base/12993/1417_vm new file mode 100644 index 000000000..e69de29bb diff --git a/zbx_env/var/lib/postgresql/data/base/12993/1418 b/zbx_env/var/lib/postgresql/data/base/12993/1418 new file mode 100644 index 000000000..e69de29bb diff --git a/zbx_env/var/lib/postgresql/data/base/12993/1418_vm b/zbx_env/var/lib/postgresql/data/base/12993/1418_vm new file mode 100644 index 000000000..e69de29bb diff --git a/zbx_env/var/lib/postgresql/data/base/12993/174 b/zbx_env/var/lib/postgresql/data/base/12993/174 new file mode 100644 index 000000000..edad2c14c Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/12993/174 differ diff --git a/zbx_env/var/lib/postgresql/data/base/12993/175 b/zbx_env/var/lib/postgresql/data/base/12993/175 new file mode 100644 index 000000000..a8041c693 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/12993/175 differ diff --git a/zbx_env/var/lib/postgresql/data/base/12993/2187 b/zbx_env/var/lib/postgresql/data/base/12993/2187 new file mode 100644 index 000000000..d39a0b782 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/12993/2187 differ diff --git a/zbx_env/var/lib/postgresql/data/base/12993/2224 b/zbx_env/var/lib/postgresql/data/base/12993/2224 new file mode 100644 index 000000000..e69de29bb diff --git a/zbx_env/var/lib/postgresql/data/base/12993/2224_vm b/zbx_env/var/lib/postgresql/data/base/12993/2224_vm new file mode 100644 index 000000000..e69de29bb diff --git a/zbx_env/var/lib/postgresql/data/base/12993/2328 b/zbx_env/var/lib/postgresql/data/base/12993/2328 new file mode 100644 index 000000000..e69de29bb diff --git a/zbx_env/var/lib/postgresql/data/base/12993/2328_vm b/zbx_env/var/lib/postgresql/data/base/12993/2328_vm new file mode 100644 index 000000000..e69de29bb diff --git a/zbx_env/var/lib/postgresql/data/base/12993/2336 b/zbx_env/var/lib/postgresql/data/base/12993/2336 new file mode 100644 index 000000000..e69de29bb diff --git a/zbx_env/var/lib/postgresql/data/base/12993/2336_vm b/zbx_env/var/lib/postgresql/data/base/12993/2336_vm new file mode 100644 index 000000000..e69de29bb diff --git a/zbx_env/var/lib/postgresql/data/base/12993/2337 b/zbx_env/var/lib/postgresql/data/base/12993/2337 new file mode 100644 index 000000000..c16658041 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/12993/2337 differ diff --git a/zbx_env/var/lib/postgresql/data/base/12993/2600 b/zbx_env/var/lib/postgresql/data/base/12993/2600 new file mode 100644 index 000000000..980d98e71 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/12993/2600 differ diff --git a/zbx_env/var/lib/postgresql/data/base/12993/2600_fsm b/zbx_env/var/lib/postgresql/data/base/12993/2600_fsm new file mode 100644 index 000000000..e63ffab3e Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/12993/2600_fsm differ diff --git a/zbx_env/var/lib/postgresql/data/base/12993/2600_vm b/zbx_env/var/lib/postgresql/data/base/12993/2600_vm new file mode 100644 index 000000000..be059bc07 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/12993/2600_vm differ diff --git a/zbx_env/var/lib/postgresql/data/base/12993/2601 b/zbx_env/var/lib/postgresql/data/base/12993/2601 new file mode 100644 index 000000000..1d44fa56b Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/12993/2601 differ diff --git a/zbx_env/var/lib/postgresql/data/base/12993/2601_fsm b/zbx_env/var/lib/postgresql/data/base/12993/2601_fsm new file mode 100644 index 000000000..0908076c0 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/12993/2601_fsm differ diff --git a/zbx_env/var/lib/postgresql/data/base/12993/2601_vm b/zbx_env/var/lib/postgresql/data/base/12993/2601_vm new file mode 100644 index 000000000..2aa5dcdb5 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/12993/2601_vm differ diff --git a/zbx_env/var/lib/postgresql/data/base/12993/2602 b/zbx_env/var/lib/postgresql/data/base/12993/2602 new file mode 100644 index 000000000..66f5754af Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/12993/2602 differ diff --git a/zbx_env/var/lib/postgresql/data/base/12993/2602_fsm b/zbx_env/var/lib/postgresql/data/base/12993/2602_fsm new file mode 100644 index 000000000..5ed43b88a Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/12993/2602_fsm differ diff --git a/zbx_env/var/lib/postgresql/data/base/12993/2602_vm b/zbx_env/var/lib/postgresql/data/base/12993/2602_vm new file mode 100644 index 000000000..d1b65bdb8 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/12993/2602_vm differ diff --git a/zbx_env/var/lib/postgresql/data/base/12993/2603 b/zbx_env/var/lib/postgresql/data/base/12993/2603 new file mode 100644 index 000000000..a51df6676 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/12993/2603 differ diff --git a/zbx_env/var/lib/postgresql/data/base/12993/2603_fsm b/zbx_env/var/lib/postgresql/data/base/12993/2603_fsm new file mode 100644 index 000000000..f507d0e9f Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/12993/2603_fsm differ diff --git a/zbx_env/var/lib/postgresql/data/base/12993/2603_vm b/zbx_env/var/lib/postgresql/data/base/12993/2603_vm new file mode 100644 index 000000000..95728db4a Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/12993/2603_vm differ diff --git a/zbx_env/var/lib/postgresql/data/base/12993/2604 b/zbx_env/var/lib/postgresql/data/base/12993/2604 new file mode 100644 index 000000000..e69de29bb diff --git a/zbx_env/var/lib/postgresql/data/base/12993/2604_vm b/zbx_env/var/lib/postgresql/data/base/12993/2604_vm new file mode 100644 index 000000000..e69de29bb diff --git a/zbx_env/var/lib/postgresql/data/base/12993/2605 b/zbx_env/var/lib/postgresql/data/base/12993/2605 new file mode 100644 index 000000000..45f16c079 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/12993/2605 differ diff --git a/zbx_env/var/lib/postgresql/data/base/12993/2605_fsm b/zbx_env/var/lib/postgresql/data/base/12993/2605_fsm new file mode 100644 index 000000000..c1b0e039f Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/12993/2605_fsm differ diff --git a/zbx_env/var/lib/postgresql/data/base/12993/2605_vm b/zbx_env/var/lib/postgresql/data/base/12993/2605_vm new file mode 100644 index 000000000..bd231050a Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/12993/2605_vm differ diff --git a/zbx_env/var/lib/postgresql/data/base/12993/2606 b/zbx_env/var/lib/postgresql/data/base/12993/2606 new file mode 100644 index 000000000..163eee21e Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/12993/2606 differ diff --git a/zbx_env/var/lib/postgresql/data/base/12993/2606_fsm b/zbx_env/var/lib/postgresql/data/base/12993/2606_fsm new file mode 100644 index 000000000..d37e4dd05 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/12993/2606_fsm differ diff --git a/zbx_env/var/lib/postgresql/data/base/12993/2606_vm b/zbx_env/var/lib/postgresql/data/base/12993/2606_vm new file mode 100644 index 000000000..4301f6b95 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/12993/2606_vm differ diff --git a/zbx_env/var/lib/postgresql/data/base/12993/2607 b/zbx_env/var/lib/postgresql/data/base/12993/2607 new file mode 100644 index 000000000..1ecadcbc8 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/12993/2607 differ diff --git a/zbx_env/var/lib/postgresql/data/base/12993/2607_fsm b/zbx_env/var/lib/postgresql/data/base/12993/2607_fsm new file mode 100644 index 000000000..5b066f1a3 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/12993/2607_fsm differ diff --git a/zbx_env/var/lib/postgresql/data/base/12993/2607_vm b/zbx_env/var/lib/postgresql/data/base/12993/2607_vm new file mode 100644 index 000000000..913a86769 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/12993/2607_vm differ diff --git a/zbx_env/var/lib/postgresql/data/base/12993/2608 b/zbx_env/var/lib/postgresql/data/base/12993/2608 new file mode 100644 index 000000000..49c4af1cd Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/12993/2608 differ diff --git a/zbx_env/var/lib/postgresql/data/base/12993/2608_fsm b/zbx_env/var/lib/postgresql/data/base/12993/2608_fsm new file mode 100644 index 000000000..106a100e5 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/12993/2608_fsm differ diff --git a/zbx_env/var/lib/postgresql/data/base/12993/2608_vm b/zbx_env/var/lib/postgresql/data/base/12993/2608_vm new file mode 100644 index 000000000..b4ec88c13 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/12993/2608_vm differ diff --git a/zbx_env/var/lib/postgresql/data/base/12993/2609 b/zbx_env/var/lib/postgresql/data/base/12993/2609 new file mode 100644 index 000000000..55d48b226 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/12993/2609 differ diff --git a/zbx_env/var/lib/postgresql/data/base/12993/2609_fsm b/zbx_env/var/lib/postgresql/data/base/12993/2609_fsm new file mode 100644 index 000000000..8fa6e5fa6 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/12993/2609_fsm differ diff --git a/zbx_env/var/lib/postgresql/data/base/12993/2609_vm b/zbx_env/var/lib/postgresql/data/base/12993/2609_vm new file mode 100644 index 000000000..a459f2c88 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/12993/2609_vm differ diff --git a/zbx_env/var/lib/postgresql/data/base/12993/2610 b/zbx_env/var/lib/postgresql/data/base/12993/2610 new file mode 100644 index 000000000..b2c1cffbb Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/12993/2610 differ diff --git a/zbx_env/var/lib/postgresql/data/base/12993/2610_fsm b/zbx_env/var/lib/postgresql/data/base/12993/2610_fsm new file mode 100644 index 000000000..6a556770a Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/12993/2610_fsm differ diff --git a/zbx_env/var/lib/postgresql/data/base/12993/2610_vm b/zbx_env/var/lib/postgresql/data/base/12993/2610_vm new file mode 100644 index 000000000..a2cb5435a Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/12993/2610_vm differ diff --git a/zbx_env/var/lib/postgresql/data/base/12993/2611 b/zbx_env/var/lib/postgresql/data/base/12993/2611 new file mode 100644 index 000000000..e69de29bb diff --git a/zbx_env/var/lib/postgresql/data/base/12993/2611_vm b/zbx_env/var/lib/postgresql/data/base/12993/2611_vm new file mode 100644 index 000000000..e69de29bb diff --git a/zbx_env/var/lib/postgresql/data/base/12993/2612 b/zbx_env/var/lib/postgresql/data/base/12993/2612 new file mode 100644 index 000000000..92362df9a Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/12993/2612 differ diff --git a/zbx_env/var/lib/postgresql/data/base/12993/2612_fsm b/zbx_env/var/lib/postgresql/data/base/12993/2612_fsm new file mode 100644 index 000000000..877976acf Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/12993/2612_fsm differ diff --git a/zbx_env/var/lib/postgresql/data/base/12993/2612_vm b/zbx_env/var/lib/postgresql/data/base/12993/2612_vm new file mode 100644 index 000000000..27aad7785 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/12993/2612_vm differ diff --git a/zbx_env/var/lib/postgresql/data/base/12993/2613 b/zbx_env/var/lib/postgresql/data/base/12993/2613 new file mode 100644 index 000000000..e69de29bb diff --git a/zbx_env/var/lib/postgresql/data/base/12993/2613_vm b/zbx_env/var/lib/postgresql/data/base/12993/2613_vm new file mode 100644 index 000000000..e69de29bb diff --git a/zbx_env/var/lib/postgresql/data/base/12993/2615 b/zbx_env/var/lib/postgresql/data/base/12993/2615 new file mode 100644 index 000000000..f81cca3d5 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/12993/2615 differ diff --git a/zbx_env/var/lib/postgresql/data/base/12993/2615_fsm b/zbx_env/var/lib/postgresql/data/base/12993/2615_fsm new file mode 100644 index 000000000..948882ce6 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/12993/2615_fsm differ diff --git a/zbx_env/var/lib/postgresql/data/base/12993/2615_vm b/zbx_env/var/lib/postgresql/data/base/12993/2615_vm new file mode 100644 index 000000000..0ceaa2a80 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/12993/2615_vm differ diff --git a/zbx_env/var/lib/postgresql/data/base/12993/2616 b/zbx_env/var/lib/postgresql/data/base/12993/2616 new file mode 100644 index 000000000..19f42857d Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/12993/2616 differ diff --git a/zbx_env/var/lib/postgresql/data/base/12993/2616_fsm b/zbx_env/var/lib/postgresql/data/base/12993/2616_fsm new file mode 100644 index 000000000..995a05b3c Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/12993/2616_fsm differ diff --git a/zbx_env/var/lib/postgresql/data/base/12993/2616_vm b/zbx_env/var/lib/postgresql/data/base/12993/2616_vm new file mode 100644 index 000000000..dfb995f88 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/12993/2616_vm differ diff --git a/zbx_env/var/lib/postgresql/data/base/12993/2617 b/zbx_env/var/lib/postgresql/data/base/12993/2617 new file mode 100644 index 000000000..d989d35e2 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/12993/2617 differ diff --git a/zbx_env/var/lib/postgresql/data/base/12993/2617_fsm b/zbx_env/var/lib/postgresql/data/base/12993/2617_fsm new file mode 100644 index 000000000..cb2a806b3 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/12993/2617_fsm differ diff --git a/zbx_env/var/lib/postgresql/data/base/12993/2617_vm b/zbx_env/var/lib/postgresql/data/base/12993/2617_vm new file mode 100644 index 000000000..678b7f7f3 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/12993/2617_vm differ diff --git a/zbx_env/var/lib/postgresql/data/base/12993/2618 b/zbx_env/var/lib/postgresql/data/base/12993/2618 new file mode 100644 index 000000000..8a17c1706 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/12993/2618 differ diff --git a/zbx_env/var/lib/postgresql/data/base/12993/2618_fsm b/zbx_env/var/lib/postgresql/data/base/12993/2618_fsm new file mode 100644 index 000000000..2379916aa Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/12993/2618_fsm differ diff --git a/zbx_env/var/lib/postgresql/data/base/12993/2618_vm b/zbx_env/var/lib/postgresql/data/base/12993/2618_vm new file mode 100644 index 000000000..4b06dd76e Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/12993/2618_vm differ diff --git a/zbx_env/var/lib/postgresql/data/base/12993/2619 b/zbx_env/var/lib/postgresql/data/base/12993/2619 new file mode 100644 index 000000000..c14ecd8fa Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/12993/2619 differ diff --git a/zbx_env/var/lib/postgresql/data/base/12993/2619_fsm b/zbx_env/var/lib/postgresql/data/base/12993/2619_fsm new file mode 100644 index 000000000..81f80a5b6 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/12993/2619_fsm differ diff --git a/zbx_env/var/lib/postgresql/data/base/12993/2619_vm b/zbx_env/var/lib/postgresql/data/base/12993/2619_vm new file mode 100644 index 000000000..554e94eb4 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/12993/2619_vm differ diff --git a/zbx_env/var/lib/postgresql/data/base/12993/2620 b/zbx_env/var/lib/postgresql/data/base/12993/2620 new file mode 100644 index 000000000..e69de29bb diff --git a/zbx_env/var/lib/postgresql/data/base/12993/2620_vm b/zbx_env/var/lib/postgresql/data/base/12993/2620_vm new file mode 100644 index 000000000..e69de29bb diff --git a/zbx_env/var/lib/postgresql/data/base/12993/2650 b/zbx_env/var/lib/postgresql/data/base/12993/2650 new file mode 100644 index 000000000..8a0d71d50 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/12993/2650 differ diff --git a/zbx_env/var/lib/postgresql/data/base/12993/2651 b/zbx_env/var/lib/postgresql/data/base/12993/2651 new file mode 100644 index 000000000..29e245e35 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/12993/2651 differ diff --git a/zbx_env/var/lib/postgresql/data/base/12993/2652 b/zbx_env/var/lib/postgresql/data/base/12993/2652 new file mode 100644 index 000000000..9e26143e4 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/12993/2652 differ diff --git a/zbx_env/var/lib/postgresql/data/base/12993/2653 b/zbx_env/var/lib/postgresql/data/base/12993/2653 new file mode 100644 index 000000000..e02db67df Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/12993/2653 differ diff --git a/zbx_env/var/lib/postgresql/data/base/12993/2654 b/zbx_env/var/lib/postgresql/data/base/12993/2654 new file mode 100644 index 000000000..95363af10 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/12993/2654 differ diff --git a/zbx_env/var/lib/postgresql/data/base/12993/2655 b/zbx_env/var/lib/postgresql/data/base/12993/2655 new file mode 100644 index 000000000..a9a12adf9 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/12993/2655 differ diff --git a/zbx_env/var/lib/postgresql/data/base/12993/2656 b/zbx_env/var/lib/postgresql/data/base/12993/2656 new file mode 100644 index 000000000..ba509bf8d Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/12993/2656 differ diff --git a/zbx_env/var/lib/postgresql/data/base/12993/2657 b/zbx_env/var/lib/postgresql/data/base/12993/2657 new file mode 100644 index 000000000..fbc747331 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/12993/2657 differ diff --git a/zbx_env/var/lib/postgresql/data/base/12993/2658 b/zbx_env/var/lib/postgresql/data/base/12993/2658 new file mode 100644 index 000000000..d2ceec244 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/12993/2658 differ diff --git a/zbx_env/var/lib/postgresql/data/base/12993/2659 b/zbx_env/var/lib/postgresql/data/base/12993/2659 new file mode 100644 index 000000000..1f1a4947f Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/12993/2659 differ diff --git a/zbx_env/var/lib/postgresql/data/base/12993/2660 b/zbx_env/var/lib/postgresql/data/base/12993/2660 new file mode 100644 index 000000000..d16f41a42 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/12993/2660 differ diff --git a/zbx_env/var/lib/postgresql/data/base/12993/2661 b/zbx_env/var/lib/postgresql/data/base/12993/2661 new file mode 100644 index 000000000..59ade838f Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/12993/2661 differ diff --git a/zbx_env/var/lib/postgresql/data/base/12993/2662 b/zbx_env/var/lib/postgresql/data/base/12993/2662 new file mode 100644 index 000000000..6026eaac9 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/12993/2662 differ diff --git a/zbx_env/var/lib/postgresql/data/base/12993/2663 b/zbx_env/var/lib/postgresql/data/base/12993/2663 new file mode 100644 index 000000000..7ce14003d Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/12993/2663 differ diff --git a/zbx_env/var/lib/postgresql/data/base/12993/2664 b/zbx_env/var/lib/postgresql/data/base/12993/2664 new file mode 100644 index 000000000..c44bbad79 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/12993/2664 differ diff --git a/zbx_env/var/lib/postgresql/data/base/12993/2665 b/zbx_env/var/lib/postgresql/data/base/12993/2665 new file mode 100644 index 000000000..63ca88a3e Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/12993/2665 differ diff --git a/zbx_env/var/lib/postgresql/data/base/12993/2666 b/zbx_env/var/lib/postgresql/data/base/12993/2666 new file mode 100644 index 000000000..e7c92d1f5 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/12993/2666 differ diff --git a/zbx_env/var/lib/postgresql/data/base/12993/2667 b/zbx_env/var/lib/postgresql/data/base/12993/2667 new file mode 100644 index 000000000..5755a624a Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/12993/2667 differ diff --git a/zbx_env/var/lib/postgresql/data/base/12993/2668 b/zbx_env/var/lib/postgresql/data/base/12993/2668 new file mode 100644 index 000000000..11a6b5270 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/12993/2668 differ diff --git a/zbx_env/var/lib/postgresql/data/base/12993/2669 b/zbx_env/var/lib/postgresql/data/base/12993/2669 new file mode 100644 index 000000000..79d31ebcc Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/12993/2669 differ diff --git a/zbx_env/var/lib/postgresql/data/base/12993/2670 b/zbx_env/var/lib/postgresql/data/base/12993/2670 new file mode 100644 index 000000000..6184b908d Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/12993/2670 differ diff --git a/zbx_env/var/lib/postgresql/data/base/12993/2673 b/zbx_env/var/lib/postgresql/data/base/12993/2673 new file mode 100644 index 000000000..7f74fdd5c Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/12993/2673 differ diff --git a/zbx_env/var/lib/postgresql/data/base/12993/2674 b/zbx_env/var/lib/postgresql/data/base/12993/2674 new file mode 100644 index 000000000..1fb21fcba Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/12993/2674 differ diff --git a/zbx_env/var/lib/postgresql/data/base/12993/2675 b/zbx_env/var/lib/postgresql/data/base/12993/2675 new file mode 100644 index 000000000..c88a53bd5 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/12993/2675 differ diff --git a/zbx_env/var/lib/postgresql/data/base/12993/2678 b/zbx_env/var/lib/postgresql/data/base/12993/2678 new file mode 100644 index 000000000..5239feded Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/12993/2678 differ diff --git a/zbx_env/var/lib/postgresql/data/base/12993/2679 b/zbx_env/var/lib/postgresql/data/base/12993/2679 new file mode 100644 index 000000000..cb7b561bb Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/12993/2679 differ diff --git a/zbx_env/var/lib/postgresql/data/base/12993/2680 b/zbx_env/var/lib/postgresql/data/base/12993/2680 new file mode 100644 index 000000000..876da95b2 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/12993/2680 differ diff --git a/zbx_env/var/lib/postgresql/data/base/12993/2681 b/zbx_env/var/lib/postgresql/data/base/12993/2681 new file mode 100644 index 000000000..4987623fd Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/12993/2681 differ diff --git a/zbx_env/var/lib/postgresql/data/base/12993/2682 b/zbx_env/var/lib/postgresql/data/base/12993/2682 new file mode 100644 index 000000000..7943e766e Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/12993/2682 differ diff --git a/zbx_env/var/lib/postgresql/data/base/12993/2683 b/zbx_env/var/lib/postgresql/data/base/12993/2683 new file mode 100644 index 000000000..636f10144 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/12993/2683 differ diff --git a/zbx_env/var/lib/postgresql/data/base/12993/2684 b/zbx_env/var/lib/postgresql/data/base/12993/2684 new file mode 100644 index 000000000..f54f9598d Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/12993/2684 differ diff --git a/zbx_env/var/lib/postgresql/data/base/12993/2685 b/zbx_env/var/lib/postgresql/data/base/12993/2685 new file mode 100644 index 000000000..95d7fde28 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/12993/2685 differ diff --git a/zbx_env/var/lib/postgresql/data/base/12993/2686 b/zbx_env/var/lib/postgresql/data/base/12993/2686 new file mode 100644 index 000000000..bc86cec09 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/12993/2686 differ diff --git a/zbx_env/var/lib/postgresql/data/base/12993/2687 b/zbx_env/var/lib/postgresql/data/base/12993/2687 new file mode 100644 index 000000000..f080504d5 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/12993/2687 differ diff --git a/zbx_env/var/lib/postgresql/data/base/12993/2688 b/zbx_env/var/lib/postgresql/data/base/12993/2688 new file mode 100644 index 000000000..47572a662 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/12993/2688 differ diff --git a/zbx_env/var/lib/postgresql/data/base/12993/2689 b/zbx_env/var/lib/postgresql/data/base/12993/2689 new file mode 100644 index 000000000..4333d769f Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/12993/2689 differ diff --git a/zbx_env/var/lib/postgresql/data/base/12993/2690 b/zbx_env/var/lib/postgresql/data/base/12993/2690 new file mode 100644 index 000000000..89fab01a4 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/12993/2690 differ diff --git a/zbx_env/var/lib/postgresql/data/base/12993/2691 b/zbx_env/var/lib/postgresql/data/base/12993/2691 new file mode 100644 index 000000000..08dade0dd Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/12993/2691 differ diff --git a/zbx_env/var/lib/postgresql/data/base/12993/2692 b/zbx_env/var/lib/postgresql/data/base/12993/2692 new file mode 100644 index 000000000..150467201 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/12993/2692 differ diff --git a/zbx_env/var/lib/postgresql/data/base/12993/2693 b/zbx_env/var/lib/postgresql/data/base/12993/2693 new file mode 100644 index 000000000..ef76c5b32 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/12993/2693 differ diff --git a/zbx_env/var/lib/postgresql/data/base/12993/2696 b/zbx_env/var/lib/postgresql/data/base/12993/2696 new file mode 100644 index 000000000..69014bb1f Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/12993/2696 differ diff --git a/zbx_env/var/lib/postgresql/data/base/12993/2699 b/zbx_env/var/lib/postgresql/data/base/12993/2699 new file mode 100644 index 000000000..9a9b94663 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/12993/2699 differ diff --git a/zbx_env/var/lib/postgresql/data/base/12993/2701 b/zbx_env/var/lib/postgresql/data/base/12993/2701 new file mode 100644 index 000000000..0376dbefa Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/12993/2701 differ diff --git a/zbx_env/var/lib/postgresql/data/base/12993/2702 b/zbx_env/var/lib/postgresql/data/base/12993/2702 new file mode 100644 index 000000000..b2e4287f6 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/12993/2702 differ diff --git a/zbx_env/var/lib/postgresql/data/base/12993/2703 b/zbx_env/var/lib/postgresql/data/base/12993/2703 new file mode 100644 index 000000000..d7477ab76 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/12993/2703 differ diff --git a/zbx_env/var/lib/postgresql/data/base/12993/2704 b/zbx_env/var/lib/postgresql/data/base/12993/2704 new file mode 100644 index 000000000..a18deab09 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/12993/2704 differ diff --git a/zbx_env/var/lib/postgresql/data/base/12993/2753 b/zbx_env/var/lib/postgresql/data/base/12993/2753 new file mode 100644 index 000000000..73f903165 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/12993/2753 differ diff --git a/zbx_env/var/lib/postgresql/data/base/12993/2753_fsm b/zbx_env/var/lib/postgresql/data/base/12993/2753_fsm new file mode 100644 index 000000000..0787df53d Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/12993/2753_fsm differ diff --git a/zbx_env/var/lib/postgresql/data/base/12993/2753_vm b/zbx_env/var/lib/postgresql/data/base/12993/2753_vm new file mode 100644 index 000000000..6c8ced900 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/12993/2753_vm differ diff --git a/zbx_env/var/lib/postgresql/data/base/12993/2754 b/zbx_env/var/lib/postgresql/data/base/12993/2754 new file mode 100644 index 000000000..5a44a7962 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/12993/2754 differ diff --git a/zbx_env/var/lib/postgresql/data/base/12993/2755 b/zbx_env/var/lib/postgresql/data/base/12993/2755 new file mode 100644 index 000000000..fac11c420 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/12993/2755 differ diff --git a/zbx_env/var/lib/postgresql/data/base/12993/2756 b/zbx_env/var/lib/postgresql/data/base/12993/2756 new file mode 100644 index 000000000..5b9bc166b Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/12993/2756 differ diff --git a/zbx_env/var/lib/postgresql/data/base/12993/2757 b/zbx_env/var/lib/postgresql/data/base/12993/2757 new file mode 100644 index 000000000..1bade66ff Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/12993/2757 differ diff --git a/zbx_env/var/lib/postgresql/data/base/12993/2830 b/zbx_env/var/lib/postgresql/data/base/12993/2830 new file mode 100644 index 000000000..e69de29bb diff --git a/zbx_env/var/lib/postgresql/data/base/12993/2830_vm b/zbx_env/var/lib/postgresql/data/base/12993/2830_vm new file mode 100644 index 000000000..e69de29bb diff --git a/zbx_env/var/lib/postgresql/data/base/12993/2831 b/zbx_env/var/lib/postgresql/data/base/12993/2831 new file mode 100644 index 000000000..b0c0ed88c Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/12993/2831 differ diff --git a/zbx_env/var/lib/postgresql/data/base/12993/2832 b/zbx_env/var/lib/postgresql/data/base/12993/2832 new file mode 100644 index 000000000..e69de29bb diff --git a/zbx_env/var/lib/postgresql/data/base/12993/2832_vm b/zbx_env/var/lib/postgresql/data/base/12993/2832_vm new file mode 100644 index 000000000..e69de29bb diff --git a/zbx_env/var/lib/postgresql/data/base/12993/2833 b/zbx_env/var/lib/postgresql/data/base/12993/2833 new file mode 100644 index 000000000..e70ee62b0 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/12993/2833 differ diff --git a/zbx_env/var/lib/postgresql/data/base/12993/2834 b/zbx_env/var/lib/postgresql/data/base/12993/2834 new file mode 100644 index 000000000..e69de29bb diff --git a/zbx_env/var/lib/postgresql/data/base/12993/2834_vm b/zbx_env/var/lib/postgresql/data/base/12993/2834_vm new file mode 100644 index 000000000..e69de29bb diff --git a/zbx_env/var/lib/postgresql/data/base/12993/2835 b/zbx_env/var/lib/postgresql/data/base/12993/2835 new file mode 100644 index 000000000..c65e18b5e Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/12993/2835 differ diff --git a/zbx_env/var/lib/postgresql/data/base/12993/2836 b/zbx_env/var/lib/postgresql/data/base/12993/2836 new file mode 100644 index 000000000..e69de29bb diff --git a/zbx_env/var/lib/postgresql/data/base/12993/2836_vm b/zbx_env/var/lib/postgresql/data/base/12993/2836_vm new file mode 100644 index 000000000..e69de29bb diff --git a/zbx_env/var/lib/postgresql/data/base/12993/2837 b/zbx_env/var/lib/postgresql/data/base/12993/2837 new file mode 100644 index 000000000..4ef00f573 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/12993/2837 differ diff --git a/zbx_env/var/lib/postgresql/data/base/12993/2838 b/zbx_env/var/lib/postgresql/data/base/12993/2838 new file mode 100644 index 000000000..5efb4501d Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/12993/2838 differ diff --git a/zbx_env/var/lib/postgresql/data/base/12993/2838_fsm b/zbx_env/var/lib/postgresql/data/base/12993/2838_fsm new file mode 100644 index 000000000..72ba496ec Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/12993/2838_fsm differ diff --git a/zbx_env/var/lib/postgresql/data/base/12993/2838_vm b/zbx_env/var/lib/postgresql/data/base/12993/2838_vm new file mode 100644 index 000000000..962055edb Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/12993/2838_vm differ diff --git a/zbx_env/var/lib/postgresql/data/base/12993/2839 b/zbx_env/var/lib/postgresql/data/base/12993/2839 new file mode 100644 index 000000000..9b1c1e571 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/12993/2839 differ diff --git a/zbx_env/var/lib/postgresql/data/base/12993/2840 b/zbx_env/var/lib/postgresql/data/base/12993/2840 new file mode 100644 index 000000000..840ad144c Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/12993/2840 differ diff --git a/zbx_env/var/lib/postgresql/data/base/12993/2840_fsm b/zbx_env/var/lib/postgresql/data/base/12993/2840_fsm new file mode 100644 index 000000000..7d14d0cfe Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/12993/2840_fsm differ diff --git a/zbx_env/var/lib/postgresql/data/base/12993/2840_vm b/zbx_env/var/lib/postgresql/data/base/12993/2840_vm new file mode 100644 index 000000000..fee0e0473 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/12993/2840_vm differ diff --git a/zbx_env/var/lib/postgresql/data/base/12993/2841 b/zbx_env/var/lib/postgresql/data/base/12993/2841 new file mode 100644 index 000000000..44212c4cd Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/12993/2841 differ diff --git a/zbx_env/var/lib/postgresql/data/base/12993/2995 b/zbx_env/var/lib/postgresql/data/base/12993/2995 new file mode 100644 index 000000000..e69de29bb diff --git a/zbx_env/var/lib/postgresql/data/base/12993/2995_vm b/zbx_env/var/lib/postgresql/data/base/12993/2995_vm new file mode 100644 index 000000000..e69de29bb diff --git a/zbx_env/var/lib/postgresql/data/base/12993/2996 b/zbx_env/var/lib/postgresql/data/base/12993/2996 new file mode 100644 index 000000000..a1e392a5f Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/12993/2996 differ diff --git a/zbx_env/var/lib/postgresql/data/base/12993/3079 b/zbx_env/var/lib/postgresql/data/base/12993/3079 new file mode 100644 index 000000000..2ac5237cb Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/12993/3079 differ diff --git a/zbx_env/var/lib/postgresql/data/base/12993/3079_fsm b/zbx_env/var/lib/postgresql/data/base/12993/3079_fsm new file mode 100644 index 000000000..7732d22b7 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/12993/3079_fsm differ diff --git a/zbx_env/var/lib/postgresql/data/base/12993/3079_vm b/zbx_env/var/lib/postgresql/data/base/12993/3079_vm new file mode 100644 index 000000000..44a2ff91e Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/12993/3079_vm differ diff --git a/zbx_env/var/lib/postgresql/data/base/12993/3080 b/zbx_env/var/lib/postgresql/data/base/12993/3080 new file mode 100644 index 000000000..91f8d4902 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/12993/3080 differ diff --git a/zbx_env/var/lib/postgresql/data/base/12993/3081 b/zbx_env/var/lib/postgresql/data/base/12993/3081 new file mode 100644 index 000000000..8bc74ec63 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/12993/3081 differ diff --git a/zbx_env/var/lib/postgresql/data/base/12993/3085 b/zbx_env/var/lib/postgresql/data/base/12993/3085 new file mode 100644 index 000000000..05c256fa5 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/12993/3085 differ diff --git a/zbx_env/var/lib/postgresql/data/base/12993/3118 b/zbx_env/var/lib/postgresql/data/base/12993/3118 new file mode 100644 index 000000000..e69de29bb diff --git a/zbx_env/var/lib/postgresql/data/base/12993/3118_vm b/zbx_env/var/lib/postgresql/data/base/12993/3118_vm new file mode 100644 index 000000000..e69de29bb diff --git a/zbx_env/var/lib/postgresql/data/base/12993/3119 b/zbx_env/var/lib/postgresql/data/base/12993/3119 new file mode 100644 index 000000000..cdf9c180f Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/12993/3119 differ diff --git a/zbx_env/var/lib/postgresql/data/base/12993/3164 b/zbx_env/var/lib/postgresql/data/base/12993/3164 new file mode 100644 index 000000000..a58c39469 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/12993/3164 differ diff --git a/zbx_env/var/lib/postgresql/data/base/12993/3256 b/zbx_env/var/lib/postgresql/data/base/12993/3256 new file mode 100644 index 000000000..e69de29bb diff --git a/zbx_env/var/lib/postgresql/data/base/12993/3256_vm b/zbx_env/var/lib/postgresql/data/base/12993/3256_vm new file mode 100644 index 000000000..e69de29bb diff --git a/zbx_env/var/lib/postgresql/data/base/12993/3257 b/zbx_env/var/lib/postgresql/data/base/12993/3257 new file mode 100644 index 000000000..fb1ff935a Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/12993/3257 differ diff --git a/zbx_env/var/lib/postgresql/data/base/12993/3258 b/zbx_env/var/lib/postgresql/data/base/12993/3258 new file mode 100644 index 000000000..0b6aca02a Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/12993/3258 differ diff --git a/zbx_env/var/lib/postgresql/data/base/12993/3350 b/zbx_env/var/lib/postgresql/data/base/12993/3350 new file mode 100644 index 000000000..e69de29bb diff --git a/zbx_env/var/lib/postgresql/data/base/12993/3350_vm b/zbx_env/var/lib/postgresql/data/base/12993/3350_vm new file mode 100644 index 000000000..e69de29bb diff --git a/zbx_env/var/lib/postgresql/data/base/12993/3351 b/zbx_env/var/lib/postgresql/data/base/12993/3351 new file mode 100644 index 000000000..485a7f339 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/12993/3351 differ diff --git a/zbx_env/var/lib/postgresql/data/base/12993/3379 b/zbx_env/var/lib/postgresql/data/base/12993/3379 new file mode 100644 index 000000000..2b3165f78 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/12993/3379 differ diff --git a/zbx_env/var/lib/postgresql/data/base/12993/3380 b/zbx_env/var/lib/postgresql/data/base/12993/3380 new file mode 100644 index 000000000..262c95057 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/12993/3380 differ diff --git a/zbx_env/var/lib/postgresql/data/base/12993/3381 b/zbx_env/var/lib/postgresql/data/base/12993/3381 new file mode 100644 index 000000000..e69de29bb diff --git a/zbx_env/var/lib/postgresql/data/base/12993/3381_vm b/zbx_env/var/lib/postgresql/data/base/12993/3381_vm new file mode 100644 index 000000000..e69de29bb diff --git a/zbx_env/var/lib/postgresql/data/base/12993/3394 b/zbx_env/var/lib/postgresql/data/base/12993/3394 new file mode 100644 index 000000000..b6a9edeae Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/12993/3394 differ diff --git a/zbx_env/var/lib/postgresql/data/base/12993/3394_fsm b/zbx_env/var/lib/postgresql/data/base/12993/3394_fsm new file mode 100644 index 000000000..9bf23e33a Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/12993/3394_fsm differ diff --git a/zbx_env/var/lib/postgresql/data/base/12993/3394_vm b/zbx_env/var/lib/postgresql/data/base/12993/3394_vm new file mode 100644 index 000000000..450f3d7c2 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/12993/3394_vm differ diff --git a/zbx_env/var/lib/postgresql/data/base/12993/3395 b/zbx_env/var/lib/postgresql/data/base/12993/3395 new file mode 100644 index 000000000..5bd6238c1 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/12993/3395 differ diff --git a/zbx_env/var/lib/postgresql/data/base/12993/3439 b/zbx_env/var/lib/postgresql/data/base/12993/3439 new file mode 100644 index 000000000..e69de29bb diff --git a/zbx_env/var/lib/postgresql/data/base/12993/3439_vm b/zbx_env/var/lib/postgresql/data/base/12993/3439_vm new file mode 100644 index 000000000..e69de29bb diff --git a/zbx_env/var/lib/postgresql/data/base/12993/3440 b/zbx_env/var/lib/postgresql/data/base/12993/3440 new file mode 100644 index 000000000..bae4de162 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/12993/3440 differ diff --git a/zbx_env/var/lib/postgresql/data/base/12993/3455 b/zbx_env/var/lib/postgresql/data/base/12993/3455 new file mode 100644 index 000000000..0f1a7376e Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/12993/3455 differ diff --git a/zbx_env/var/lib/postgresql/data/base/12993/3456 b/zbx_env/var/lib/postgresql/data/base/12993/3456 new file mode 100644 index 000000000..2bc0341f9 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/12993/3456 differ diff --git a/zbx_env/var/lib/postgresql/data/base/12993/3456_fsm b/zbx_env/var/lib/postgresql/data/base/12993/3456_fsm new file mode 100644 index 000000000..ea43ee9d4 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/12993/3456_fsm differ diff --git a/zbx_env/var/lib/postgresql/data/base/12993/3456_vm b/zbx_env/var/lib/postgresql/data/base/12993/3456_vm new file mode 100644 index 000000000..7ac9233fc Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/12993/3456_vm differ diff --git a/zbx_env/var/lib/postgresql/data/base/12993/3466 b/zbx_env/var/lib/postgresql/data/base/12993/3466 new file mode 100644 index 000000000..e69de29bb diff --git a/zbx_env/var/lib/postgresql/data/base/12993/3466_vm b/zbx_env/var/lib/postgresql/data/base/12993/3466_vm new file mode 100644 index 000000000..e69de29bb diff --git a/zbx_env/var/lib/postgresql/data/base/12993/3467 b/zbx_env/var/lib/postgresql/data/base/12993/3467 new file mode 100644 index 000000000..d28a66e55 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/12993/3467 differ diff --git a/zbx_env/var/lib/postgresql/data/base/12993/3468 b/zbx_env/var/lib/postgresql/data/base/12993/3468 new file mode 100644 index 000000000..79b6e9472 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/12993/3468 differ diff --git a/zbx_env/var/lib/postgresql/data/base/12993/3501 b/zbx_env/var/lib/postgresql/data/base/12993/3501 new file mode 100644 index 000000000..e69de29bb diff --git a/zbx_env/var/lib/postgresql/data/base/12993/3501_vm b/zbx_env/var/lib/postgresql/data/base/12993/3501_vm new file mode 100644 index 000000000..e69de29bb diff --git a/zbx_env/var/lib/postgresql/data/base/12993/3502 b/zbx_env/var/lib/postgresql/data/base/12993/3502 new file mode 100644 index 000000000..061a18dc6 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/12993/3502 differ diff --git a/zbx_env/var/lib/postgresql/data/base/12993/3503 b/zbx_env/var/lib/postgresql/data/base/12993/3503 new file mode 100644 index 000000000..ebd24c5cb Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/12993/3503 differ diff --git a/zbx_env/var/lib/postgresql/data/base/12993/3534 b/zbx_env/var/lib/postgresql/data/base/12993/3534 new file mode 100644 index 000000000..4fdd31ed7 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/12993/3534 differ diff --git a/zbx_env/var/lib/postgresql/data/base/12993/3541 b/zbx_env/var/lib/postgresql/data/base/12993/3541 new file mode 100644 index 000000000..ad69913a9 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/12993/3541 differ diff --git a/zbx_env/var/lib/postgresql/data/base/12993/3541_fsm b/zbx_env/var/lib/postgresql/data/base/12993/3541_fsm new file mode 100644 index 000000000..62f015667 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/12993/3541_fsm differ diff --git a/zbx_env/var/lib/postgresql/data/base/12993/3541_vm b/zbx_env/var/lib/postgresql/data/base/12993/3541_vm new file mode 100644 index 000000000..338f46301 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/12993/3541_vm differ diff --git a/zbx_env/var/lib/postgresql/data/base/12993/3542 b/zbx_env/var/lib/postgresql/data/base/12993/3542 new file mode 100644 index 000000000..bf7c3330f Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/12993/3542 differ diff --git a/zbx_env/var/lib/postgresql/data/base/12993/3574 b/zbx_env/var/lib/postgresql/data/base/12993/3574 new file mode 100644 index 000000000..0861ca0e2 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/12993/3574 differ diff --git a/zbx_env/var/lib/postgresql/data/base/12993/3575 b/zbx_env/var/lib/postgresql/data/base/12993/3575 new file mode 100644 index 000000000..2b57a8ed5 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/12993/3575 differ diff --git a/zbx_env/var/lib/postgresql/data/base/12993/3576 b/zbx_env/var/lib/postgresql/data/base/12993/3576 new file mode 100644 index 000000000..e69de29bb diff --git a/zbx_env/var/lib/postgresql/data/base/12993/3576_vm b/zbx_env/var/lib/postgresql/data/base/12993/3576_vm new file mode 100644 index 000000000..e69de29bb diff --git a/zbx_env/var/lib/postgresql/data/base/12993/3596 b/zbx_env/var/lib/postgresql/data/base/12993/3596 new file mode 100644 index 000000000..e69de29bb diff --git a/zbx_env/var/lib/postgresql/data/base/12993/3596_vm b/zbx_env/var/lib/postgresql/data/base/12993/3596_vm new file mode 100644 index 000000000..e69de29bb diff --git a/zbx_env/var/lib/postgresql/data/base/12993/3597 b/zbx_env/var/lib/postgresql/data/base/12993/3597 new file mode 100644 index 000000000..8684c812e Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/12993/3597 differ diff --git a/zbx_env/var/lib/postgresql/data/base/12993/3598 b/zbx_env/var/lib/postgresql/data/base/12993/3598 new file mode 100644 index 000000000..e69de29bb diff --git a/zbx_env/var/lib/postgresql/data/base/12993/3598_vm b/zbx_env/var/lib/postgresql/data/base/12993/3598_vm new file mode 100644 index 000000000..e69de29bb diff --git a/zbx_env/var/lib/postgresql/data/base/12993/3599 b/zbx_env/var/lib/postgresql/data/base/12993/3599 new file mode 100644 index 000000000..d48e4a663 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/12993/3599 differ diff --git a/zbx_env/var/lib/postgresql/data/base/12993/3600 b/zbx_env/var/lib/postgresql/data/base/12993/3600 new file mode 100644 index 000000000..6f5b9c650 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/12993/3600 differ diff --git a/zbx_env/var/lib/postgresql/data/base/12993/3600_fsm b/zbx_env/var/lib/postgresql/data/base/12993/3600_fsm new file mode 100644 index 000000000..ffd4b1594 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/12993/3600_fsm differ diff --git a/zbx_env/var/lib/postgresql/data/base/12993/3600_vm b/zbx_env/var/lib/postgresql/data/base/12993/3600_vm new file mode 100644 index 000000000..eda7dfa8b Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/12993/3600_vm differ diff --git a/zbx_env/var/lib/postgresql/data/base/12993/3601 b/zbx_env/var/lib/postgresql/data/base/12993/3601 new file mode 100644 index 000000000..065e4e19a Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/12993/3601 differ diff --git a/zbx_env/var/lib/postgresql/data/base/12993/3601_fsm b/zbx_env/var/lib/postgresql/data/base/12993/3601_fsm new file mode 100644 index 000000000..7732d22b7 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/12993/3601_fsm differ diff --git a/zbx_env/var/lib/postgresql/data/base/12993/3601_vm b/zbx_env/var/lib/postgresql/data/base/12993/3601_vm new file mode 100644 index 000000000..ccebc9717 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/12993/3601_vm differ diff --git a/zbx_env/var/lib/postgresql/data/base/12993/3602 b/zbx_env/var/lib/postgresql/data/base/12993/3602 new file mode 100644 index 000000000..a4991530e Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/12993/3602 differ diff --git a/zbx_env/var/lib/postgresql/data/base/12993/3602_fsm b/zbx_env/var/lib/postgresql/data/base/12993/3602_fsm new file mode 100644 index 000000000..7cbf83404 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/12993/3602_fsm differ diff --git a/zbx_env/var/lib/postgresql/data/base/12993/3602_vm b/zbx_env/var/lib/postgresql/data/base/12993/3602_vm new file mode 100644 index 000000000..51db8d829 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/12993/3602_vm differ diff --git a/zbx_env/var/lib/postgresql/data/base/12993/3603 b/zbx_env/var/lib/postgresql/data/base/12993/3603 new file mode 100644 index 000000000..7ec261796 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/12993/3603 differ diff --git a/zbx_env/var/lib/postgresql/data/base/12993/3603_fsm b/zbx_env/var/lib/postgresql/data/base/12993/3603_fsm new file mode 100644 index 000000000..6d00d6859 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/12993/3603_fsm differ diff --git a/zbx_env/var/lib/postgresql/data/base/12993/3603_vm b/zbx_env/var/lib/postgresql/data/base/12993/3603_vm new file mode 100644 index 000000000..d7c5456fe Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/12993/3603_vm differ diff --git a/zbx_env/var/lib/postgresql/data/base/12993/3604 b/zbx_env/var/lib/postgresql/data/base/12993/3604 new file mode 100644 index 000000000..8c2e843bd Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/12993/3604 differ diff --git a/zbx_env/var/lib/postgresql/data/base/12993/3605 b/zbx_env/var/lib/postgresql/data/base/12993/3605 new file mode 100644 index 000000000..4c51aeb50 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/12993/3605 differ diff --git a/zbx_env/var/lib/postgresql/data/base/12993/3606 b/zbx_env/var/lib/postgresql/data/base/12993/3606 new file mode 100644 index 000000000..973f81de1 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/12993/3606 differ diff --git a/zbx_env/var/lib/postgresql/data/base/12993/3607 b/zbx_env/var/lib/postgresql/data/base/12993/3607 new file mode 100644 index 000000000..bb91efdd3 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/12993/3607 differ diff --git a/zbx_env/var/lib/postgresql/data/base/12993/3608 b/zbx_env/var/lib/postgresql/data/base/12993/3608 new file mode 100644 index 000000000..edd6032b2 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/12993/3608 differ diff --git a/zbx_env/var/lib/postgresql/data/base/12993/3609 b/zbx_env/var/lib/postgresql/data/base/12993/3609 new file mode 100644 index 000000000..d723790f6 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/12993/3609 differ diff --git a/zbx_env/var/lib/postgresql/data/base/12993/3712 b/zbx_env/var/lib/postgresql/data/base/12993/3712 new file mode 100644 index 000000000..972327c1f Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/12993/3712 differ diff --git a/zbx_env/var/lib/postgresql/data/base/12993/3764 b/zbx_env/var/lib/postgresql/data/base/12993/3764 new file mode 100644 index 000000000..8b7953258 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/12993/3764 differ diff --git a/zbx_env/var/lib/postgresql/data/base/12993/3764_fsm b/zbx_env/var/lib/postgresql/data/base/12993/3764_fsm new file mode 100644 index 000000000..d041693e8 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/12993/3764_fsm differ diff --git a/zbx_env/var/lib/postgresql/data/base/12993/3764_vm b/zbx_env/var/lib/postgresql/data/base/12993/3764_vm new file mode 100644 index 000000000..81e9a8d75 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/12993/3764_vm differ diff --git a/zbx_env/var/lib/postgresql/data/base/12993/3766 b/zbx_env/var/lib/postgresql/data/base/12993/3766 new file mode 100644 index 000000000..adc6bd05b Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/12993/3766 differ diff --git a/zbx_env/var/lib/postgresql/data/base/12993/3767 b/zbx_env/var/lib/postgresql/data/base/12993/3767 new file mode 100644 index 000000000..8a13ca18a Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/12993/3767 differ diff --git a/zbx_env/var/lib/postgresql/data/base/12993/3997 b/zbx_env/var/lib/postgresql/data/base/12993/3997 new file mode 100644 index 000000000..8bef1d51c Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/12993/3997 differ diff --git a/zbx_env/var/lib/postgresql/data/base/12993/5002 b/zbx_env/var/lib/postgresql/data/base/12993/5002 new file mode 100644 index 000000000..a107339a5 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/12993/5002 differ diff --git a/zbx_env/var/lib/postgresql/data/base/12993/548 b/zbx_env/var/lib/postgresql/data/base/12993/548 new file mode 100644 index 000000000..95a149a1b Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/12993/548 differ diff --git a/zbx_env/var/lib/postgresql/data/base/12993/549 b/zbx_env/var/lib/postgresql/data/base/12993/549 new file mode 100644 index 000000000..b8d72f418 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/12993/549 differ diff --git a/zbx_env/var/lib/postgresql/data/base/12993/6102 b/zbx_env/var/lib/postgresql/data/base/12993/6102 new file mode 100644 index 000000000..e69de29bb diff --git a/zbx_env/var/lib/postgresql/data/base/12993/6102_vm b/zbx_env/var/lib/postgresql/data/base/12993/6102_vm new file mode 100644 index 000000000..e69de29bb diff --git a/zbx_env/var/lib/postgresql/data/base/12993/6104 b/zbx_env/var/lib/postgresql/data/base/12993/6104 new file mode 100644 index 000000000..e69de29bb diff --git a/zbx_env/var/lib/postgresql/data/base/12993/6104_vm b/zbx_env/var/lib/postgresql/data/base/12993/6104_vm new file mode 100644 index 000000000..e69de29bb diff --git a/zbx_env/var/lib/postgresql/data/base/12993/6106 b/zbx_env/var/lib/postgresql/data/base/12993/6106 new file mode 100644 index 000000000..e69de29bb diff --git a/zbx_env/var/lib/postgresql/data/base/12993/6106_vm b/zbx_env/var/lib/postgresql/data/base/12993/6106_vm new file mode 100644 index 000000000..e69de29bb diff --git a/zbx_env/var/lib/postgresql/data/base/12993/6110 b/zbx_env/var/lib/postgresql/data/base/12993/6110 new file mode 100644 index 000000000..88905e93c Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/12993/6110 differ diff --git a/zbx_env/var/lib/postgresql/data/base/12993/6111 b/zbx_env/var/lib/postgresql/data/base/12993/6111 new file mode 100644 index 000000000..fc5fe1e60 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/12993/6111 differ diff --git a/zbx_env/var/lib/postgresql/data/base/12993/6112 b/zbx_env/var/lib/postgresql/data/base/12993/6112 new file mode 100644 index 000000000..2c009e3c0 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/12993/6112 differ diff --git a/zbx_env/var/lib/postgresql/data/base/12993/6113 b/zbx_env/var/lib/postgresql/data/base/12993/6113 new file mode 100644 index 000000000..09ca7f38a Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/12993/6113 differ diff --git a/zbx_env/var/lib/postgresql/data/base/12993/6117 b/zbx_env/var/lib/postgresql/data/base/12993/6117 new file mode 100644 index 000000000..b2a8f2639 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/12993/6117 differ diff --git a/zbx_env/var/lib/postgresql/data/base/12993/826 b/zbx_env/var/lib/postgresql/data/base/12993/826 new file mode 100644 index 000000000..e69de29bb diff --git a/zbx_env/var/lib/postgresql/data/base/12993/826_vm b/zbx_env/var/lib/postgresql/data/base/12993/826_vm new file mode 100644 index 000000000..e69de29bb diff --git a/zbx_env/var/lib/postgresql/data/base/12993/827 b/zbx_env/var/lib/postgresql/data/base/12993/827 new file mode 100644 index 000000000..45ca171f5 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/12993/827 differ diff --git a/zbx_env/var/lib/postgresql/data/base/12993/828 b/zbx_env/var/lib/postgresql/data/base/12993/828 new file mode 100644 index 000000000..9543d4d5d Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/12993/828 differ diff --git a/zbx_env/var/lib/postgresql/data/base/12993/PG_VERSION b/zbx_env/var/lib/postgresql/data/base/12993/PG_VERSION new file mode 100644 index 000000000..f599e28b8 --- /dev/null +++ b/zbx_env/var/lib/postgresql/data/base/12993/PG_VERSION @@ -0,0 +1 @@ +10 diff --git a/zbx_env/var/lib/postgresql/data/base/12993/pg_filenode.map b/zbx_env/var/lib/postgresql/data/base/12993/pg_filenode.map new file mode 100644 index 000000000..428c97e9a Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/12993/pg_filenode.map differ diff --git a/zbx_env/var/lib/postgresql/data/base/12994/112 b/zbx_env/var/lib/postgresql/data/base/12994/112 new file mode 100644 index 000000000..8b130c348 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/12994/112 differ diff --git a/zbx_env/var/lib/postgresql/data/base/12994/113 b/zbx_env/var/lib/postgresql/data/base/12994/113 new file mode 100644 index 000000000..aca9f3471 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/12994/113 differ diff --git a/zbx_env/var/lib/postgresql/data/base/12994/1247 b/zbx_env/var/lib/postgresql/data/base/12994/1247 new file mode 100644 index 000000000..cd6a460f8 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/12994/1247 differ diff --git a/zbx_env/var/lib/postgresql/data/base/12994/1247_fsm b/zbx_env/var/lib/postgresql/data/base/12994/1247_fsm new file mode 100644 index 000000000..2afa6c37d Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/12994/1247_fsm differ diff --git a/zbx_env/var/lib/postgresql/data/base/12994/1247_vm b/zbx_env/var/lib/postgresql/data/base/12994/1247_vm new file mode 100644 index 000000000..ee2235651 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/12994/1247_vm differ diff --git a/zbx_env/var/lib/postgresql/data/base/12994/1249 b/zbx_env/var/lib/postgresql/data/base/12994/1249 new file mode 100644 index 000000000..03ac5bae9 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/12994/1249 differ diff --git a/zbx_env/var/lib/postgresql/data/base/12994/1249_fsm b/zbx_env/var/lib/postgresql/data/base/12994/1249_fsm new file mode 100644 index 000000000..620636091 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/12994/1249_fsm differ diff --git a/zbx_env/var/lib/postgresql/data/base/12994/1249_vm b/zbx_env/var/lib/postgresql/data/base/12994/1249_vm new file mode 100644 index 000000000..dcac89013 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/12994/1249_vm differ diff --git a/zbx_env/var/lib/postgresql/data/base/12994/1255 b/zbx_env/var/lib/postgresql/data/base/12994/1255 new file mode 100644 index 000000000..5db8ed232 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/12994/1255 differ diff --git a/zbx_env/var/lib/postgresql/data/base/12994/1255_fsm b/zbx_env/var/lib/postgresql/data/base/12994/1255_fsm new file mode 100644 index 000000000..72da66c0e Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/12994/1255_fsm differ diff --git a/zbx_env/var/lib/postgresql/data/base/12994/1255_vm b/zbx_env/var/lib/postgresql/data/base/12994/1255_vm new file mode 100644 index 000000000..ba43c4836 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/12994/1255_vm differ diff --git a/zbx_env/var/lib/postgresql/data/base/12994/1259 b/zbx_env/var/lib/postgresql/data/base/12994/1259 new file mode 100644 index 000000000..fa008c711 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/12994/1259 differ diff --git a/zbx_env/var/lib/postgresql/data/base/12994/1259_fsm b/zbx_env/var/lib/postgresql/data/base/12994/1259_fsm new file mode 100644 index 000000000..e172feb90 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/12994/1259_fsm differ diff --git a/zbx_env/var/lib/postgresql/data/base/12994/1259_vm b/zbx_env/var/lib/postgresql/data/base/12994/1259_vm new file mode 100644 index 000000000..eba7a64a4 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/12994/1259_vm differ diff --git a/zbx_env/var/lib/postgresql/data/base/12994/12829 b/zbx_env/var/lib/postgresql/data/base/12994/12829 new file mode 100644 index 000000000..ac7e7e56a Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/12994/12829 differ diff --git a/zbx_env/var/lib/postgresql/data/base/12994/12829_fsm b/zbx_env/var/lib/postgresql/data/base/12994/12829_fsm new file mode 100644 index 000000000..19948ba3d Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/12994/12829_fsm differ diff --git a/zbx_env/var/lib/postgresql/data/base/12994/12829_vm b/zbx_env/var/lib/postgresql/data/base/12994/12829_vm new file mode 100644 index 000000000..648054e0f Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/12994/12829_vm differ diff --git a/zbx_env/var/lib/postgresql/data/base/12994/12831 b/zbx_env/var/lib/postgresql/data/base/12994/12831 new file mode 100644 index 000000000..e69de29bb diff --git a/zbx_env/var/lib/postgresql/data/base/12994/12833 b/zbx_env/var/lib/postgresql/data/base/12994/12833 new file mode 100644 index 000000000..5efdd5c62 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/12994/12833 differ diff --git a/zbx_env/var/lib/postgresql/data/base/12994/12834 b/zbx_env/var/lib/postgresql/data/base/12994/12834 new file mode 100644 index 000000000..6147c7e0a Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/12994/12834 differ diff --git a/zbx_env/var/lib/postgresql/data/base/12994/12834_fsm b/zbx_env/var/lib/postgresql/data/base/12994/12834_fsm new file mode 100644 index 000000000..ce7c26eb6 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/12994/12834_fsm differ diff --git a/zbx_env/var/lib/postgresql/data/base/12994/12834_vm b/zbx_env/var/lib/postgresql/data/base/12994/12834_vm new file mode 100644 index 000000000..025df3da1 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/12994/12834_vm differ diff --git a/zbx_env/var/lib/postgresql/data/base/12994/12836 b/zbx_env/var/lib/postgresql/data/base/12994/12836 new file mode 100644 index 000000000..e69de29bb diff --git a/zbx_env/var/lib/postgresql/data/base/12994/12838 b/zbx_env/var/lib/postgresql/data/base/12994/12838 new file mode 100644 index 000000000..ab2a70f83 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/12994/12838 differ diff --git a/zbx_env/var/lib/postgresql/data/base/12994/12839 b/zbx_env/var/lib/postgresql/data/base/12994/12839 new file mode 100644 index 000000000..5c80dacb3 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/12994/12839 differ diff --git a/zbx_env/var/lib/postgresql/data/base/12994/12839_fsm b/zbx_env/var/lib/postgresql/data/base/12994/12839_fsm new file mode 100644 index 000000000..98dc620ab Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/12994/12839_fsm differ diff --git a/zbx_env/var/lib/postgresql/data/base/12994/12839_vm b/zbx_env/var/lib/postgresql/data/base/12994/12839_vm new file mode 100644 index 000000000..602207e10 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/12994/12839_vm differ diff --git a/zbx_env/var/lib/postgresql/data/base/12994/12841 b/zbx_env/var/lib/postgresql/data/base/12994/12841 new file mode 100644 index 000000000..e69de29bb diff --git a/zbx_env/var/lib/postgresql/data/base/12994/12843 b/zbx_env/var/lib/postgresql/data/base/12994/12843 new file mode 100644 index 000000000..01f3abd46 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/12994/12843 differ diff --git a/zbx_env/var/lib/postgresql/data/base/12994/12844 b/zbx_env/var/lib/postgresql/data/base/12994/12844 new file mode 100644 index 000000000..0d56ac3f3 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/12994/12844 differ diff --git a/zbx_env/var/lib/postgresql/data/base/12994/12844_fsm b/zbx_env/var/lib/postgresql/data/base/12994/12844_fsm new file mode 100644 index 000000000..f8a0e258a Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/12994/12844_fsm differ diff --git a/zbx_env/var/lib/postgresql/data/base/12994/12844_vm b/zbx_env/var/lib/postgresql/data/base/12994/12844_vm new file mode 100644 index 000000000..a853e6e13 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/12994/12844_vm differ diff --git a/zbx_env/var/lib/postgresql/data/base/12994/12846 b/zbx_env/var/lib/postgresql/data/base/12994/12846 new file mode 100644 index 000000000..e69de29bb diff --git a/zbx_env/var/lib/postgresql/data/base/12994/12848 b/zbx_env/var/lib/postgresql/data/base/12994/12848 new file mode 100644 index 000000000..a3e9f3820 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/12994/12848 differ diff --git a/zbx_env/var/lib/postgresql/data/base/12994/12849 b/zbx_env/var/lib/postgresql/data/base/12994/12849 new file mode 100644 index 000000000..3db9a1627 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/12994/12849 differ diff --git a/zbx_env/var/lib/postgresql/data/base/12994/12849_fsm b/zbx_env/var/lib/postgresql/data/base/12994/12849_fsm new file mode 100644 index 000000000..ecbfaee5e Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/12994/12849_fsm differ diff --git a/zbx_env/var/lib/postgresql/data/base/12994/12849_vm b/zbx_env/var/lib/postgresql/data/base/12994/12849_vm new file mode 100644 index 000000000..dddd66103 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/12994/12849_vm differ diff --git a/zbx_env/var/lib/postgresql/data/base/12994/12851 b/zbx_env/var/lib/postgresql/data/base/12994/12851 new file mode 100644 index 000000000..e69de29bb diff --git a/zbx_env/var/lib/postgresql/data/base/12994/12853 b/zbx_env/var/lib/postgresql/data/base/12994/12853 new file mode 100644 index 000000000..4c0a3393e Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/12994/12853 differ diff --git a/zbx_env/var/lib/postgresql/data/base/12994/12854 b/zbx_env/var/lib/postgresql/data/base/12994/12854 new file mode 100644 index 000000000..afc566762 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/12994/12854 differ diff --git a/zbx_env/var/lib/postgresql/data/base/12994/12854_fsm b/zbx_env/var/lib/postgresql/data/base/12994/12854_fsm new file mode 100644 index 000000000..a836ddf75 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/12994/12854_fsm differ diff --git a/zbx_env/var/lib/postgresql/data/base/12994/12854_vm b/zbx_env/var/lib/postgresql/data/base/12994/12854_vm new file mode 100644 index 000000000..763cfb136 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/12994/12854_vm differ diff --git a/zbx_env/var/lib/postgresql/data/base/12994/12856 b/zbx_env/var/lib/postgresql/data/base/12994/12856 new file mode 100644 index 000000000..e69de29bb diff --git a/zbx_env/var/lib/postgresql/data/base/12994/12858 b/zbx_env/var/lib/postgresql/data/base/12994/12858 new file mode 100644 index 000000000..e81edf7b4 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/12994/12858 differ diff --git a/zbx_env/var/lib/postgresql/data/base/12994/12859 b/zbx_env/var/lib/postgresql/data/base/12994/12859 new file mode 100644 index 000000000..e69de29bb diff --git a/zbx_env/var/lib/postgresql/data/base/12994/12861 b/zbx_env/var/lib/postgresql/data/base/12994/12861 new file mode 100644 index 000000000..e69de29bb diff --git a/zbx_env/var/lib/postgresql/data/base/12994/12863 b/zbx_env/var/lib/postgresql/data/base/12994/12863 new file mode 100644 index 000000000..d4d51b3d9 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/12994/12863 differ diff --git a/zbx_env/var/lib/postgresql/data/base/12994/1417 b/zbx_env/var/lib/postgresql/data/base/12994/1417 new file mode 100644 index 000000000..e69de29bb diff --git a/zbx_env/var/lib/postgresql/data/base/12994/1417_vm b/zbx_env/var/lib/postgresql/data/base/12994/1417_vm new file mode 100644 index 000000000..e69de29bb diff --git a/zbx_env/var/lib/postgresql/data/base/12994/1418 b/zbx_env/var/lib/postgresql/data/base/12994/1418 new file mode 100644 index 000000000..e69de29bb diff --git a/zbx_env/var/lib/postgresql/data/base/12994/1418_vm b/zbx_env/var/lib/postgresql/data/base/12994/1418_vm new file mode 100644 index 000000000..e69de29bb diff --git a/zbx_env/var/lib/postgresql/data/base/12994/174 b/zbx_env/var/lib/postgresql/data/base/12994/174 new file mode 100644 index 000000000..edad2c14c Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/12994/174 differ diff --git a/zbx_env/var/lib/postgresql/data/base/12994/175 b/zbx_env/var/lib/postgresql/data/base/12994/175 new file mode 100644 index 000000000..a8041c693 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/12994/175 differ diff --git a/zbx_env/var/lib/postgresql/data/base/12994/2187 b/zbx_env/var/lib/postgresql/data/base/12994/2187 new file mode 100644 index 000000000..d39a0b782 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/12994/2187 differ diff --git a/zbx_env/var/lib/postgresql/data/base/12994/2224 b/zbx_env/var/lib/postgresql/data/base/12994/2224 new file mode 100644 index 000000000..e69de29bb diff --git a/zbx_env/var/lib/postgresql/data/base/12994/2224_vm b/zbx_env/var/lib/postgresql/data/base/12994/2224_vm new file mode 100644 index 000000000..e69de29bb diff --git a/zbx_env/var/lib/postgresql/data/base/12994/2328 b/zbx_env/var/lib/postgresql/data/base/12994/2328 new file mode 100644 index 000000000..e69de29bb diff --git a/zbx_env/var/lib/postgresql/data/base/12994/2328_vm b/zbx_env/var/lib/postgresql/data/base/12994/2328_vm new file mode 100644 index 000000000..e69de29bb diff --git a/zbx_env/var/lib/postgresql/data/base/12994/2336 b/zbx_env/var/lib/postgresql/data/base/12994/2336 new file mode 100644 index 000000000..e69de29bb diff --git a/zbx_env/var/lib/postgresql/data/base/12994/2336_vm b/zbx_env/var/lib/postgresql/data/base/12994/2336_vm new file mode 100644 index 000000000..e69de29bb diff --git a/zbx_env/var/lib/postgresql/data/base/12994/2337 b/zbx_env/var/lib/postgresql/data/base/12994/2337 new file mode 100644 index 000000000..c16658041 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/12994/2337 differ diff --git a/zbx_env/var/lib/postgresql/data/base/12994/2600 b/zbx_env/var/lib/postgresql/data/base/12994/2600 new file mode 100644 index 000000000..980d98e71 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/12994/2600 differ diff --git a/zbx_env/var/lib/postgresql/data/base/12994/2600_fsm b/zbx_env/var/lib/postgresql/data/base/12994/2600_fsm new file mode 100644 index 000000000..e63ffab3e Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/12994/2600_fsm differ diff --git a/zbx_env/var/lib/postgresql/data/base/12994/2600_vm b/zbx_env/var/lib/postgresql/data/base/12994/2600_vm new file mode 100644 index 000000000..be059bc07 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/12994/2600_vm differ diff --git a/zbx_env/var/lib/postgresql/data/base/12994/2601 b/zbx_env/var/lib/postgresql/data/base/12994/2601 new file mode 100644 index 000000000..1d44fa56b Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/12994/2601 differ diff --git a/zbx_env/var/lib/postgresql/data/base/12994/2601_fsm b/zbx_env/var/lib/postgresql/data/base/12994/2601_fsm new file mode 100644 index 000000000..0908076c0 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/12994/2601_fsm differ diff --git a/zbx_env/var/lib/postgresql/data/base/12994/2601_vm b/zbx_env/var/lib/postgresql/data/base/12994/2601_vm new file mode 100644 index 000000000..2aa5dcdb5 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/12994/2601_vm differ diff --git a/zbx_env/var/lib/postgresql/data/base/12994/2602 b/zbx_env/var/lib/postgresql/data/base/12994/2602 new file mode 100644 index 000000000..66f5754af Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/12994/2602 differ diff --git a/zbx_env/var/lib/postgresql/data/base/12994/2602_fsm b/zbx_env/var/lib/postgresql/data/base/12994/2602_fsm new file mode 100644 index 000000000..5ed43b88a Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/12994/2602_fsm differ diff --git a/zbx_env/var/lib/postgresql/data/base/12994/2602_vm b/zbx_env/var/lib/postgresql/data/base/12994/2602_vm new file mode 100644 index 000000000..d1b65bdb8 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/12994/2602_vm differ diff --git a/zbx_env/var/lib/postgresql/data/base/12994/2603 b/zbx_env/var/lib/postgresql/data/base/12994/2603 new file mode 100644 index 000000000..a51df6676 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/12994/2603 differ diff --git a/zbx_env/var/lib/postgresql/data/base/12994/2603_fsm b/zbx_env/var/lib/postgresql/data/base/12994/2603_fsm new file mode 100644 index 000000000..f507d0e9f Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/12994/2603_fsm differ diff --git a/zbx_env/var/lib/postgresql/data/base/12994/2603_vm b/zbx_env/var/lib/postgresql/data/base/12994/2603_vm new file mode 100644 index 000000000..95728db4a Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/12994/2603_vm differ diff --git a/zbx_env/var/lib/postgresql/data/base/12994/2604 b/zbx_env/var/lib/postgresql/data/base/12994/2604 new file mode 100644 index 000000000..e69de29bb diff --git a/zbx_env/var/lib/postgresql/data/base/12994/2604_vm b/zbx_env/var/lib/postgresql/data/base/12994/2604_vm new file mode 100644 index 000000000..e69de29bb diff --git a/zbx_env/var/lib/postgresql/data/base/12994/2605 b/zbx_env/var/lib/postgresql/data/base/12994/2605 new file mode 100644 index 000000000..45f16c079 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/12994/2605 differ diff --git a/zbx_env/var/lib/postgresql/data/base/12994/2605_fsm b/zbx_env/var/lib/postgresql/data/base/12994/2605_fsm new file mode 100644 index 000000000..c1b0e039f Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/12994/2605_fsm differ diff --git a/zbx_env/var/lib/postgresql/data/base/12994/2605_vm b/zbx_env/var/lib/postgresql/data/base/12994/2605_vm new file mode 100644 index 000000000..bd231050a Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/12994/2605_vm differ diff --git a/zbx_env/var/lib/postgresql/data/base/12994/2606 b/zbx_env/var/lib/postgresql/data/base/12994/2606 new file mode 100644 index 000000000..163eee21e Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/12994/2606 differ diff --git a/zbx_env/var/lib/postgresql/data/base/12994/2606_fsm b/zbx_env/var/lib/postgresql/data/base/12994/2606_fsm new file mode 100644 index 000000000..d37e4dd05 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/12994/2606_fsm differ diff --git a/zbx_env/var/lib/postgresql/data/base/12994/2606_vm b/zbx_env/var/lib/postgresql/data/base/12994/2606_vm new file mode 100644 index 000000000..4301f6b95 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/12994/2606_vm differ diff --git a/zbx_env/var/lib/postgresql/data/base/12994/2607 b/zbx_env/var/lib/postgresql/data/base/12994/2607 new file mode 100644 index 000000000..1ecadcbc8 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/12994/2607 differ diff --git a/zbx_env/var/lib/postgresql/data/base/12994/2607_fsm b/zbx_env/var/lib/postgresql/data/base/12994/2607_fsm new file mode 100644 index 000000000..5b066f1a3 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/12994/2607_fsm differ diff --git a/zbx_env/var/lib/postgresql/data/base/12994/2607_vm b/zbx_env/var/lib/postgresql/data/base/12994/2607_vm new file mode 100644 index 000000000..913a86769 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/12994/2607_vm differ diff --git a/zbx_env/var/lib/postgresql/data/base/12994/2608 b/zbx_env/var/lib/postgresql/data/base/12994/2608 new file mode 100644 index 000000000..49c4af1cd Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/12994/2608 differ diff --git a/zbx_env/var/lib/postgresql/data/base/12994/2608_fsm b/zbx_env/var/lib/postgresql/data/base/12994/2608_fsm new file mode 100644 index 000000000..106a100e5 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/12994/2608_fsm differ diff --git a/zbx_env/var/lib/postgresql/data/base/12994/2608_vm b/zbx_env/var/lib/postgresql/data/base/12994/2608_vm new file mode 100644 index 000000000..b4ec88c13 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/12994/2608_vm differ diff --git a/zbx_env/var/lib/postgresql/data/base/12994/2609 b/zbx_env/var/lib/postgresql/data/base/12994/2609 new file mode 100644 index 000000000..55d48b226 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/12994/2609 differ diff --git a/zbx_env/var/lib/postgresql/data/base/12994/2609_fsm b/zbx_env/var/lib/postgresql/data/base/12994/2609_fsm new file mode 100644 index 000000000..8fa6e5fa6 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/12994/2609_fsm differ diff --git a/zbx_env/var/lib/postgresql/data/base/12994/2609_vm b/zbx_env/var/lib/postgresql/data/base/12994/2609_vm new file mode 100644 index 000000000..a459f2c88 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/12994/2609_vm differ diff --git a/zbx_env/var/lib/postgresql/data/base/12994/2610 b/zbx_env/var/lib/postgresql/data/base/12994/2610 new file mode 100644 index 000000000..b2c1cffbb Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/12994/2610 differ diff --git a/zbx_env/var/lib/postgresql/data/base/12994/2610_fsm b/zbx_env/var/lib/postgresql/data/base/12994/2610_fsm new file mode 100644 index 000000000..6a556770a Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/12994/2610_fsm differ diff --git a/zbx_env/var/lib/postgresql/data/base/12994/2610_vm b/zbx_env/var/lib/postgresql/data/base/12994/2610_vm new file mode 100644 index 000000000..a2cb5435a Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/12994/2610_vm differ diff --git a/zbx_env/var/lib/postgresql/data/base/12994/2611 b/zbx_env/var/lib/postgresql/data/base/12994/2611 new file mode 100644 index 000000000..e69de29bb diff --git a/zbx_env/var/lib/postgresql/data/base/12994/2611_vm b/zbx_env/var/lib/postgresql/data/base/12994/2611_vm new file mode 100644 index 000000000..e69de29bb diff --git a/zbx_env/var/lib/postgresql/data/base/12994/2612 b/zbx_env/var/lib/postgresql/data/base/12994/2612 new file mode 100644 index 000000000..92362df9a Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/12994/2612 differ diff --git a/zbx_env/var/lib/postgresql/data/base/12994/2612_fsm b/zbx_env/var/lib/postgresql/data/base/12994/2612_fsm new file mode 100644 index 000000000..877976acf Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/12994/2612_fsm differ diff --git a/zbx_env/var/lib/postgresql/data/base/12994/2612_vm b/zbx_env/var/lib/postgresql/data/base/12994/2612_vm new file mode 100644 index 000000000..27aad7785 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/12994/2612_vm differ diff --git a/zbx_env/var/lib/postgresql/data/base/12994/2613 b/zbx_env/var/lib/postgresql/data/base/12994/2613 new file mode 100644 index 000000000..e69de29bb diff --git a/zbx_env/var/lib/postgresql/data/base/12994/2613_vm b/zbx_env/var/lib/postgresql/data/base/12994/2613_vm new file mode 100644 index 000000000..e69de29bb diff --git a/zbx_env/var/lib/postgresql/data/base/12994/2615 b/zbx_env/var/lib/postgresql/data/base/12994/2615 new file mode 100644 index 000000000..f81cca3d5 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/12994/2615 differ diff --git a/zbx_env/var/lib/postgresql/data/base/12994/2615_fsm b/zbx_env/var/lib/postgresql/data/base/12994/2615_fsm new file mode 100644 index 000000000..948882ce6 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/12994/2615_fsm differ diff --git a/zbx_env/var/lib/postgresql/data/base/12994/2615_vm b/zbx_env/var/lib/postgresql/data/base/12994/2615_vm new file mode 100644 index 000000000..0ceaa2a80 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/12994/2615_vm differ diff --git a/zbx_env/var/lib/postgresql/data/base/12994/2616 b/zbx_env/var/lib/postgresql/data/base/12994/2616 new file mode 100644 index 000000000..19f42857d Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/12994/2616 differ diff --git a/zbx_env/var/lib/postgresql/data/base/12994/2616_fsm b/zbx_env/var/lib/postgresql/data/base/12994/2616_fsm new file mode 100644 index 000000000..995a05b3c Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/12994/2616_fsm differ diff --git a/zbx_env/var/lib/postgresql/data/base/12994/2616_vm b/zbx_env/var/lib/postgresql/data/base/12994/2616_vm new file mode 100644 index 000000000..dfb995f88 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/12994/2616_vm differ diff --git a/zbx_env/var/lib/postgresql/data/base/12994/2617 b/zbx_env/var/lib/postgresql/data/base/12994/2617 new file mode 100644 index 000000000..d989d35e2 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/12994/2617 differ diff --git a/zbx_env/var/lib/postgresql/data/base/12994/2617_fsm b/zbx_env/var/lib/postgresql/data/base/12994/2617_fsm new file mode 100644 index 000000000..cb2a806b3 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/12994/2617_fsm differ diff --git a/zbx_env/var/lib/postgresql/data/base/12994/2617_vm b/zbx_env/var/lib/postgresql/data/base/12994/2617_vm new file mode 100644 index 000000000..678b7f7f3 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/12994/2617_vm differ diff --git a/zbx_env/var/lib/postgresql/data/base/12994/2618 b/zbx_env/var/lib/postgresql/data/base/12994/2618 new file mode 100644 index 000000000..8a17c1706 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/12994/2618 differ diff --git a/zbx_env/var/lib/postgresql/data/base/12994/2618_fsm b/zbx_env/var/lib/postgresql/data/base/12994/2618_fsm new file mode 100644 index 000000000..2379916aa Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/12994/2618_fsm differ diff --git a/zbx_env/var/lib/postgresql/data/base/12994/2618_vm b/zbx_env/var/lib/postgresql/data/base/12994/2618_vm new file mode 100644 index 000000000..4b06dd76e Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/12994/2618_vm differ diff --git a/zbx_env/var/lib/postgresql/data/base/12994/2619 b/zbx_env/var/lib/postgresql/data/base/12994/2619 new file mode 100644 index 000000000..c14ecd8fa Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/12994/2619 differ diff --git a/zbx_env/var/lib/postgresql/data/base/12994/2619_fsm b/zbx_env/var/lib/postgresql/data/base/12994/2619_fsm new file mode 100644 index 000000000..81f80a5b6 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/12994/2619_fsm differ diff --git a/zbx_env/var/lib/postgresql/data/base/12994/2619_vm b/zbx_env/var/lib/postgresql/data/base/12994/2619_vm new file mode 100644 index 000000000..554e94eb4 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/12994/2619_vm differ diff --git a/zbx_env/var/lib/postgresql/data/base/12994/2620 b/zbx_env/var/lib/postgresql/data/base/12994/2620 new file mode 100644 index 000000000..e69de29bb diff --git a/zbx_env/var/lib/postgresql/data/base/12994/2620_vm b/zbx_env/var/lib/postgresql/data/base/12994/2620_vm new file mode 100644 index 000000000..e69de29bb diff --git a/zbx_env/var/lib/postgresql/data/base/12994/2650 b/zbx_env/var/lib/postgresql/data/base/12994/2650 new file mode 100644 index 000000000..8a0d71d50 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/12994/2650 differ diff --git a/zbx_env/var/lib/postgresql/data/base/12994/2651 b/zbx_env/var/lib/postgresql/data/base/12994/2651 new file mode 100644 index 000000000..29e245e35 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/12994/2651 differ diff --git a/zbx_env/var/lib/postgresql/data/base/12994/2652 b/zbx_env/var/lib/postgresql/data/base/12994/2652 new file mode 100644 index 000000000..9e26143e4 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/12994/2652 differ diff --git a/zbx_env/var/lib/postgresql/data/base/12994/2653 b/zbx_env/var/lib/postgresql/data/base/12994/2653 new file mode 100644 index 000000000..e02db67df Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/12994/2653 differ diff --git a/zbx_env/var/lib/postgresql/data/base/12994/2654 b/zbx_env/var/lib/postgresql/data/base/12994/2654 new file mode 100644 index 000000000..95363af10 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/12994/2654 differ diff --git a/zbx_env/var/lib/postgresql/data/base/12994/2655 b/zbx_env/var/lib/postgresql/data/base/12994/2655 new file mode 100644 index 000000000..a9a12adf9 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/12994/2655 differ diff --git a/zbx_env/var/lib/postgresql/data/base/12994/2656 b/zbx_env/var/lib/postgresql/data/base/12994/2656 new file mode 100644 index 000000000..ba509bf8d Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/12994/2656 differ diff --git a/zbx_env/var/lib/postgresql/data/base/12994/2657 b/zbx_env/var/lib/postgresql/data/base/12994/2657 new file mode 100644 index 000000000..fbc747331 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/12994/2657 differ diff --git a/zbx_env/var/lib/postgresql/data/base/12994/2658 b/zbx_env/var/lib/postgresql/data/base/12994/2658 new file mode 100644 index 000000000..d2ceec244 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/12994/2658 differ diff --git a/zbx_env/var/lib/postgresql/data/base/12994/2659 b/zbx_env/var/lib/postgresql/data/base/12994/2659 new file mode 100644 index 000000000..1f1a4947f Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/12994/2659 differ diff --git a/zbx_env/var/lib/postgresql/data/base/12994/2660 b/zbx_env/var/lib/postgresql/data/base/12994/2660 new file mode 100644 index 000000000..d16f41a42 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/12994/2660 differ diff --git a/zbx_env/var/lib/postgresql/data/base/12994/2661 b/zbx_env/var/lib/postgresql/data/base/12994/2661 new file mode 100644 index 000000000..59ade838f Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/12994/2661 differ diff --git a/zbx_env/var/lib/postgresql/data/base/12994/2662 b/zbx_env/var/lib/postgresql/data/base/12994/2662 new file mode 100644 index 000000000..6026eaac9 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/12994/2662 differ diff --git a/zbx_env/var/lib/postgresql/data/base/12994/2663 b/zbx_env/var/lib/postgresql/data/base/12994/2663 new file mode 100644 index 000000000..7ce14003d Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/12994/2663 differ diff --git a/zbx_env/var/lib/postgresql/data/base/12994/2664 b/zbx_env/var/lib/postgresql/data/base/12994/2664 new file mode 100644 index 000000000..c44bbad79 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/12994/2664 differ diff --git a/zbx_env/var/lib/postgresql/data/base/12994/2665 b/zbx_env/var/lib/postgresql/data/base/12994/2665 new file mode 100644 index 000000000..63ca88a3e Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/12994/2665 differ diff --git a/zbx_env/var/lib/postgresql/data/base/12994/2666 b/zbx_env/var/lib/postgresql/data/base/12994/2666 new file mode 100644 index 000000000..e7c92d1f5 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/12994/2666 differ diff --git a/zbx_env/var/lib/postgresql/data/base/12994/2667 b/zbx_env/var/lib/postgresql/data/base/12994/2667 new file mode 100644 index 000000000..5755a624a Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/12994/2667 differ diff --git a/zbx_env/var/lib/postgresql/data/base/12994/2668 b/zbx_env/var/lib/postgresql/data/base/12994/2668 new file mode 100644 index 000000000..11a6b5270 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/12994/2668 differ diff --git a/zbx_env/var/lib/postgresql/data/base/12994/2669 b/zbx_env/var/lib/postgresql/data/base/12994/2669 new file mode 100644 index 000000000..79d31ebcc Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/12994/2669 differ diff --git a/zbx_env/var/lib/postgresql/data/base/12994/2670 b/zbx_env/var/lib/postgresql/data/base/12994/2670 new file mode 100644 index 000000000..6184b908d Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/12994/2670 differ diff --git a/zbx_env/var/lib/postgresql/data/base/12994/2673 b/zbx_env/var/lib/postgresql/data/base/12994/2673 new file mode 100644 index 000000000..7f74fdd5c Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/12994/2673 differ diff --git a/zbx_env/var/lib/postgresql/data/base/12994/2674 b/zbx_env/var/lib/postgresql/data/base/12994/2674 new file mode 100644 index 000000000..1fb21fcba Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/12994/2674 differ diff --git a/zbx_env/var/lib/postgresql/data/base/12994/2675 b/zbx_env/var/lib/postgresql/data/base/12994/2675 new file mode 100644 index 000000000..c88a53bd5 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/12994/2675 differ diff --git a/zbx_env/var/lib/postgresql/data/base/12994/2678 b/zbx_env/var/lib/postgresql/data/base/12994/2678 new file mode 100644 index 000000000..5239feded Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/12994/2678 differ diff --git a/zbx_env/var/lib/postgresql/data/base/12994/2679 b/zbx_env/var/lib/postgresql/data/base/12994/2679 new file mode 100644 index 000000000..cb7b561bb Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/12994/2679 differ diff --git a/zbx_env/var/lib/postgresql/data/base/12994/2680 b/zbx_env/var/lib/postgresql/data/base/12994/2680 new file mode 100644 index 000000000..876da95b2 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/12994/2680 differ diff --git a/zbx_env/var/lib/postgresql/data/base/12994/2681 b/zbx_env/var/lib/postgresql/data/base/12994/2681 new file mode 100644 index 000000000..4987623fd Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/12994/2681 differ diff --git a/zbx_env/var/lib/postgresql/data/base/12994/2682 b/zbx_env/var/lib/postgresql/data/base/12994/2682 new file mode 100644 index 000000000..7943e766e Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/12994/2682 differ diff --git a/zbx_env/var/lib/postgresql/data/base/12994/2683 b/zbx_env/var/lib/postgresql/data/base/12994/2683 new file mode 100644 index 000000000..636f10144 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/12994/2683 differ diff --git a/zbx_env/var/lib/postgresql/data/base/12994/2684 b/zbx_env/var/lib/postgresql/data/base/12994/2684 new file mode 100644 index 000000000..f54f9598d Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/12994/2684 differ diff --git a/zbx_env/var/lib/postgresql/data/base/12994/2685 b/zbx_env/var/lib/postgresql/data/base/12994/2685 new file mode 100644 index 000000000..95d7fde28 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/12994/2685 differ diff --git a/zbx_env/var/lib/postgresql/data/base/12994/2686 b/zbx_env/var/lib/postgresql/data/base/12994/2686 new file mode 100644 index 000000000..bc86cec09 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/12994/2686 differ diff --git a/zbx_env/var/lib/postgresql/data/base/12994/2687 b/zbx_env/var/lib/postgresql/data/base/12994/2687 new file mode 100644 index 000000000..f080504d5 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/12994/2687 differ diff --git a/zbx_env/var/lib/postgresql/data/base/12994/2688 b/zbx_env/var/lib/postgresql/data/base/12994/2688 new file mode 100644 index 000000000..47572a662 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/12994/2688 differ diff --git a/zbx_env/var/lib/postgresql/data/base/12994/2689 b/zbx_env/var/lib/postgresql/data/base/12994/2689 new file mode 100644 index 000000000..4333d769f Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/12994/2689 differ diff --git a/zbx_env/var/lib/postgresql/data/base/12994/2690 b/zbx_env/var/lib/postgresql/data/base/12994/2690 new file mode 100644 index 000000000..89fab01a4 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/12994/2690 differ diff --git a/zbx_env/var/lib/postgresql/data/base/12994/2691 b/zbx_env/var/lib/postgresql/data/base/12994/2691 new file mode 100644 index 000000000..08dade0dd Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/12994/2691 differ diff --git a/zbx_env/var/lib/postgresql/data/base/12994/2692 b/zbx_env/var/lib/postgresql/data/base/12994/2692 new file mode 100644 index 000000000..150467201 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/12994/2692 differ diff --git a/zbx_env/var/lib/postgresql/data/base/12994/2693 b/zbx_env/var/lib/postgresql/data/base/12994/2693 new file mode 100644 index 000000000..ef76c5b32 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/12994/2693 differ diff --git a/zbx_env/var/lib/postgresql/data/base/12994/2696 b/zbx_env/var/lib/postgresql/data/base/12994/2696 new file mode 100644 index 000000000..69014bb1f Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/12994/2696 differ diff --git a/zbx_env/var/lib/postgresql/data/base/12994/2699 b/zbx_env/var/lib/postgresql/data/base/12994/2699 new file mode 100644 index 000000000..9a9b94663 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/12994/2699 differ diff --git a/zbx_env/var/lib/postgresql/data/base/12994/2701 b/zbx_env/var/lib/postgresql/data/base/12994/2701 new file mode 100644 index 000000000..0376dbefa Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/12994/2701 differ diff --git a/zbx_env/var/lib/postgresql/data/base/12994/2702 b/zbx_env/var/lib/postgresql/data/base/12994/2702 new file mode 100644 index 000000000..b2e4287f6 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/12994/2702 differ diff --git a/zbx_env/var/lib/postgresql/data/base/12994/2703 b/zbx_env/var/lib/postgresql/data/base/12994/2703 new file mode 100644 index 000000000..d7477ab76 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/12994/2703 differ diff --git a/zbx_env/var/lib/postgresql/data/base/12994/2704 b/zbx_env/var/lib/postgresql/data/base/12994/2704 new file mode 100644 index 000000000..a18deab09 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/12994/2704 differ diff --git a/zbx_env/var/lib/postgresql/data/base/12994/2753 b/zbx_env/var/lib/postgresql/data/base/12994/2753 new file mode 100644 index 000000000..73f903165 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/12994/2753 differ diff --git a/zbx_env/var/lib/postgresql/data/base/12994/2753_fsm b/zbx_env/var/lib/postgresql/data/base/12994/2753_fsm new file mode 100644 index 000000000..0787df53d Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/12994/2753_fsm differ diff --git a/zbx_env/var/lib/postgresql/data/base/12994/2753_vm b/zbx_env/var/lib/postgresql/data/base/12994/2753_vm new file mode 100644 index 000000000..6c8ced900 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/12994/2753_vm differ diff --git a/zbx_env/var/lib/postgresql/data/base/12994/2754 b/zbx_env/var/lib/postgresql/data/base/12994/2754 new file mode 100644 index 000000000..5a44a7962 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/12994/2754 differ diff --git a/zbx_env/var/lib/postgresql/data/base/12994/2755 b/zbx_env/var/lib/postgresql/data/base/12994/2755 new file mode 100644 index 000000000..fac11c420 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/12994/2755 differ diff --git a/zbx_env/var/lib/postgresql/data/base/12994/2756 b/zbx_env/var/lib/postgresql/data/base/12994/2756 new file mode 100644 index 000000000..5b9bc166b Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/12994/2756 differ diff --git a/zbx_env/var/lib/postgresql/data/base/12994/2757 b/zbx_env/var/lib/postgresql/data/base/12994/2757 new file mode 100644 index 000000000..1bade66ff Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/12994/2757 differ diff --git a/zbx_env/var/lib/postgresql/data/base/12994/2830 b/zbx_env/var/lib/postgresql/data/base/12994/2830 new file mode 100644 index 000000000..e69de29bb diff --git a/zbx_env/var/lib/postgresql/data/base/12994/2830_vm b/zbx_env/var/lib/postgresql/data/base/12994/2830_vm new file mode 100644 index 000000000..e69de29bb diff --git a/zbx_env/var/lib/postgresql/data/base/12994/2831 b/zbx_env/var/lib/postgresql/data/base/12994/2831 new file mode 100644 index 000000000..b0c0ed88c Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/12994/2831 differ diff --git a/zbx_env/var/lib/postgresql/data/base/12994/2832 b/zbx_env/var/lib/postgresql/data/base/12994/2832 new file mode 100644 index 000000000..e69de29bb diff --git a/zbx_env/var/lib/postgresql/data/base/12994/2832_vm b/zbx_env/var/lib/postgresql/data/base/12994/2832_vm new file mode 100644 index 000000000..e69de29bb diff --git a/zbx_env/var/lib/postgresql/data/base/12994/2833 b/zbx_env/var/lib/postgresql/data/base/12994/2833 new file mode 100644 index 000000000..e70ee62b0 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/12994/2833 differ diff --git a/zbx_env/var/lib/postgresql/data/base/12994/2834 b/zbx_env/var/lib/postgresql/data/base/12994/2834 new file mode 100644 index 000000000..e69de29bb diff --git a/zbx_env/var/lib/postgresql/data/base/12994/2834_vm b/zbx_env/var/lib/postgresql/data/base/12994/2834_vm new file mode 100644 index 000000000..e69de29bb diff --git a/zbx_env/var/lib/postgresql/data/base/12994/2835 b/zbx_env/var/lib/postgresql/data/base/12994/2835 new file mode 100644 index 000000000..c65e18b5e Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/12994/2835 differ diff --git a/zbx_env/var/lib/postgresql/data/base/12994/2836 b/zbx_env/var/lib/postgresql/data/base/12994/2836 new file mode 100644 index 000000000..e69de29bb diff --git a/zbx_env/var/lib/postgresql/data/base/12994/2836_vm b/zbx_env/var/lib/postgresql/data/base/12994/2836_vm new file mode 100644 index 000000000..e69de29bb diff --git a/zbx_env/var/lib/postgresql/data/base/12994/2837 b/zbx_env/var/lib/postgresql/data/base/12994/2837 new file mode 100644 index 000000000..4ef00f573 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/12994/2837 differ diff --git a/zbx_env/var/lib/postgresql/data/base/12994/2838 b/zbx_env/var/lib/postgresql/data/base/12994/2838 new file mode 100644 index 000000000..5efb4501d Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/12994/2838 differ diff --git a/zbx_env/var/lib/postgresql/data/base/12994/2838_fsm b/zbx_env/var/lib/postgresql/data/base/12994/2838_fsm new file mode 100644 index 000000000..72ba496ec Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/12994/2838_fsm differ diff --git a/zbx_env/var/lib/postgresql/data/base/12994/2838_vm b/zbx_env/var/lib/postgresql/data/base/12994/2838_vm new file mode 100644 index 000000000..962055edb Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/12994/2838_vm differ diff --git a/zbx_env/var/lib/postgresql/data/base/12994/2839 b/zbx_env/var/lib/postgresql/data/base/12994/2839 new file mode 100644 index 000000000..9b1c1e571 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/12994/2839 differ diff --git a/zbx_env/var/lib/postgresql/data/base/12994/2840 b/zbx_env/var/lib/postgresql/data/base/12994/2840 new file mode 100644 index 000000000..840ad144c Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/12994/2840 differ diff --git a/zbx_env/var/lib/postgresql/data/base/12994/2840_fsm b/zbx_env/var/lib/postgresql/data/base/12994/2840_fsm new file mode 100644 index 000000000..7d14d0cfe Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/12994/2840_fsm differ diff --git a/zbx_env/var/lib/postgresql/data/base/12994/2840_vm b/zbx_env/var/lib/postgresql/data/base/12994/2840_vm new file mode 100644 index 000000000..fee0e0473 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/12994/2840_vm differ diff --git a/zbx_env/var/lib/postgresql/data/base/12994/2841 b/zbx_env/var/lib/postgresql/data/base/12994/2841 new file mode 100644 index 000000000..44212c4cd Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/12994/2841 differ diff --git a/zbx_env/var/lib/postgresql/data/base/12994/2995 b/zbx_env/var/lib/postgresql/data/base/12994/2995 new file mode 100644 index 000000000..e69de29bb diff --git a/zbx_env/var/lib/postgresql/data/base/12994/2995_vm b/zbx_env/var/lib/postgresql/data/base/12994/2995_vm new file mode 100644 index 000000000..e69de29bb diff --git a/zbx_env/var/lib/postgresql/data/base/12994/2996 b/zbx_env/var/lib/postgresql/data/base/12994/2996 new file mode 100644 index 000000000..a1e392a5f Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/12994/2996 differ diff --git a/zbx_env/var/lib/postgresql/data/base/12994/3079 b/zbx_env/var/lib/postgresql/data/base/12994/3079 new file mode 100644 index 000000000..2ac5237cb Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/12994/3079 differ diff --git a/zbx_env/var/lib/postgresql/data/base/12994/3079_fsm b/zbx_env/var/lib/postgresql/data/base/12994/3079_fsm new file mode 100644 index 000000000..7732d22b7 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/12994/3079_fsm differ diff --git a/zbx_env/var/lib/postgresql/data/base/12994/3079_vm b/zbx_env/var/lib/postgresql/data/base/12994/3079_vm new file mode 100644 index 000000000..44a2ff91e Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/12994/3079_vm differ diff --git a/zbx_env/var/lib/postgresql/data/base/12994/3080 b/zbx_env/var/lib/postgresql/data/base/12994/3080 new file mode 100644 index 000000000..91f8d4902 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/12994/3080 differ diff --git a/zbx_env/var/lib/postgresql/data/base/12994/3081 b/zbx_env/var/lib/postgresql/data/base/12994/3081 new file mode 100644 index 000000000..8bc74ec63 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/12994/3081 differ diff --git a/zbx_env/var/lib/postgresql/data/base/12994/3085 b/zbx_env/var/lib/postgresql/data/base/12994/3085 new file mode 100644 index 000000000..05c256fa5 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/12994/3085 differ diff --git a/zbx_env/var/lib/postgresql/data/base/12994/3118 b/zbx_env/var/lib/postgresql/data/base/12994/3118 new file mode 100644 index 000000000..e69de29bb diff --git a/zbx_env/var/lib/postgresql/data/base/12994/3118_vm b/zbx_env/var/lib/postgresql/data/base/12994/3118_vm new file mode 100644 index 000000000..e69de29bb diff --git a/zbx_env/var/lib/postgresql/data/base/12994/3119 b/zbx_env/var/lib/postgresql/data/base/12994/3119 new file mode 100644 index 000000000..cdf9c180f Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/12994/3119 differ diff --git a/zbx_env/var/lib/postgresql/data/base/12994/3164 b/zbx_env/var/lib/postgresql/data/base/12994/3164 new file mode 100644 index 000000000..a58c39469 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/12994/3164 differ diff --git a/zbx_env/var/lib/postgresql/data/base/12994/3256 b/zbx_env/var/lib/postgresql/data/base/12994/3256 new file mode 100644 index 000000000..e69de29bb diff --git a/zbx_env/var/lib/postgresql/data/base/12994/3256_vm b/zbx_env/var/lib/postgresql/data/base/12994/3256_vm new file mode 100644 index 000000000..e69de29bb diff --git a/zbx_env/var/lib/postgresql/data/base/12994/3257 b/zbx_env/var/lib/postgresql/data/base/12994/3257 new file mode 100644 index 000000000..fb1ff935a Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/12994/3257 differ diff --git a/zbx_env/var/lib/postgresql/data/base/12994/3258 b/zbx_env/var/lib/postgresql/data/base/12994/3258 new file mode 100644 index 000000000..0b6aca02a Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/12994/3258 differ diff --git a/zbx_env/var/lib/postgresql/data/base/12994/3350 b/zbx_env/var/lib/postgresql/data/base/12994/3350 new file mode 100644 index 000000000..e69de29bb diff --git a/zbx_env/var/lib/postgresql/data/base/12994/3350_vm b/zbx_env/var/lib/postgresql/data/base/12994/3350_vm new file mode 100644 index 000000000..e69de29bb diff --git a/zbx_env/var/lib/postgresql/data/base/12994/3351 b/zbx_env/var/lib/postgresql/data/base/12994/3351 new file mode 100644 index 000000000..485a7f339 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/12994/3351 differ diff --git a/zbx_env/var/lib/postgresql/data/base/12994/3379 b/zbx_env/var/lib/postgresql/data/base/12994/3379 new file mode 100644 index 000000000..2b3165f78 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/12994/3379 differ diff --git a/zbx_env/var/lib/postgresql/data/base/12994/3380 b/zbx_env/var/lib/postgresql/data/base/12994/3380 new file mode 100644 index 000000000..262c95057 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/12994/3380 differ diff --git a/zbx_env/var/lib/postgresql/data/base/12994/3381 b/zbx_env/var/lib/postgresql/data/base/12994/3381 new file mode 100644 index 000000000..e69de29bb diff --git a/zbx_env/var/lib/postgresql/data/base/12994/3381_vm b/zbx_env/var/lib/postgresql/data/base/12994/3381_vm new file mode 100644 index 000000000..e69de29bb diff --git a/zbx_env/var/lib/postgresql/data/base/12994/3394 b/zbx_env/var/lib/postgresql/data/base/12994/3394 new file mode 100644 index 000000000..b6a9edeae Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/12994/3394 differ diff --git a/zbx_env/var/lib/postgresql/data/base/12994/3394_fsm b/zbx_env/var/lib/postgresql/data/base/12994/3394_fsm new file mode 100644 index 000000000..9bf23e33a Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/12994/3394_fsm differ diff --git a/zbx_env/var/lib/postgresql/data/base/12994/3394_vm b/zbx_env/var/lib/postgresql/data/base/12994/3394_vm new file mode 100644 index 000000000..450f3d7c2 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/12994/3394_vm differ diff --git a/zbx_env/var/lib/postgresql/data/base/12994/3395 b/zbx_env/var/lib/postgresql/data/base/12994/3395 new file mode 100644 index 000000000..5bd6238c1 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/12994/3395 differ diff --git a/zbx_env/var/lib/postgresql/data/base/12994/3439 b/zbx_env/var/lib/postgresql/data/base/12994/3439 new file mode 100644 index 000000000..e69de29bb diff --git a/zbx_env/var/lib/postgresql/data/base/12994/3439_vm b/zbx_env/var/lib/postgresql/data/base/12994/3439_vm new file mode 100644 index 000000000..e69de29bb diff --git a/zbx_env/var/lib/postgresql/data/base/12994/3440 b/zbx_env/var/lib/postgresql/data/base/12994/3440 new file mode 100644 index 000000000..bae4de162 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/12994/3440 differ diff --git a/zbx_env/var/lib/postgresql/data/base/12994/3455 b/zbx_env/var/lib/postgresql/data/base/12994/3455 new file mode 100644 index 000000000..0f1a7376e Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/12994/3455 differ diff --git a/zbx_env/var/lib/postgresql/data/base/12994/3456 b/zbx_env/var/lib/postgresql/data/base/12994/3456 new file mode 100644 index 000000000..2bc0341f9 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/12994/3456 differ diff --git a/zbx_env/var/lib/postgresql/data/base/12994/3456_fsm b/zbx_env/var/lib/postgresql/data/base/12994/3456_fsm new file mode 100644 index 000000000..ea43ee9d4 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/12994/3456_fsm differ diff --git a/zbx_env/var/lib/postgresql/data/base/12994/3456_vm b/zbx_env/var/lib/postgresql/data/base/12994/3456_vm new file mode 100644 index 000000000..7ac9233fc Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/12994/3456_vm differ diff --git a/zbx_env/var/lib/postgresql/data/base/12994/3466 b/zbx_env/var/lib/postgresql/data/base/12994/3466 new file mode 100644 index 000000000..e69de29bb diff --git a/zbx_env/var/lib/postgresql/data/base/12994/3466_vm b/zbx_env/var/lib/postgresql/data/base/12994/3466_vm new file mode 100644 index 000000000..e69de29bb diff --git a/zbx_env/var/lib/postgresql/data/base/12994/3467 b/zbx_env/var/lib/postgresql/data/base/12994/3467 new file mode 100644 index 000000000..d28a66e55 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/12994/3467 differ diff --git a/zbx_env/var/lib/postgresql/data/base/12994/3468 b/zbx_env/var/lib/postgresql/data/base/12994/3468 new file mode 100644 index 000000000..79b6e9472 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/12994/3468 differ diff --git a/zbx_env/var/lib/postgresql/data/base/12994/3501 b/zbx_env/var/lib/postgresql/data/base/12994/3501 new file mode 100644 index 000000000..e69de29bb diff --git a/zbx_env/var/lib/postgresql/data/base/12994/3501_vm b/zbx_env/var/lib/postgresql/data/base/12994/3501_vm new file mode 100644 index 000000000..e69de29bb diff --git a/zbx_env/var/lib/postgresql/data/base/12994/3502 b/zbx_env/var/lib/postgresql/data/base/12994/3502 new file mode 100644 index 000000000..061a18dc6 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/12994/3502 differ diff --git a/zbx_env/var/lib/postgresql/data/base/12994/3503 b/zbx_env/var/lib/postgresql/data/base/12994/3503 new file mode 100644 index 000000000..ebd24c5cb Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/12994/3503 differ diff --git a/zbx_env/var/lib/postgresql/data/base/12994/3534 b/zbx_env/var/lib/postgresql/data/base/12994/3534 new file mode 100644 index 000000000..4fdd31ed7 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/12994/3534 differ diff --git a/zbx_env/var/lib/postgresql/data/base/12994/3541 b/zbx_env/var/lib/postgresql/data/base/12994/3541 new file mode 100644 index 000000000..ad69913a9 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/12994/3541 differ diff --git a/zbx_env/var/lib/postgresql/data/base/12994/3541_fsm b/zbx_env/var/lib/postgresql/data/base/12994/3541_fsm new file mode 100644 index 000000000..62f015667 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/12994/3541_fsm differ diff --git a/zbx_env/var/lib/postgresql/data/base/12994/3541_vm b/zbx_env/var/lib/postgresql/data/base/12994/3541_vm new file mode 100644 index 000000000..338f46301 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/12994/3541_vm differ diff --git a/zbx_env/var/lib/postgresql/data/base/12994/3542 b/zbx_env/var/lib/postgresql/data/base/12994/3542 new file mode 100644 index 000000000..bf7c3330f Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/12994/3542 differ diff --git a/zbx_env/var/lib/postgresql/data/base/12994/3574 b/zbx_env/var/lib/postgresql/data/base/12994/3574 new file mode 100644 index 000000000..0861ca0e2 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/12994/3574 differ diff --git a/zbx_env/var/lib/postgresql/data/base/12994/3575 b/zbx_env/var/lib/postgresql/data/base/12994/3575 new file mode 100644 index 000000000..2b57a8ed5 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/12994/3575 differ diff --git a/zbx_env/var/lib/postgresql/data/base/12994/3576 b/zbx_env/var/lib/postgresql/data/base/12994/3576 new file mode 100644 index 000000000..e69de29bb diff --git a/zbx_env/var/lib/postgresql/data/base/12994/3576_vm b/zbx_env/var/lib/postgresql/data/base/12994/3576_vm new file mode 100644 index 000000000..e69de29bb diff --git a/zbx_env/var/lib/postgresql/data/base/12994/3596 b/zbx_env/var/lib/postgresql/data/base/12994/3596 new file mode 100644 index 000000000..e69de29bb diff --git a/zbx_env/var/lib/postgresql/data/base/12994/3596_vm b/zbx_env/var/lib/postgresql/data/base/12994/3596_vm new file mode 100644 index 000000000..e69de29bb diff --git a/zbx_env/var/lib/postgresql/data/base/12994/3597 b/zbx_env/var/lib/postgresql/data/base/12994/3597 new file mode 100644 index 000000000..8684c812e Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/12994/3597 differ diff --git a/zbx_env/var/lib/postgresql/data/base/12994/3598 b/zbx_env/var/lib/postgresql/data/base/12994/3598 new file mode 100644 index 000000000..e69de29bb diff --git a/zbx_env/var/lib/postgresql/data/base/12994/3598_vm b/zbx_env/var/lib/postgresql/data/base/12994/3598_vm new file mode 100644 index 000000000..e69de29bb diff --git a/zbx_env/var/lib/postgresql/data/base/12994/3599 b/zbx_env/var/lib/postgresql/data/base/12994/3599 new file mode 100644 index 000000000..d48e4a663 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/12994/3599 differ diff --git a/zbx_env/var/lib/postgresql/data/base/12994/3600 b/zbx_env/var/lib/postgresql/data/base/12994/3600 new file mode 100644 index 000000000..6f5b9c650 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/12994/3600 differ diff --git a/zbx_env/var/lib/postgresql/data/base/12994/3600_fsm b/zbx_env/var/lib/postgresql/data/base/12994/3600_fsm new file mode 100644 index 000000000..ffd4b1594 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/12994/3600_fsm differ diff --git a/zbx_env/var/lib/postgresql/data/base/12994/3600_vm b/zbx_env/var/lib/postgresql/data/base/12994/3600_vm new file mode 100644 index 000000000..eda7dfa8b Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/12994/3600_vm differ diff --git a/zbx_env/var/lib/postgresql/data/base/12994/3601 b/zbx_env/var/lib/postgresql/data/base/12994/3601 new file mode 100644 index 000000000..065e4e19a Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/12994/3601 differ diff --git a/zbx_env/var/lib/postgresql/data/base/12994/3601_fsm b/zbx_env/var/lib/postgresql/data/base/12994/3601_fsm new file mode 100644 index 000000000..7732d22b7 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/12994/3601_fsm differ diff --git a/zbx_env/var/lib/postgresql/data/base/12994/3601_vm b/zbx_env/var/lib/postgresql/data/base/12994/3601_vm new file mode 100644 index 000000000..ccebc9717 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/12994/3601_vm differ diff --git a/zbx_env/var/lib/postgresql/data/base/12994/3602 b/zbx_env/var/lib/postgresql/data/base/12994/3602 new file mode 100644 index 000000000..a4991530e Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/12994/3602 differ diff --git a/zbx_env/var/lib/postgresql/data/base/12994/3602_fsm b/zbx_env/var/lib/postgresql/data/base/12994/3602_fsm new file mode 100644 index 000000000..7cbf83404 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/12994/3602_fsm differ diff --git a/zbx_env/var/lib/postgresql/data/base/12994/3602_vm b/zbx_env/var/lib/postgresql/data/base/12994/3602_vm new file mode 100644 index 000000000..51db8d829 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/12994/3602_vm differ diff --git a/zbx_env/var/lib/postgresql/data/base/12994/3603 b/zbx_env/var/lib/postgresql/data/base/12994/3603 new file mode 100644 index 000000000..7ec261796 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/12994/3603 differ diff --git a/zbx_env/var/lib/postgresql/data/base/12994/3603_fsm b/zbx_env/var/lib/postgresql/data/base/12994/3603_fsm new file mode 100644 index 000000000..6d00d6859 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/12994/3603_fsm differ diff --git a/zbx_env/var/lib/postgresql/data/base/12994/3603_vm b/zbx_env/var/lib/postgresql/data/base/12994/3603_vm new file mode 100644 index 000000000..d7c5456fe Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/12994/3603_vm differ diff --git a/zbx_env/var/lib/postgresql/data/base/12994/3604 b/zbx_env/var/lib/postgresql/data/base/12994/3604 new file mode 100644 index 000000000..8c2e843bd Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/12994/3604 differ diff --git a/zbx_env/var/lib/postgresql/data/base/12994/3605 b/zbx_env/var/lib/postgresql/data/base/12994/3605 new file mode 100644 index 000000000..4c51aeb50 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/12994/3605 differ diff --git a/zbx_env/var/lib/postgresql/data/base/12994/3606 b/zbx_env/var/lib/postgresql/data/base/12994/3606 new file mode 100644 index 000000000..973f81de1 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/12994/3606 differ diff --git a/zbx_env/var/lib/postgresql/data/base/12994/3607 b/zbx_env/var/lib/postgresql/data/base/12994/3607 new file mode 100644 index 000000000..bb91efdd3 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/12994/3607 differ diff --git a/zbx_env/var/lib/postgresql/data/base/12994/3608 b/zbx_env/var/lib/postgresql/data/base/12994/3608 new file mode 100644 index 000000000..edd6032b2 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/12994/3608 differ diff --git a/zbx_env/var/lib/postgresql/data/base/12994/3609 b/zbx_env/var/lib/postgresql/data/base/12994/3609 new file mode 100644 index 000000000..d723790f6 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/12994/3609 differ diff --git a/zbx_env/var/lib/postgresql/data/base/12994/3712 b/zbx_env/var/lib/postgresql/data/base/12994/3712 new file mode 100644 index 000000000..972327c1f Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/12994/3712 differ diff --git a/zbx_env/var/lib/postgresql/data/base/12994/3764 b/zbx_env/var/lib/postgresql/data/base/12994/3764 new file mode 100644 index 000000000..8b7953258 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/12994/3764 differ diff --git a/zbx_env/var/lib/postgresql/data/base/12994/3764_fsm b/zbx_env/var/lib/postgresql/data/base/12994/3764_fsm new file mode 100644 index 000000000..d041693e8 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/12994/3764_fsm differ diff --git a/zbx_env/var/lib/postgresql/data/base/12994/3764_vm b/zbx_env/var/lib/postgresql/data/base/12994/3764_vm new file mode 100644 index 000000000..81e9a8d75 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/12994/3764_vm differ diff --git a/zbx_env/var/lib/postgresql/data/base/12994/3766 b/zbx_env/var/lib/postgresql/data/base/12994/3766 new file mode 100644 index 000000000..adc6bd05b Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/12994/3766 differ diff --git a/zbx_env/var/lib/postgresql/data/base/12994/3767 b/zbx_env/var/lib/postgresql/data/base/12994/3767 new file mode 100644 index 000000000..8a13ca18a Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/12994/3767 differ diff --git a/zbx_env/var/lib/postgresql/data/base/12994/3997 b/zbx_env/var/lib/postgresql/data/base/12994/3997 new file mode 100644 index 000000000..8bef1d51c Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/12994/3997 differ diff --git a/zbx_env/var/lib/postgresql/data/base/12994/5002 b/zbx_env/var/lib/postgresql/data/base/12994/5002 new file mode 100644 index 000000000..a107339a5 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/12994/5002 differ diff --git a/zbx_env/var/lib/postgresql/data/base/12994/548 b/zbx_env/var/lib/postgresql/data/base/12994/548 new file mode 100644 index 000000000..95a149a1b Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/12994/548 differ diff --git a/zbx_env/var/lib/postgresql/data/base/12994/549 b/zbx_env/var/lib/postgresql/data/base/12994/549 new file mode 100644 index 000000000..b8d72f418 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/12994/549 differ diff --git a/zbx_env/var/lib/postgresql/data/base/12994/6102 b/zbx_env/var/lib/postgresql/data/base/12994/6102 new file mode 100644 index 000000000..e69de29bb diff --git a/zbx_env/var/lib/postgresql/data/base/12994/6102_vm b/zbx_env/var/lib/postgresql/data/base/12994/6102_vm new file mode 100644 index 000000000..e69de29bb diff --git a/zbx_env/var/lib/postgresql/data/base/12994/6104 b/zbx_env/var/lib/postgresql/data/base/12994/6104 new file mode 100644 index 000000000..e69de29bb diff --git a/zbx_env/var/lib/postgresql/data/base/12994/6104_vm b/zbx_env/var/lib/postgresql/data/base/12994/6104_vm new file mode 100644 index 000000000..e69de29bb diff --git a/zbx_env/var/lib/postgresql/data/base/12994/6106 b/zbx_env/var/lib/postgresql/data/base/12994/6106 new file mode 100644 index 000000000..e69de29bb diff --git a/zbx_env/var/lib/postgresql/data/base/12994/6106_vm b/zbx_env/var/lib/postgresql/data/base/12994/6106_vm new file mode 100644 index 000000000..e69de29bb diff --git a/zbx_env/var/lib/postgresql/data/base/12994/6110 b/zbx_env/var/lib/postgresql/data/base/12994/6110 new file mode 100644 index 000000000..88905e93c Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/12994/6110 differ diff --git a/zbx_env/var/lib/postgresql/data/base/12994/6111 b/zbx_env/var/lib/postgresql/data/base/12994/6111 new file mode 100644 index 000000000..fc5fe1e60 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/12994/6111 differ diff --git a/zbx_env/var/lib/postgresql/data/base/12994/6112 b/zbx_env/var/lib/postgresql/data/base/12994/6112 new file mode 100644 index 000000000..2c009e3c0 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/12994/6112 differ diff --git a/zbx_env/var/lib/postgresql/data/base/12994/6113 b/zbx_env/var/lib/postgresql/data/base/12994/6113 new file mode 100644 index 000000000..09ca7f38a Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/12994/6113 differ diff --git a/zbx_env/var/lib/postgresql/data/base/12994/6117 b/zbx_env/var/lib/postgresql/data/base/12994/6117 new file mode 100644 index 000000000..b2a8f2639 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/12994/6117 differ diff --git a/zbx_env/var/lib/postgresql/data/base/12994/826 b/zbx_env/var/lib/postgresql/data/base/12994/826 new file mode 100644 index 000000000..e69de29bb diff --git a/zbx_env/var/lib/postgresql/data/base/12994/826_vm b/zbx_env/var/lib/postgresql/data/base/12994/826_vm new file mode 100644 index 000000000..e69de29bb diff --git a/zbx_env/var/lib/postgresql/data/base/12994/827 b/zbx_env/var/lib/postgresql/data/base/12994/827 new file mode 100644 index 000000000..45ca171f5 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/12994/827 differ diff --git a/zbx_env/var/lib/postgresql/data/base/12994/828 b/zbx_env/var/lib/postgresql/data/base/12994/828 new file mode 100644 index 000000000..9543d4d5d Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/12994/828 differ diff --git a/zbx_env/var/lib/postgresql/data/base/12994/PG_VERSION b/zbx_env/var/lib/postgresql/data/base/12994/PG_VERSION new file mode 100644 index 000000000..f599e28b8 --- /dev/null +++ b/zbx_env/var/lib/postgresql/data/base/12994/PG_VERSION @@ -0,0 +1 @@ +10 diff --git a/zbx_env/var/lib/postgresql/data/base/12994/pg_filenode.map b/zbx_env/var/lib/postgresql/data/base/12994/pg_filenode.map new file mode 100644 index 000000000..428c97e9a Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/12994/pg_filenode.map differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/112 b/zbx_env/var/lib/postgresql/data/base/16384/112 new file mode 100644 index 000000000..8b130c348 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/112 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/113 b/zbx_env/var/lib/postgresql/data/base/16384/113 new file mode 100644 index 000000000..aca9f3471 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/113 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/1247 b/zbx_env/var/lib/postgresql/data/base/16384/1247 new file mode 100644 index 000000000..02c0d0642 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/1247 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/1247_fsm b/zbx_env/var/lib/postgresql/data/base/16384/1247_fsm new file mode 100644 index 000000000..2afa6c37d Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/1247_fsm differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/1247_vm b/zbx_env/var/lib/postgresql/data/base/16384/1247_vm new file mode 100644 index 000000000..ee2235651 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/1247_vm differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/1249 b/zbx_env/var/lib/postgresql/data/base/16384/1249 new file mode 100644 index 000000000..c95465f48 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/1249 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/1249_fsm b/zbx_env/var/lib/postgresql/data/base/16384/1249_fsm new file mode 100644 index 000000000..620636091 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/1249_fsm differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/1249_vm b/zbx_env/var/lib/postgresql/data/base/16384/1249_vm new file mode 100644 index 000000000..dcac89013 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/1249_vm differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/1255 b/zbx_env/var/lib/postgresql/data/base/16384/1255 new file mode 100644 index 000000000..5db8ed232 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/1255 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/1255_fsm b/zbx_env/var/lib/postgresql/data/base/16384/1255_fsm new file mode 100644 index 000000000..72da66c0e Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/1255_fsm differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/1255_vm b/zbx_env/var/lib/postgresql/data/base/16384/1255_vm new file mode 100644 index 000000000..ba43c4836 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/1255_vm differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/1259 b/zbx_env/var/lib/postgresql/data/base/16384/1259 new file mode 100644 index 000000000..6451e8e5e Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/1259 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/1259_fsm b/zbx_env/var/lib/postgresql/data/base/16384/1259_fsm new file mode 100644 index 000000000..e172feb90 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/1259_fsm differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/1259_vm b/zbx_env/var/lib/postgresql/data/base/16384/1259_vm new file mode 100644 index 000000000..eba7a64a4 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/1259_vm differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/12829 b/zbx_env/var/lib/postgresql/data/base/16384/12829 new file mode 100644 index 000000000..ac7e7e56a Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/12829 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/12829_fsm b/zbx_env/var/lib/postgresql/data/base/16384/12829_fsm new file mode 100644 index 000000000..19948ba3d Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/12829_fsm differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/12829_vm b/zbx_env/var/lib/postgresql/data/base/16384/12829_vm new file mode 100644 index 000000000..648054e0f Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/12829_vm differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/12831 b/zbx_env/var/lib/postgresql/data/base/16384/12831 new file mode 100644 index 000000000..e69de29bb diff --git a/zbx_env/var/lib/postgresql/data/base/16384/12833 b/zbx_env/var/lib/postgresql/data/base/16384/12833 new file mode 100644 index 000000000..5efdd5c62 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/12833 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/12834 b/zbx_env/var/lib/postgresql/data/base/16384/12834 new file mode 100644 index 000000000..6147c7e0a Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/12834 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/12834_fsm b/zbx_env/var/lib/postgresql/data/base/16384/12834_fsm new file mode 100644 index 000000000..ce7c26eb6 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/12834_fsm differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/12834_vm b/zbx_env/var/lib/postgresql/data/base/16384/12834_vm new file mode 100644 index 000000000..025df3da1 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/12834_vm differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/12836 b/zbx_env/var/lib/postgresql/data/base/16384/12836 new file mode 100644 index 000000000..e69de29bb diff --git a/zbx_env/var/lib/postgresql/data/base/16384/12838 b/zbx_env/var/lib/postgresql/data/base/16384/12838 new file mode 100644 index 000000000..ab2a70f83 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/12838 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/12839 b/zbx_env/var/lib/postgresql/data/base/16384/12839 new file mode 100644 index 000000000..5c80dacb3 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/12839 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/12839_fsm b/zbx_env/var/lib/postgresql/data/base/16384/12839_fsm new file mode 100644 index 000000000..98dc620ab Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/12839_fsm differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/12839_vm b/zbx_env/var/lib/postgresql/data/base/16384/12839_vm new file mode 100644 index 000000000..602207e10 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/12839_vm differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/12841 b/zbx_env/var/lib/postgresql/data/base/16384/12841 new file mode 100644 index 000000000..e69de29bb diff --git a/zbx_env/var/lib/postgresql/data/base/16384/12843 b/zbx_env/var/lib/postgresql/data/base/16384/12843 new file mode 100644 index 000000000..01f3abd46 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/12843 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/12844 b/zbx_env/var/lib/postgresql/data/base/16384/12844 new file mode 100644 index 000000000..0d56ac3f3 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/12844 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/12844_fsm b/zbx_env/var/lib/postgresql/data/base/16384/12844_fsm new file mode 100644 index 000000000..f8a0e258a Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/12844_fsm differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/12844_vm b/zbx_env/var/lib/postgresql/data/base/16384/12844_vm new file mode 100644 index 000000000..a853e6e13 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/12844_vm differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/12846 b/zbx_env/var/lib/postgresql/data/base/16384/12846 new file mode 100644 index 000000000..e69de29bb diff --git a/zbx_env/var/lib/postgresql/data/base/16384/12848 b/zbx_env/var/lib/postgresql/data/base/16384/12848 new file mode 100644 index 000000000..a3e9f3820 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/12848 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/12849 b/zbx_env/var/lib/postgresql/data/base/16384/12849 new file mode 100644 index 000000000..3db9a1627 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/12849 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/12849_fsm b/zbx_env/var/lib/postgresql/data/base/16384/12849_fsm new file mode 100644 index 000000000..ecbfaee5e Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/12849_fsm differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/12849_vm b/zbx_env/var/lib/postgresql/data/base/16384/12849_vm new file mode 100644 index 000000000..dddd66103 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/12849_vm differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/12851 b/zbx_env/var/lib/postgresql/data/base/16384/12851 new file mode 100644 index 000000000..e69de29bb diff --git a/zbx_env/var/lib/postgresql/data/base/16384/12853 b/zbx_env/var/lib/postgresql/data/base/16384/12853 new file mode 100644 index 000000000..4c0a3393e Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/12853 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/12854 b/zbx_env/var/lib/postgresql/data/base/16384/12854 new file mode 100644 index 000000000..afc566762 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/12854 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/12854_fsm b/zbx_env/var/lib/postgresql/data/base/16384/12854_fsm new file mode 100644 index 000000000..a836ddf75 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/12854_fsm differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/12854_vm b/zbx_env/var/lib/postgresql/data/base/16384/12854_vm new file mode 100644 index 000000000..763cfb136 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/12854_vm differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/12856 b/zbx_env/var/lib/postgresql/data/base/16384/12856 new file mode 100644 index 000000000..e69de29bb diff --git a/zbx_env/var/lib/postgresql/data/base/16384/12858 b/zbx_env/var/lib/postgresql/data/base/16384/12858 new file mode 100644 index 000000000..e81edf7b4 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/12858 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/12859 b/zbx_env/var/lib/postgresql/data/base/16384/12859 new file mode 100644 index 000000000..e69de29bb diff --git a/zbx_env/var/lib/postgresql/data/base/16384/12861 b/zbx_env/var/lib/postgresql/data/base/16384/12861 new file mode 100644 index 000000000..e69de29bb diff --git a/zbx_env/var/lib/postgresql/data/base/16384/12863 b/zbx_env/var/lib/postgresql/data/base/16384/12863 new file mode 100644 index 000000000..d4d51b3d9 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/12863 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/1417 b/zbx_env/var/lib/postgresql/data/base/16384/1417 new file mode 100644 index 000000000..e69de29bb diff --git a/zbx_env/var/lib/postgresql/data/base/16384/1417_vm b/zbx_env/var/lib/postgresql/data/base/16384/1417_vm new file mode 100644 index 000000000..e69de29bb diff --git a/zbx_env/var/lib/postgresql/data/base/16384/1418 b/zbx_env/var/lib/postgresql/data/base/16384/1418 new file mode 100644 index 000000000..e69de29bb diff --git a/zbx_env/var/lib/postgresql/data/base/16384/1418_vm b/zbx_env/var/lib/postgresql/data/base/16384/1418_vm new file mode 100644 index 000000000..e69de29bb diff --git a/zbx_env/var/lib/postgresql/data/base/16384/16386 b/zbx_env/var/lib/postgresql/data/base/16384/16386 new file mode 100644 index 000000000..6d17cf9d1 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/16386 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/16404 b/zbx_env/var/lib/postgresql/data/base/16384/16404 new file mode 100644 index 000000000..e69de29bb diff --git a/zbx_env/var/lib/postgresql/data/base/16384/16406 b/zbx_env/var/lib/postgresql/data/base/16384/16406 new file mode 100644 index 000000000..30090a020 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/16406 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/16407 b/zbx_env/var/lib/postgresql/data/base/16384/16407 new file mode 100644 index 000000000..1c43bffea Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/16407 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/16409 b/zbx_env/var/lib/postgresql/data/base/16384/16409 new file mode 100644 index 000000000..80824e0ef Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/16409 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/16410 b/zbx_env/var/lib/postgresql/data/base/16384/16410 new file mode 100644 index 000000000..e69de29bb diff --git a/zbx_env/var/lib/postgresql/data/base/16384/16418 b/zbx_env/var/lib/postgresql/data/base/16384/16418 new file mode 100644 index 000000000..e69de29bb diff --git a/zbx_env/var/lib/postgresql/data/base/16384/16420 b/zbx_env/var/lib/postgresql/data/base/16384/16420 new file mode 100644 index 000000000..d04262f4c Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/16420 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/16421 b/zbx_env/var/lib/postgresql/data/base/16384/16421 new file mode 100644 index 000000000..7baa312c0 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/16421 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/16423 b/zbx_env/var/lib/postgresql/data/base/16384/16423 new file mode 100644 index 000000000..87c7eb10d Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/16423 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/16424 b/zbx_env/var/lib/postgresql/data/base/16384/16424 new file mode 100644 index 000000000..be707ad4e Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/16424 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/16425 b/zbx_env/var/lib/postgresql/data/base/16384/16425 new file mode 100644 index 000000000..12f3be4dd Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/16425 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/16425_fsm b/zbx_env/var/lib/postgresql/data/base/16384/16425_fsm new file mode 100644 index 000000000..6b4fbb37b Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/16425_fsm differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/16463 b/zbx_env/var/lib/postgresql/data/base/16384/16463 new file mode 100644 index 000000000..e69de29bb diff --git a/zbx_env/var/lib/postgresql/data/base/16384/16465 b/zbx_env/var/lib/postgresql/data/base/16384/16465 new file mode 100644 index 000000000..f3f863472 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/16465 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/16466 b/zbx_env/var/lib/postgresql/data/base/16384/16466 new file mode 100644 index 000000000..70fe4257c Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/16466 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/16468 b/zbx_env/var/lib/postgresql/data/base/16384/16468 new file mode 100644 index 000000000..67f875fa9 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/16468 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/16469 b/zbx_env/var/lib/postgresql/data/base/16384/16469 new file mode 100644 index 000000000..e5e682279 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/16469 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/16470 b/zbx_env/var/lib/postgresql/data/base/16384/16470 new file mode 100644 index 000000000..2328940b1 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/16470 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/16471 b/zbx_env/var/lib/postgresql/data/base/16384/16471 new file mode 100644 index 000000000..5abdb8ef3 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/16471 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/16472 b/zbx_env/var/lib/postgresql/data/base/16384/16472 new file mode 100644 index 000000000..0c2e69dff Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/16472 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/16473 b/zbx_env/var/lib/postgresql/data/base/16384/16473 new file mode 100644 index 000000000..6d17cf9d1 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/16473 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/16479 b/zbx_env/var/lib/postgresql/data/base/16384/16479 new file mode 100644 index 000000000..b84837bd5 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/16479 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/16481 b/zbx_env/var/lib/postgresql/data/base/16384/16481 new file mode 100644 index 000000000..0e73d47b0 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/16481 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/16482 b/zbx_env/var/lib/postgresql/data/base/16384/16482 new file mode 100644 index 000000000..6d17cf9d1 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/16482 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/16486 b/zbx_env/var/lib/postgresql/data/base/16384/16486 new file mode 100644 index 000000000..58cf40eac Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/16486 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/16488 b/zbx_env/var/lib/postgresql/data/base/16384/16488 new file mode 100644 index 000000000..ac4dbbdf8 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/16488 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/16489 b/zbx_env/var/lib/postgresql/data/base/16384/16489 new file mode 100644 index 000000000..e69de29bb diff --git a/zbx_env/var/lib/postgresql/data/base/16384/16495 b/zbx_env/var/lib/postgresql/data/base/16384/16495 new file mode 100644 index 000000000..e94241ec8 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/16495 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/16497 b/zbx_env/var/lib/postgresql/data/base/16384/16497 new file mode 100644 index 000000000..6d17cf9d1 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/16497 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/16503 b/zbx_env/var/lib/postgresql/data/base/16384/16503 new file mode 100644 index 000000000..bd3caeca5 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/16503 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/16505 b/zbx_env/var/lib/postgresql/data/base/16384/16505 new file mode 100644 index 000000000..08519f3f8 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/16505 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/16506 b/zbx_env/var/lib/postgresql/data/base/16384/16506 new file mode 100644 index 000000000..6d17cf9d1 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/16506 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/16526 b/zbx_env/var/lib/postgresql/data/base/16384/16526 new file mode 100644 index 000000000..e69de29bb diff --git a/zbx_env/var/lib/postgresql/data/base/16384/16528 b/zbx_env/var/lib/postgresql/data/base/16384/16528 new file mode 100644 index 000000000..e1082ef5b Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/16528 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/16529 b/zbx_env/var/lib/postgresql/data/base/16384/16529 new file mode 100644 index 000000000..0fe9512c2 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/16529 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/16531 b/zbx_env/var/lib/postgresql/data/base/16384/16531 new file mode 100644 index 000000000..f884ba383 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/16531 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/16532 b/zbx_env/var/lib/postgresql/data/base/16384/16532 new file mode 100644 index 000000000..e69de29bb diff --git a/zbx_env/var/lib/postgresql/data/base/16384/16536 b/zbx_env/var/lib/postgresql/data/base/16384/16536 new file mode 100644 index 000000000..a26023179 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/16536 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/16538 b/zbx_env/var/lib/postgresql/data/base/16384/16538 new file mode 100644 index 000000000..bf4eca2a4 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/16538 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/16539 b/zbx_env/var/lib/postgresql/data/base/16384/16539 new file mode 100644 index 000000000..e69de29bb diff --git a/zbx_env/var/lib/postgresql/data/base/16384/16543 b/zbx_env/var/lib/postgresql/data/base/16384/16543 new file mode 100644 index 000000000..e5c6ef144 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/16543 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/16545 b/zbx_env/var/lib/postgresql/data/base/16384/16545 new file mode 100644 index 000000000..d2a4176e9 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/16545 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/16546 b/zbx_env/var/lib/postgresql/data/base/16384/16546 new file mode 100644 index 000000000..e69de29bb diff --git a/zbx_env/var/lib/postgresql/data/base/16384/16552 b/zbx_env/var/lib/postgresql/data/base/16384/16552 new file mode 100644 index 000000000..a3d97b1f2 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/16552 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/16554 b/zbx_env/var/lib/postgresql/data/base/16384/16554 new file mode 100644 index 000000000..d3cd07227 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/16554 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/16555 b/zbx_env/var/lib/postgresql/data/base/16384/16555 new file mode 100644 index 000000000..e69de29bb diff --git a/zbx_env/var/lib/postgresql/data/base/16384/16559 b/zbx_env/var/lib/postgresql/data/base/16384/16559 new file mode 100644 index 000000000..cd9f5908c Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/16559 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/16561 b/zbx_env/var/lib/postgresql/data/base/16384/16561 new file mode 100644 index 000000000..1cc1dc33e Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/16561 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/16562 b/zbx_env/var/lib/postgresql/data/base/16384/16562 new file mode 100644 index 000000000..e69de29bb diff --git a/zbx_env/var/lib/postgresql/data/base/16384/16566 b/zbx_env/var/lib/postgresql/data/base/16384/16566 new file mode 100644 index 000000000..08ebcd328 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/16566 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/16568 b/zbx_env/var/lib/postgresql/data/base/16384/16568 new file mode 100644 index 000000000..3c30808c9 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/16568 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/16569 b/zbx_env/var/lib/postgresql/data/base/16384/16569 new file mode 100644 index 000000000..e69de29bb diff --git a/zbx_env/var/lib/postgresql/data/base/16384/16574 b/zbx_env/var/lib/postgresql/data/base/16384/16574 new file mode 100644 index 000000000..9a5065f06 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/16574 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/16576 b/zbx_env/var/lib/postgresql/data/base/16384/16576 new file mode 100644 index 000000000..982947eee Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/16576 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/16577 b/zbx_env/var/lib/postgresql/data/base/16384/16577 new file mode 100644 index 000000000..64079925e Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/16577 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/16578 b/zbx_env/var/lib/postgresql/data/base/16384/16578 new file mode 100644 index 000000000..6d17cf9d1 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/16578 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/16586 b/zbx_env/var/lib/postgresql/data/base/16384/16586 new file mode 100644 index 000000000..e69de29bb diff --git a/zbx_env/var/lib/postgresql/data/base/16384/16588 b/zbx_env/var/lib/postgresql/data/base/16384/16588 new file mode 100644 index 000000000..d4197de6f Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/16588 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/16589 b/zbx_env/var/lib/postgresql/data/base/16384/16589 new file mode 100644 index 000000000..6d85a88eb Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/16589 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/16591 b/zbx_env/var/lib/postgresql/data/base/16384/16591 new file mode 100644 index 000000000..e67a01372 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/16591 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/16592 b/zbx_env/var/lib/postgresql/data/base/16384/16592 new file mode 100644 index 000000000..bff15c561 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/16592 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/16593 b/zbx_env/var/lib/postgresql/data/base/16384/16593 new file mode 100644 index 000000000..6d17cf9d1 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/16593 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/16608 b/zbx_env/var/lib/postgresql/data/base/16384/16608 new file mode 100644 index 000000000..e69de29bb diff --git a/zbx_env/var/lib/postgresql/data/base/16384/16610 b/zbx_env/var/lib/postgresql/data/base/16384/16610 new file mode 100644 index 000000000..22fec22b2 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/16610 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/16611 b/zbx_env/var/lib/postgresql/data/base/16384/16611 new file mode 100644 index 000000000..4f9794283 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/16611 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/16613 b/zbx_env/var/lib/postgresql/data/base/16384/16613 new file mode 100644 index 000000000..88568521b Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/16613 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/16614 b/zbx_env/var/lib/postgresql/data/base/16384/16614 new file mode 100644 index 000000000..6215a7e1c Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/16614 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/16614_fsm b/zbx_env/var/lib/postgresql/data/base/16384/16614_fsm new file mode 100644 index 000000000..6b4fbb37b Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/16614_fsm differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/16619 b/zbx_env/var/lib/postgresql/data/base/16384/16619 new file mode 100644 index 000000000..15cebe7e8 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/16619 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/16621 b/zbx_env/var/lib/postgresql/data/base/16384/16621 new file mode 100644 index 000000000..0ea936e48 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/16621 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/16622 b/zbx_env/var/lib/postgresql/data/base/16384/16622 new file mode 100644 index 000000000..e69de29bb diff --git a/zbx_env/var/lib/postgresql/data/base/16384/16640 b/zbx_env/var/lib/postgresql/data/base/16384/16640 new file mode 100644 index 000000000..e69de29bb diff --git a/zbx_env/var/lib/postgresql/data/base/16384/16642 b/zbx_env/var/lib/postgresql/data/base/16384/16642 new file mode 100644 index 000000000..170d9372e Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/16642 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/16643 b/zbx_env/var/lib/postgresql/data/base/16384/16643 new file mode 100644 index 000000000..ca60ebf59 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/16643 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/16645 b/zbx_env/var/lib/postgresql/data/base/16384/16645 new file mode 100644 index 000000000..d75a84b7b Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/16645 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/16646 b/zbx_env/var/lib/postgresql/data/base/16384/16646 new file mode 100644 index 000000000..2262e32df Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/16646 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/16647 b/zbx_env/var/lib/postgresql/data/base/16384/16647 new file mode 100644 index 000000000..fab2ee7c0 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/16647 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/16648 b/zbx_env/var/lib/postgresql/data/base/16384/16648 new file mode 100644 index 000000000..3d37efa5d Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/16648 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/16649 b/zbx_env/var/lib/postgresql/data/base/16384/16649 new file mode 100644 index 000000000..e69de29bb diff --git a/zbx_env/var/lib/postgresql/data/base/16384/16662 b/zbx_env/var/lib/postgresql/data/base/16384/16662 new file mode 100644 index 000000000..e69de29bb diff --git a/zbx_env/var/lib/postgresql/data/base/16384/16664 b/zbx_env/var/lib/postgresql/data/base/16384/16664 new file mode 100644 index 000000000..ac9b1a13a Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/16664 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/16665 b/zbx_env/var/lib/postgresql/data/base/16384/16665 new file mode 100644 index 000000000..fef3852cf Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/16665 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/16667 b/zbx_env/var/lib/postgresql/data/base/16384/16667 new file mode 100644 index 000000000..a0f96eea4 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/16667 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/16668 b/zbx_env/var/lib/postgresql/data/base/16384/16668 new file mode 100644 index 000000000..6d17cf9d1 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/16668 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/16678 b/zbx_env/var/lib/postgresql/data/base/16384/16678 new file mode 100644 index 000000000..2a8cf3342 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/16678 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/16680 b/zbx_env/var/lib/postgresql/data/base/16384/16680 new file mode 100644 index 000000000..3742717ee Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/16680 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/16681 b/zbx_env/var/lib/postgresql/data/base/16384/16681 new file mode 100644 index 000000000..0e619bd16 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/16681 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/16682 b/zbx_env/var/lib/postgresql/data/base/16384/16682 new file mode 100644 index 000000000..6d17cf9d1 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/16682 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/16686 b/zbx_env/var/lib/postgresql/data/base/16384/16686 new file mode 100644 index 000000000..8597c4984 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/16686 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/16688 b/zbx_env/var/lib/postgresql/data/base/16384/16688 new file mode 100644 index 000000000..4920e6881 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/16688 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/16689 b/zbx_env/var/lib/postgresql/data/base/16384/16689 new file mode 100644 index 000000000..0d0e06fdb Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/16689 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/16689_fsm b/zbx_env/var/lib/postgresql/data/base/16384/16689_fsm new file mode 100644 index 000000000..6b4fbb37b Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/16689_fsm differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/16731 b/zbx_env/var/lib/postgresql/data/base/16384/16731 new file mode 100644 index 000000000..e69de29bb diff --git a/zbx_env/var/lib/postgresql/data/base/16384/16733 b/zbx_env/var/lib/postgresql/data/base/16384/16733 new file mode 100644 index 000000000..b2009ba12 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/16733 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/16734 b/zbx_env/var/lib/postgresql/data/base/16384/16734 new file mode 100644 index 000000000..fda257555 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/16734 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/16736 b/zbx_env/var/lib/postgresql/data/base/16384/16736 new file mode 100644 index 000000000..f63e3b7b9 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/16736 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/16737 b/zbx_env/var/lib/postgresql/data/base/16384/16737 new file mode 100644 index 000000000..a0e074197 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/16737 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/16738 b/zbx_env/var/lib/postgresql/data/base/16384/16738 new file mode 100644 index 000000000..4a6bd0c98 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/16738 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/16739 b/zbx_env/var/lib/postgresql/data/base/16384/16739 new file mode 100644 index 000000000..eace9bd08 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/16739 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/16740 b/zbx_env/var/lib/postgresql/data/base/16384/16740 new file mode 100644 index 000000000..06e0c9e6e Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/16740 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/16741 b/zbx_env/var/lib/postgresql/data/base/16384/16741 new file mode 100644 index 000000000..b627b985d Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/16741 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/16742 b/zbx_env/var/lib/postgresql/data/base/16384/16742 new file mode 100644 index 000000000..e69de29bb diff --git a/zbx_env/var/lib/postgresql/data/base/16384/16746 b/zbx_env/var/lib/postgresql/data/base/16384/16746 new file mode 100644 index 000000000..7973d6611 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/16746 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/16748 b/zbx_env/var/lib/postgresql/data/base/16384/16748 new file mode 100644 index 000000000..ff2263d5b Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/16748 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/16749 b/zbx_env/var/lib/postgresql/data/base/16384/16749 new file mode 100644 index 000000000..93cc381e1 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/16749 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/16750 b/zbx_env/var/lib/postgresql/data/base/16384/16750 new file mode 100644 index 000000000..e69de29bb diff --git a/zbx_env/var/lib/postgresql/data/base/16384/16754 b/zbx_env/var/lib/postgresql/data/base/16384/16754 new file mode 100644 index 000000000..f4e5b1cb8 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/16754 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/16756 b/zbx_env/var/lib/postgresql/data/base/16384/16756 new file mode 100644 index 000000000..e0f5f5064 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/16756 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/16757 b/zbx_env/var/lib/postgresql/data/base/16384/16757 new file mode 100644 index 000000000..1629bd4b7 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/16757 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/16758 b/zbx_env/var/lib/postgresql/data/base/16384/16758 new file mode 100644 index 000000000..6d17cf9d1 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/16758 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/16780 b/zbx_env/var/lib/postgresql/data/base/16384/16780 new file mode 100644 index 000000000..e69de29bb diff --git a/zbx_env/var/lib/postgresql/data/base/16384/16782 b/zbx_env/var/lib/postgresql/data/base/16384/16782 new file mode 100644 index 000000000..1d1809a57 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/16782 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/16783 b/zbx_env/var/lib/postgresql/data/base/16384/16783 new file mode 100644 index 000000000..2613e9665 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/16783 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/16785 b/zbx_env/var/lib/postgresql/data/base/16384/16785 new file mode 100644 index 000000000..b9d212fb4 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/16785 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/16786 b/zbx_env/var/lib/postgresql/data/base/16384/16786 new file mode 100644 index 000000000..6d17cf9d1 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/16786 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/16793 b/zbx_env/var/lib/postgresql/data/base/16384/16793 new file mode 100644 index 000000000..1a162f9db Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/16793 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/16795 b/zbx_env/var/lib/postgresql/data/base/16384/16795 new file mode 100644 index 000000000..270d2c995 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/16795 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/16796 b/zbx_env/var/lib/postgresql/data/base/16384/16796 new file mode 100644 index 000000000..6d17cf9d1 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/16796 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/16799 b/zbx_env/var/lib/postgresql/data/base/16384/16799 new file mode 100644 index 000000000..72625e885 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/16799 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/16801 b/zbx_env/var/lib/postgresql/data/base/16384/16801 new file mode 100644 index 000000000..65b8d7137 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/16801 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/16802 b/zbx_env/var/lib/postgresql/data/base/16384/16802 new file mode 100644 index 000000000..ececc1d00 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/16802 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/16803 b/zbx_env/var/lib/postgresql/data/base/16384/16803 new file mode 100644 index 000000000..6d17cf9d1 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/16803 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/16813 b/zbx_env/var/lib/postgresql/data/base/16384/16813 new file mode 100644 index 000000000..e69de29bb diff --git a/zbx_env/var/lib/postgresql/data/base/16384/16815 b/zbx_env/var/lib/postgresql/data/base/16384/16815 new file mode 100644 index 000000000..4fe6f256c Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/16815 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/16816 b/zbx_env/var/lib/postgresql/data/base/16384/16816 new file mode 100644 index 000000000..d8ad92b57 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/16816 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/16818 b/zbx_env/var/lib/postgresql/data/base/16384/16818 new file mode 100644 index 000000000..e25489d43 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/16818 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/16819 b/zbx_env/var/lib/postgresql/data/base/16384/16819 new file mode 100644 index 000000000..558749266 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/16819 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/16820 b/zbx_env/var/lib/postgresql/data/base/16384/16820 new file mode 100644 index 000000000..25f2b0358 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/16820 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/16821 b/zbx_env/var/lib/postgresql/data/base/16384/16821 new file mode 100644 index 000000000..6d17cf9d1 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/16821 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/16837 b/zbx_env/var/lib/postgresql/data/base/16384/16837 new file mode 100644 index 000000000..e69de29bb diff --git a/zbx_env/var/lib/postgresql/data/base/16384/16839 b/zbx_env/var/lib/postgresql/data/base/16384/16839 new file mode 100644 index 000000000..3e57ed27d Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/16839 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/16840 b/zbx_env/var/lib/postgresql/data/base/16384/16840 new file mode 100644 index 000000000..95a26965d Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/16840 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/16842 b/zbx_env/var/lib/postgresql/data/base/16384/16842 new file mode 100644 index 000000000..3773cb920 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/16842 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/16843 b/zbx_env/var/lib/postgresql/data/base/16384/16843 new file mode 100644 index 000000000..90d7285fe Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/16843 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/16844 b/zbx_env/var/lib/postgresql/data/base/16384/16844 new file mode 100644 index 000000000..6d17cf9d1 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/16844 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/16853 b/zbx_env/var/lib/postgresql/data/base/16384/16853 new file mode 100644 index 000000000..8f2d5bcab Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/16853 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/16855 b/zbx_env/var/lib/postgresql/data/base/16384/16855 new file mode 100644 index 000000000..e23d6108b Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/16855 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/16856 b/zbx_env/var/lib/postgresql/data/base/16384/16856 new file mode 100644 index 000000000..6d17cf9d1 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/16856 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/16862 b/zbx_env/var/lib/postgresql/data/base/16384/16862 new file mode 100644 index 000000000..e69de29bb diff --git a/zbx_env/var/lib/postgresql/data/base/16384/16864 b/zbx_env/var/lib/postgresql/data/base/16384/16864 new file mode 100644 index 000000000..cf5a8fc7f Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/16864 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/16865 b/zbx_env/var/lib/postgresql/data/base/16384/16865 new file mode 100644 index 000000000..5e3c583ed Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/16865 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/16867 b/zbx_env/var/lib/postgresql/data/base/16384/16867 new file mode 100644 index 000000000..c7a1d5301 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/16867 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/16868 b/zbx_env/var/lib/postgresql/data/base/16384/16868 new file mode 100644 index 000000000..6d17cf9d1 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/16868 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/16871 b/zbx_env/var/lib/postgresql/data/base/16384/16871 new file mode 100644 index 000000000..09f9bc432 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/16871 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/16873 b/zbx_env/var/lib/postgresql/data/base/16384/16873 new file mode 100644 index 000000000..4cd1852ca Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/16873 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/16874 b/zbx_env/var/lib/postgresql/data/base/16384/16874 new file mode 100644 index 000000000..4143a449e Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/16874 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/16875 b/zbx_env/var/lib/postgresql/data/base/16384/16875 new file mode 100644 index 000000000..e69de29bb diff --git a/zbx_env/var/lib/postgresql/data/base/16384/16878 b/zbx_env/var/lib/postgresql/data/base/16384/16878 new file mode 100644 index 000000000..3d776a750 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/16878 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/16880 b/zbx_env/var/lib/postgresql/data/base/16384/16880 new file mode 100644 index 000000000..df280f641 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/16880 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/16881 b/zbx_env/var/lib/postgresql/data/base/16384/16881 new file mode 100644 index 000000000..dbbb01d2f Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/16881 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/16882 b/zbx_env/var/lib/postgresql/data/base/16384/16882 new file mode 100644 index 000000000..e69de29bb diff --git a/zbx_env/var/lib/postgresql/data/base/16384/16894 b/zbx_env/var/lib/postgresql/data/base/16384/16894 new file mode 100644 index 000000000..e69de29bb diff --git a/zbx_env/var/lib/postgresql/data/base/16384/16896 b/zbx_env/var/lib/postgresql/data/base/16384/16896 new file mode 100644 index 000000000..5fa3489a4 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/16896 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/16897 b/zbx_env/var/lib/postgresql/data/base/16384/16897 new file mode 100644 index 000000000..a684c3e6b Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/16897 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/16899 b/zbx_env/var/lib/postgresql/data/base/16384/16899 new file mode 100644 index 000000000..8bcea4a84 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/16899 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/16900 b/zbx_env/var/lib/postgresql/data/base/16384/16900 new file mode 100644 index 000000000..e69de29bb diff --git a/zbx_env/var/lib/postgresql/data/base/16384/16903 b/zbx_env/var/lib/postgresql/data/base/16384/16903 new file mode 100644 index 000000000..7cbb54336 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/16903 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/16905 b/zbx_env/var/lib/postgresql/data/base/16384/16905 new file mode 100644 index 000000000..5d217f4cd Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/16905 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/16906 b/zbx_env/var/lib/postgresql/data/base/16384/16906 new file mode 100644 index 000000000..be06e3197 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/16906 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/16907 b/zbx_env/var/lib/postgresql/data/base/16384/16907 new file mode 100644 index 000000000..e69de29bb diff --git a/zbx_env/var/lib/postgresql/data/base/16384/16910 b/zbx_env/var/lib/postgresql/data/base/16384/16910 new file mode 100644 index 000000000..bd805ada9 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/16910 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/16912 b/zbx_env/var/lib/postgresql/data/base/16384/16912 new file mode 100644 index 000000000..d3da71a81 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/16912 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/16913 b/zbx_env/var/lib/postgresql/data/base/16384/16913 new file mode 100644 index 000000000..0619bbe38 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/16913 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/16914 b/zbx_env/var/lib/postgresql/data/base/16384/16914 new file mode 100644 index 000000000..6d17cf9d1 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/16914 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/16917 b/zbx_env/var/lib/postgresql/data/base/16384/16917 new file mode 100644 index 000000000..f541f0110 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/16917 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/16919 b/zbx_env/var/lib/postgresql/data/base/16384/16919 new file mode 100644 index 000000000..588c131ec Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/16919 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/16920 b/zbx_env/var/lib/postgresql/data/base/16384/16920 new file mode 100644 index 000000000..385842ce8 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/16920 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/16921 b/zbx_env/var/lib/postgresql/data/base/16384/16921 new file mode 100644 index 000000000..6d17cf9d1 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/16921 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/16924 b/zbx_env/var/lib/postgresql/data/base/16384/16924 new file mode 100644 index 000000000..f71581ccb Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/16924 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/16926 b/zbx_env/var/lib/postgresql/data/base/16384/16926 new file mode 100644 index 000000000..c6550b857 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/16926 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/16927 b/zbx_env/var/lib/postgresql/data/base/16384/16927 new file mode 100644 index 000000000..98237b8cd Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/16927 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/16928 b/zbx_env/var/lib/postgresql/data/base/16384/16928 new file mode 100644 index 000000000..e69de29bb diff --git a/zbx_env/var/lib/postgresql/data/base/16384/16934 b/zbx_env/var/lib/postgresql/data/base/16384/16934 new file mode 100644 index 000000000..814669b84 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/16934 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/16936 b/zbx_env/var/lib/postgresql/data/base/16384/16936 new file mode 100644 index 000000000..694fffb34 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/16936 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/16937 b/zbx_env/var/lib/postgresql/data/base/16384/16937 new file mode 100644 index 000000000..6d17cf9d1 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/16937 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/16944 b/zbx_env/var/lib/postgresql/data/base/16384/16944 new file mode 100644 index 000000000..e69de29bb diff --git a/zbx_env/var/lib/postgresql/data/base/16384/16946 b/zbx_env/var/lib/postgresql/data/base/16384/16946 new file mode 100644 index 000000000..891b99366 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/16946 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/16947 b/zbx_env/var/lib/postgresql/data/base/16384/16947 new file mode 100644 index 000000000..a06db9ba2 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/16947 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/16949 b/zbx_env/var/lib/postgresql/data/base/16384/16949 new file mode 100644 index 000000000..3dd04ac32 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/16949 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/16950 b/zbx_env/var/lib/postgresql/data/base/16384/16950 new file mode 100644 index 000000000..6d17cf9d1 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/16950 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17012 b/zbx_env/var/lib/postgresql/data/base/16384/17012 new file mode 100644 index 000000000..e69de29bb diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17014 b/zbx_env/var/lib/postgresql/data/base/16384/17014 new file mode 100644 index 000000000..2d97e4878 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/17014 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17015 b/zbx_env/var/lib/postgresql/data/base/16384/17015 new file mode 100644 index 000000000..08eb8e0dd Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/17015 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17017 b/zbx_env/var/lib/postgresql/data/base/16384/17017 new file mode 100644 index 000000000..b938b5567 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/17017 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17018 b/zbx_env/var/lib/postgresql/data/base/16384/17018 new file mode 100644 index 000000000..97f204fe1 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/17018 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17019 b/zbx_env/var/lib/postgresql/data/base/16384/17019 new file mode 100644 index 000000000..95ea767e1 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/17019 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17019_fsm b/zbx_env/var/lib/postgresql/data/base/16384/17019_fsm new file mode 100644 index 000000000..6b4fbb37b Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/17019_fsm differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17039 b/zbx_env/var/lib/postgresql/data/base/16384/17039 new file mode 100644 index 000000000..e69de29bb diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17041 b/zbx_env/var/lib/postgresql/data/base/16384/17041 new file mode 100644 index 000000000..dfd9c929b Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/17041 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17042 b/zbx_env/var/lib/postgresql/data/base/16384/17042 new file mode 100644 index 000000000..81acf416d Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/17042 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17044 b/zbx_env/var/lib/postgresql/data/base/16384/17044 new file mode 100644 index 000000000..715421960 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/17044 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17045 b/zbx_env/var/lib/postgresql/data/base/16384/17045 new file mode 100644 index 000000000..628155513 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/17045 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17046 b/zbx_env/var/lib/postgresql/data/base/16384/17046 new file mode 100644 index 000000000..ff69270aa Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/17046 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17047 b/zbx_env/var/lib/postgresql/data/base/16384/17047 new file mode 100644 index 000000000..6215a7e1c Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/17047 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17047_fsm b/zbx_env/var/lib/postgresql/data/base/16384/17047_fsm new file mode 100644 index 000000000..6b4fbb37b Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/17047_fsm differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17050 b/zbx_env/var/lib/postgresql/data/base/16384/17050 new file mode 100644 index 000000000..95a153be2 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/17050 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17052 b/zbx_env/var/lib/postgresql/data/base/16384/17052 new file mode 100644 index 000000000..59270bd02 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/17052 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17053 b/zbx_env/var/lib/postgresql/data/base/16384/17053 new file mode 100644 index 000000000..b5cb7c324 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/17053 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17054 b/zbx_env/var/lib/postgresql/data/base/16384/17054 new file mode 100644 index 000000000..8b3f54553 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/17054 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17054_fsm b/zbx_env/var/lib/postgresql/data/base/16384/17054_fsm new file mode 100644 index 000000000..6b4fbb37b Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/17054_fsm differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17059 b/zbx_env/var/lib/postgresql/data/base/16384/17059 new file mode 100644 index 000000000..8af13d207 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/17059 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17061 b/zbx_env/var/lib/postgresql/data/base/16384/17061 new file mode 100644 index 000000000..a382bb121 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/17061 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17062 b/zbx_env/var/lib/postgresql/data/base/16384/17062 new file mode 100644 index 000000000..a07dcef3b Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/17062 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17063 b/zbx_env/var/lib/postgresql/data/base/16384/17063 new file mode 100644 index 000000000..6215a7e1c Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/17063 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17063_fsm b/zbx_env/var/lib/postgresql/data/base/16384/17063_fsm new file mode 100644 index 000000000..6b4fbb37b Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/17063_fsm differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17081 b/zbx_env/var/lib/postgresql/data/base/16384/17081 new file mode 100644 index 000000000..fc3234cde Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/17081 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17083 b/zbx_env/var/lib/postgresql/data/base/16384/17083 new file mode 100644 index 000000000..e120991c8 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/17083 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17084 b/zbx_env/var/lib/postgresql/data/base/16384/17084 new file mode 100644 index 000000000..86a2d5d46 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/17084 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17085 b/zbx_env/var/lib/postgresql/data/base/16384/17085 new file mode 100644 index 000000000..cd93ebad3 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/17085 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17086 b/zbx_env/var/lib/postgresql/data/base/16384/17086 new file mode 100644 index 000000000..a0ba80ebc Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/17086 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17087 b/zbx_env/var/lib/postgresql/data/base/16384/17087 new file mode 100644 index 000000000..86f7e8dd5 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/17087 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17087_fsm b/zbx_env/var/lib/postgresql/data/base/16384/17087_fsm new file mode 100644 index 000000000..6b4fbb37b Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/17087_fsm differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17096 b/zbx_env/var/lib/postgresql/data/base/16384/17096 new file mode 100644 index 000000000..84dd204b2 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/17096 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17098 b/zbx_env/var/lib/postgresql/data/base/16384/17098 new file mode 100644 index 000000000..fbfd4d2a8 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/17098 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17099 b/zbx_env/var/lib/postgresql/data/base/16384/17099 new file mode 100644 index 000000000..df0b3645d Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/17099 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17100 b/zbx_env/var/lib/postgresql/data/base/16384/17100 new file mode 100644 index 000000000..6d17cf9d1 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/17100 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17114 b/zbx_env/var/lib/postgresql/data/base/16384/17114 new file mode 100644 index 000000000..cd04109b7 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/17114 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17116 b/zbx_env/var/lib/postgresql/data/base/16384/17116 new file mode 100644 index 000000000..69673c6d3 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/17116 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17117 b/zbx_env/var/lib/postgresql/data/base/16384/17117 new file mode 100644 index 000000000..6d17cf9d1 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/17117 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17122 b/zbx_env/var/lib/postgresql/data/base/16384/17122 new file mode 100644 index 000000000..e69de29bb diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17124 b/zbx_env/var/lib/postgresql/data/base/16384/17124 new file mode 100644 index 000000000..c3e2d0754 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/17124 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17125 b/zbx_env/var/lib/postgresql/data/base/16384/17125 new file mode 100644 index 000000000..f3ba728d3 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/17125 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17127 b/zbx_env/var/lib/postgresql/data/base/16384/17127 new file mode 100644 index 000000000..d6cfeecbb Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/17127 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17128 b/zbx_env/var/lib/postgresql/data/base/16384/17128 new file mode 100644 index 000000000..6215a7e1c Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/17128 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17128_fsm b/zbx_env/var/lib/postgresql/data/base/16384/17128_fsm new file mode 100644 index 000000000..6b4fbb37b Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/17128_fsm differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17133 b/zbx_env/var/lib/postgresql/data/base/16384/17133 new file mode 100644 index 000000000..e69de29bb diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17135 b/zbx_env/var/lib/postgresql/data/base/16384/17135 new file mode 100644 index 000000000..649ae28ef Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/17135 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17136 b/zbx_env/var/lib/postgresql/data/base/16384/17136 new file mode 100644 index 000000000..15b7fd726 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/17136 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17138 b/zbx_env/var/lib/postgresql/data/base/16384/17138 new file mode 100644 index 000000000..2ecec5bfd Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/17138 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17139 b/zbx_env/var/lib/postgresql/data/base/16384/17139 new file mode 100644 index 000000000..6d17cf9d1 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/17139 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17142 b/zbx_env/var/lib/postgresql/data/base/16384/17142 new file mode 100644 index 000000000..a55a0073f Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/17142 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17144 b/zbx_env/var/lib/postgresql/data/base/16384/17144 new file mode 100644 index 000000000..4d71ecc4c Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/17144 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17145 b/zbx_env/var/lib/postgresql/data/base/16384/17145 new file mode 100644 index 000000000..9fc293615 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/17145 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17146 b/zbx_env/var/lib/postgresql/data/base/16384/17146 new file mode 100644 index 000000000..6d17cf9d1 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/17146 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17149 b/zbx_env/var/lib/postgresql/data/base/16384/17149 new file mode 100644 index 000000000..268037dca Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/17149 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17151 b/zbx_env/var/lib/postgresql/data/base/16384/17151 new file mode 100644 index 000000000..e6e1b13a5 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/17151 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17152 b/zbx_env/var/lib/postgresql/data/base/16384/17152 new file mode 100644 index 000000000..a27e1a59b Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/17152 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17153 b/zbx_env/var/lib/postgresql/data/base/16384/17153 new file mode 100644 index 000000000..9af2143cb Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/17153 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17153_fsm b/zbx_env/var/lib/postgresql/data/base/16384/17153_fsm new file mode 100644 index 000000000..6b4fbb37b Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/17153_fsm differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17156 b/zbx_env/var/lib/postgresql/data/base/16384/17156 new file mode 100644 index 000000000..6fc8003fe Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/17156 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17158 b/zbx_env/var/lib/postgresql/data/base/16384/17158 new file mode 100644 index 000000000..b6c3e0ca3 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/17158 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17159 b/zbx_env/var/lib/postgresql/data/base/16384/17159 new file mode 100644 index 000000000..7fd8c65ce Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/17159 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17160 b/zbx_env/var/lib/postgresql/data/base/16384/17160 new file mode 100644 index 000000000..ca5ea44f2 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/17160 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17160_fsm b/zbx_env/var/lib/postgresql/data/base/16384/17160_fsm new file mode 100644 index 000000000..6b4fbb37b Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/17160_fsm differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17165 b/zbx_env/var/lib/postgresql/data/base/16384/17165 new file mode 100644 index 000000000..9d1856f9c Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/17165 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17167 b/zbx_env/var/lib/postgresql/data/base/16384/17167 new file mode 100644 index 000000000..5cca65646 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/17167 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17168 b/zbx_env/var/lib/postgresql/data/base/16384/17168 new file mode 100644 index 000000000..e69de29bb diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17175 b/zbx_env/var/lib/postgresql/data/base/16384/17175 new file mode 100644 index 000000000..e69de29bb diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17177 b/zbx_env/var/lib/postgresql/data/base/16384/17177 new file mode 100644 index 000000000..51bef325e Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/17177 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17178 b/zbx_env/var/lib/postgresql/data/base/16384/17178 new file mode 100644 index 000000000..06cdb7ff8 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/17178 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17180 b/zbx_env/var/lib/postgresql/data/base/16384/17180 new file mode 100644 index 000000000..66c88882f Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/17180 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17181 b/zbx_env/var/lib/postgresql/data/base/16384/17181 new file mode 100644 index 000000000..74acf8566 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/17181 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17182 b/zbx_env/var/lib/postgresql/data/base/16384/17182 new file mode 100644 index 000000000..e69de29bb diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17186 b/zbx_env/var/lib/postgresql/data/base/16384/17186 new file mode 100644 index 000000000..b3cbec298 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/17186 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17188 b/zbx_env/var/lib/postgresql/data/base/16384/17188 new file mode 100644 index 000000000..e9429a478 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/17188 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17189 b/zbx_env/var/lib/postgresql/data/base/16384/17189 new file mode 100644 index 000000000..c32aac104 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/17189 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17190 b/zbx_env/var/lib/postgresql/data/base/16384/17190 new file mode 100644 index 000000000..e69de29bb diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17199 b/zbx_env/var/lib/postgresql/data/base/16384/17199 new file mode 100644 index 000000000..648b8d98d Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/17199 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17201 b/zbx_env/var/lib/postgresql/data/base/16384/17201 new file mode 100644 index 000000000..cf6580423 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/17201 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17202 b/zbx_env/var/lib/postgresql/data/base/16384/17202 new file mode 100644 index 000000000..e69de29bb diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17206 b/zbx_env/var/lib/postgresql/data/base/16384/17206 new file mode 100644 index 000000000..661ed6cdc Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/17206 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17208 b/zbx_env/var/lib/postgresql/data/base/16384/17208 new file mode 100644 index 000000000..cc6f10660 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/17208 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17209 b/zbx_env/var/lib/postgresql/data/base/16384/17209 new file mode 100644 index 000000000..2d7884922 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/17209 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17210 b/zbx_env/var/lib/postgresql/data/base/16384/17210 new file mode 100644 index 000000000..e69de29bb diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17217 b/zbx_env/var/lib/postgresql/data/base/16384/17217 new file mode 100644 index 000000000..4a00151f9 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/17217 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17219 b/zbx_env/var/lib/postgresql/data/base/16384/17219 new file mode 100644 index 000000000..93e6d98f3 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/17219 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17220 b/zbx_env/var/lib/postgresql/data/base/16384/17220 new file mode 100644 index 000000000..e69de29bb diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17224 b/zbx_env/var/lib/postgresql/data/base/16384/17224 new file mode 100644 index 000000000..c4c6faf54 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/17224 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17226 b/zbx_env/var/lib/postgresql/data/base/16384/17226 new file mode 100644 index 000000000..5cb4c3a25 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/17226 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17227 b/zbx_env/var/lib/postgresql/data/base/16384/17227 new file mode 100644 index 000000000..c3e9e0c9d Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/17227 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17228 b/zbx_env/var/lib/postgresql/data/base/16384/17228 new file mode 100644 index 000000000..e69de29bb diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17234 b/zbx_env/var/lib/postgresql/data/base/16384/17234 new file mode 100644 index 000000000..de95cbb97 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/17234 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17236 b/zbx_env/var/lib/postgresql/data/base/16384/17236 new file mode 100644 index 000000000..bf27292d9 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/17236 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17237 b/zbx_env/var/lib/postgresql/data/base/16384/17237 new file mode 100644 index 000000000..0eba930de Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/17237 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17238 b/zbx_env/var/lib/postgresql/data/base/16384/17238 new file mode 100644 index 000000000..6d17cf9d1 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/17238 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17267 b/zbx_env/var/lib/postgresql/data/base/16384/17267 new file mode 100644 index 000000000..e69de29bb diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17269 b/zbx_env/var/lib/postgresql/data/base/16384/17269 new file mode 100644 index 000000000..ba35ea3c8 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/17269 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17270 b/zbx_env/var/lib/postgresql/data/base/16384/17270 new file mode 100644 index 000000000..90648ddd2 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/17270 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17272 b/zbx_env/var/lib/postgresql/data/base/16384/17272 new file mode 100644 index 000000000..fbef71862 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/17272 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17273 b/zbx_env/var/lib/postgresql/data/base/16384/17273 new file mode 100644 index 000000000..fa3d89fd0 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/17273 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17274 b/zbx_env/var/lib/postgresql/data/base/16384/17274 new file mode 100644 index 000000000..5f36c5f2b Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/17274 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17275 b/zbx_env/var/lib/postgresql/data/base/16384/17275 new file mode 100644 index 000000000..6d17cf9d1 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/17275 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17291 b/zbx_env/var/lib/postgresql/data/base/16384/17291 new file mode 100644 index 000000000..e69de29bb diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17293 b/zbx_env/var/lib/postgresql/data/base/16384/17293 new file mode 100644 index 000000000..25b3d53ea Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/17293 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17294 b/zbx_env/var/lib/postgresql/data/base/16384/17294 new file mode 100644 index 000000000..9495a955a Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/17294 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17296 b/zbx_env/var/lib/postgresql/data/base/16384/17296 new file mode 100644 index 000000000..161ce5290 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/17296 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17297 b/zbx_env/var/lib/postgresql/data/base/16384/17297 new file mode 100644 index 000000000..525964f95 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/17297 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17298 b/zbx_env/var/lib/postgresql/data/base/16384/17298 new file mode 100644 index 000000000..4dc22e175 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/17298 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17299 b/zbx_env/var/lib/postgresql/data/base/16384/17299 new file mode 100644 index 000000000..771e60be9 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/17299 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17300 b/zbx_env/var/lib/postgresql/data/base/16384/17300 new file mode 100644 index 000000000..a36f2c11d Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/17300 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17301 b/zbx_env/var/lib/postgresql/data/base/16384/17301 new file mode 100644 index 000000000..e69de29bb diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17307 b/zbx_env/var/lib/postgresql/data/base/16384/17307 new file mode 100644 index 000000000..e69de29bb diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17309 b/zbx_env/var/lib/postgresql/data/base/16384/17309 new file mode 100644 index 000000000..8754a65ef Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/17309 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17310 b/zbx_env/var/lib/postgresql/data/base/16384/17310 new file mode 100644 index 000000000..84271ac38 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/17310 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17312 b/zbx_env/var/lib/postgresql/data/base/16384/17312 new file mode 100644 index 000000000..55c2deaf2 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/17312 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17313 b/zbx_env/var/lib/postgresql/data/base/16384/17313 new file mode 100644 index 000000000..853a3c384 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/17313 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17314 b/zbx_env/var/lib/postgresql/data/base/16384/17314 new file mode 100644 index 000000000..2400527c9 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/17314 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17315 b/zbx_env/var/lib/postgresql/data/base/16384/17315 new file mode 100644 index 000000000..e69de29bb diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17320 b/zbx_env/var/lib/postgresql/data/base/16384/17320 new file mode 100644 index 000000000..fb47e4fce Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/17320 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17322 b/zbx_env/var/lib/postgresql/data/base/16384/17322 new file mode 100644 index 000000000..758f052b0 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/17322 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17323 b/zbx_env/var/lib/postgresql/data/base/16384/17323 new file mode 100644 index 000000000..e989bdf6a Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/17323 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17324 b/zbx_env/var/lib/postgresql/data/base/16384/17324 new file mode 100644 index 000000000..e69de29bb diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17328 b/zbx_env/var/lib/postgresql/data/base/16384/17328 new file mode 100644 index 000000000..e69de29bb diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17330 b/zbx_env/var/lib/postgresql/data/base/16384/17330 new file mode 100644 index 000000000..99434ca07 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/17330 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17331 b/zbx_env/var/lib/postgresql/data/base/16384/17331 new file mode 100644 index 000000000..577b77d0b Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/17331 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17333 b/zbx_env/var/lib/postgresql/data/base/16384/17333 new file mode 100644 index 000000000..e4c61e992 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/17333 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17334 b/zbx_env/var/lib/postgresql/data/base/16384/17334 new file mode 100644 index 000000000..e69de29bb diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17339 b/zbx_env/var/lib/postgresql/data/base/16384/17339 new file mode 100644 index 000000000..e69de29bb diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17341 b/zbx_env/var/lib/postgresql/data/base/16384/17341 new file mode 100644 index 000000000..59888ba9a Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/17341 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17342 b/zbx_env/var/lib/postgresql/data/base/16384/17342 new file mode 100644 index 000000000..e8b6e23f5 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/17342 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17344 b/zbx_env/var/lib/postgresql/data/base/16384/17344 new file mode 100644 index 000000000..39a0c7020 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/17344 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17345 b/zbx_env/var/lib/postgresql/data/base/16384/17345 new file mode 100644 index 000000000..e69de29bb diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17349 b/zbx_env/var/lib/postgresql/data/base/16384/17349 new file mode 100644 index 000000000..628991ef9 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/17349 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17351 b/zbx_env/var/lib/postgresql/data/base/16384/17351 new file mode 100644 index 000000000..3815d1c94 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/17351 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17352 b/zbx_env/var/lib/postgresql/data/base/16384/17352 new file mode 100644 index 000000000..e69de29bb diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17356 b/zbx_env/var/lib/postgresql/data/base/16384/17356 new file mode 100644 index 000000000..f599cd0ca Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/17356 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17358 b/zbx_env/var/lib/postgresql/data/base/16384/17358 new file mode 100644 index 000000000..3dbffce7f Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/17358 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17359 b/zbx_env/var/lib/postgresql/data/base/16384/17359 new file mode 100644 index 000000000..e69de29bb diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17362 b/zbx_env/var/lib/postgresql/data/base/16384/17362 new file mode 100644 index 000000000..15842db32 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/17362 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17364 b/zbx_env/var/lib/postgresql/data/base/16384/17364 new file mode 100644 index 000000000..37b0d650e Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/17364 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17365 b/zbx_env/var/lib/postgresql/data/base/16384/17365 new file mode 100644 index 000000000..23dd4dc29 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/17365 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17366 b/zbx_env/var/lib/postgresql/data/base/16384/17366 new file mode 100644 index 000000000..e69de29bb diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17369 b/zbx_env/var/lib/postgresql/data/base/16384/17369 new file mode 100644 index 000000000..01ae67a94 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/17369 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17371 b/zbx_env/var/lib/postgresql/data/base/16384/17371 new file mode 100644 index 000000000..7586189d6 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/17371 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17372 b/zbx_env/var/lib/postgresql/data/base/16384/17372 new file mode 100644 index 000000000..b6676bd23 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/17372 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17373 b/zbx_env/var/lib/postgresql/data/base/16384/17373 new file mode 100644 index 000000000..e69de29bb diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17384 b/zbx_env/var/lib/postgresql/data/base/16384/17384 new file mode 100644 index 000000000..3ff8821a6 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/17384 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17386 b/zbx_env/var/lib/postgresql/data/base/16384/17386 new file mode 100644 index 000000000..e69de29bb diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17389 b/zbx_env/var/lib/postgresql/data/base/16384/17389 new file mode 100644 index 000000000..48822d388 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/17389 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17391 b/zbx_env/var/lib/postgresql/data/base/16384/17391 new file mode 100644 index 000000000..f51bd4d10 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/17391 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17392 b/zbx_env/var/lib/postgresql/data/base/16384/17392 new file mode 100644 index 000000000..78a44819d Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/17392 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17393 b/zbx_env/var/lib/postgresql/data/base/16384/17393 new file mode 100644 index 000000000..6d17cf9d1 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/17393 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17398 b/zbx_env/var/lib/postgresql/data/base/16384/17398 new file mode 100644 index 000000000..e69de29bb diff --git a/zbx_env/var/lib/postgresql/data/base/16384/174 b/zbx_env/var/lib/postgresql/data/base/16384/174 new file mode 100644 index 000000000..edad2c14c Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/174 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17400 b/zbx_env/var/lib/postgresql/data/base/16384/17400 new file mode 100644 index 000000000..741a2b42e Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/17400 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17401 b/zbx_env/var/lib/postgresql/data/base/16384/17401 new file mode 100644 index 000000000..75f3c7d32 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/17401 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17403 b/zbx_env/var/lib/postgresql/data/base/16384/17403 new file mode 100644 index 000000000..fb87e9c42 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/17403 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17404 b/zbx_env/var/lib/postgresql/data/base/16384/17404 new file mode 100644 index 000000000..6d17cf9d1 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/17404 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17411 b/zbx_env/var/lib/postgresql/data/base/16384/17411 new file mode 100644 index 000000000..5cf451744 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/17411 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17413 b/zbx_env/var/lib/postgresql/data/base/16384/17413 new file mode 100644 index 000000000..bd66a2865 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/17413 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17414 b/zbx_env/var/lib/postgresql/data/base/16384/17414 new file mode 100644 index 000000000..6d17cf9d1 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/17414 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17419 b/zbx_env/var/lib/postgresql/data/base/16384/17419 new file mode 100644 index 000000000..ffe2b2f92 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/17419 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17421 b/zbx_env/var/lib/postgresql/data/base/16384/17421 new file mode 100644 index 000000000..e69de29bb diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17433 b/zbx_env/var/lib/postgresql/data/base/16384/17433 new file mode 100644 index 000000000..e69de29bb diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17435 b/zbx_env/var/lib/postgresql/data/base/16384/17435 new file mode 100644 index 000000000..54c99567c Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/17435 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17436 b/zbx_env/var/lib/postgresql/data/base/16384/17436 new file mode 100644 index 000000000..38c3c638f Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/17436 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17438 b/zbx_env/var/lib/postgresql/data/base/16384/17438 new file mode 100644 index 000000000..bb8ec66c5 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/17438 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17439 b/zbx_env/var/lib/postgresql/data/base/16384/17439 new file mode 100644 index 000000000..cfb064f58 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/17439 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17440 b/zbx_env/var/lib/postgresql/data/base/16384/17440 new file mode 100644 index 000000000..b55b03797 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/17440 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17441 b/zbx_env/var/lib/postgresql/data/base/16384/17441 new file mode 100644 index 000000000..8f3aa7f2c Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/17441 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17442 b/zbx_env/var/lib/postgresql/data/base/16384/17442 new file mode 100644 index 000000000..7f018eb63 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/17442 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17443 b/zbx_env/var/lib/postgresql/data/base/16384/17443 new file mode 100644 index 000000000..2244eec1d Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/17443 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17444 b/zbx_env/var/lib/postgresql/data/base/16384/17444 new file mode 100644 index 000000000..4f14f5709 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/17444 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17445 b/zbx_env/var/lib/postgresql/data/base/16384/17445 new file mode 100644 index 000000000..e69de29bb diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17451 b/zbx_env/var/lib/postgresql/data/base/16384/17451 new file mode 100644 index 000000000..8687d0a85 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/17451 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17452 b/zbx_env/var/lib/postgresql/data/base/16384/17452 new file mode 100644 index 000000000..e69de29bb diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17458 b/zbx_env/var/lib/postgresql/data/base/16384/17458 new file mode 100644 index 000000000..9a651c5ab Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/17458 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17459 b/zbx_env/var/lib/postgresql/data/base/16384/17459 new file mode 100644 index 000000000..e69de29bb diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17465 b/zbx_env/var/lib/postgresql/data/base/16384/17465 new file mode 100644 index 000000000..1adb81468 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/17465 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17466 b/zbx_env/var/lib/postgresql/data/base/16384/17466 new file mode 100644 index 000000000..e69de29bb diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17476 b/zbx_env/var/lib/postgresql/data/base/16384/17476 new file mode 100644 index 000000000..e69de29bb diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17478 b/zbx_env/var/lib/postgresql/data/base/16384/17478 new file mode 100644 index 000000000..8d779fa1f Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/17478 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17479 b/zbx_env/var/lib/postgresql/data/base/16384/17479 new file mode 100644 index 000000000..b2ba6c8c2 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/17479 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17480 b/zbx_env/var/lib/postgresql/data/base/16384/17480 new file mode 100644 index 000000000..e69de29bb diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17486 b/zbx_env/var/lib/postgresql/data/base/16384/17486 new file mode 100644 index 000000000..e69de29bb diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17488 b/zbx_env/var/lib/postgresql/data/base/16384/17488 new file mode 100644 index 000000000..0fb53c8cf Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/17488 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17489 b/zbx_env/var/lib/postgresql/data/base/16384/17489 new file mode 100644 index 000000000..5f6589fe8 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/17489 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17490 b/zbx_env/var/lib/postgresql/data/base/16384/17490 new file mode 100644 index 000000000..6d17cf9d1 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/17490 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17492 b/zbx_env/var/lib/postgresql/data/base/16384/17492 new file mode 100644 index 000000000..e69de29bb diff --git a/zbx_env/var/lib/postgresql/data/base/16384/175 b/zbx_env/var/lib/postgresql/data/base/16384/175 new file mode 100644 index 000000000..a8041c693 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/175 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17507 b/zbx_env/var/lib/postgresql/data/base/16384/17507 new file mode 100644 index 000000000..e69de29bb diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17509 b/zbx_env/var/lib/postgresql/data/base/16384/17509 new file mode 100644 index 000000000..2ee907f20 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/17509 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17510 b/zbx_env/var/lib/postgresql/data/base/16384/17510 new file mode 100644 index 000000000..e5cb32f06 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/17510 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17512 b/zbx_env/var/lib/postgresql/data/base/16384/17512 new file mode 100644 index 000000000..c2db46eca Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/17512 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17513 b/zbx_env/var/lib/postgresql/data/base/16384/17513 new file mode 100644 index 000000000..6d17cf9d1 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/17513 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17515 b/zbx_env/var/lib/postgresql/data/base/16384/17515 new file mode 100644 index 000000000..e69de29bb diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17525 b/zbx_env/var/lib/postgresql/data/base/16384/17525 new file mode 100644 index 000000000..d8fa12f90 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/17525 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17527 b/zbx_env/var/lib/postgresql/data/base/16384/17527 new file mode 100644 index 000000000..f0a9e8e0d Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/17527 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17528 b/zbx_env/var/lib/postgresql/data/base/16384/17528 new file mode 100644 index 000000000..e69de29bb diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17538 b/zbx_env/var/lib/postgresql/data/base/16384/17538 new file mode 100644 index 000000000..fa58461a7 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/17538 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17540 b/zbx_env/var/lib/postgresql/data/base/16384/17540 new file mode 100644 index 000000000..87d5f3620 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/17540 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17541 b/zbx_env/var/lib/postgresql/data/base/16384/17541 new file mode 100644 index 000000000..e132caa5e Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/17541 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17542 b/zbx_env/var/lib/postgresql/data/base/16384/17542 new file mode 100644 index 000000000..e69de29bb diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17550 b/zbx_env/var/lib/postgresql/data/base/16384/17550 new file mode 100644 index 000000000..b35e2d5bf Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/17550 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17552 b/zbx_env/var/lib/postgresql/data/base/16384/17552 new file mode 100644 index 000000000..e69de29bb diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17560 b/zbx_env/var/lib/postgresql/data/base/16384/17560 new file mode 100644 index 000000000..6cef758eb Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/17560 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17562 b/zbx_env/var/lib/postgresql/data/base/16384/17562 new file mode 100644 index 000000000..e69de29bb diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17568 b/zbx_env/var/lib/postgresql/data/base/16384/17568 new file mode 100644 index 000000000..13de8639f Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/17568 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17570 b/zbx_env/var/lib/postgresql/data/base/16384/17570 new file mode 100644 index 000000000..12a780867 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/17570 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17571 b/zbx_env/var/lib/postgresql/data/base/16384/17571 new file mode 100644 index 000000000..2feee75fd Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/17571 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17572 b/zbx_env/var/lib/postgresql/data/base/16384/17572 new file mode 100644 index 000000000..f7bbec5fa Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/17572 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17573 b/zbx_env/var/lib/postgresql/data/base/16384/17573 new file mode 100644 index 000000000..6d17cf9d1 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/17573 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17583 b/zbx_env/var/lib/postgresql/data/base/16384/17583 new file mode 100644 index 000000000..6d929e08c Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/17583 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17585 b/zbx_env/var/lib/postgresql/data/base/16384/17585 new file mode 100644 index 000000000..ab7598352 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/17585 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17586 b/zbx_env/var/lib/postgresql/data/base/16384/17586 new file mode 100644 index 000000000..d9a337cb5 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/17586 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17587 b/zbx_env/var/lib/postgresql/data/base/16384/17587 new file mode 100644 index 000000000..e69de29bb diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17594 b/zbx_env/var/lib/postgresql/data/base/16384/17594 new file mode 100644 index 000000000..e69de29bb diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17596 b/zbx_env/var/lib/postgresql/data/base/16384/17596 new file mode 100644 index 000000000..f5f9834f3 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/17596 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17597 b/zbx_env/var/lib/postgresql/data/base/16384/17597 new file mode 100644 index 000000000..46bad6391 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/17597 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17599 b/zbx_env/var/lib/postgresql/data/base/16384/17599 new file mode 100644 index 000000000..8edf34734 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/17599 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17600 b/zbx_env/var/lib/postgresql/data/base/16384/17600 new file mode 100644 index 000000000..e69de29bb diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17605 b/zbx_env/var/lib/postgresql/data/base/16384/17605 new file mode 100644 index 000000000..7e52837db Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/17605 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17607 b/zbx_env/var/lib/postgresql/data/base/16384/17607 new file mode 100644 index 000000000..586be81d3 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/17607 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17608 b/zbx_env/var/lib/postgresql/data/base/16384/17608 new file mode 100644 index 000000000..acb31624c Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/17608 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17609 b/zbx_env/var/lib/postgresql/data/base/16384/17609 new file mode 100644 index 000000000..e69de29bb diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17617 b/zbx_env/var/lib/postgresql/data/base/16384/17617 new file mode 100644 index 000000000..cb80ed30b Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/17617 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17619 b/zbx_env/var/lib/postgresql/data/base/16384/17619 new file mode 100644 index 000000000..95616f3cf Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/17619 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17620 b/zbx_env/var/lib/postgresql/data/base/16384/17620 new file mode 100644 index 000000000..6d17cf9d1 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/17620 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17622 b/zbx_env/var/lib/postgresql/data/base/16384/17622 new file mode 100644 index 000000000..e69de29bb diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17632 b/zbx_env/var/lib/postgresql/data/base/16384/17632 new file mode 100644 index 000000000..8ea6e1bef Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/17632 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17634 b/zbx_env/var/lib/postgresql/data/base/16384/17634 new file mode 100644 index 000000000..dc2ff8eaa Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/17634 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17635 b/zbx_env/var/lib/postgresql/data/base/16384/17635 new file mode 100644 index 000000000..e69de29bb diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17641 b/zbx_env/var/lib/postgresql/data/base/16384/17641 new file mode 100644 index 000000000..5e357cf78 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/17641 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17643 b/zbx_env/var/lib/postgresql/data/base/16384/17643 new file mode 100644 index 000000000..dbe5f245a Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/17643 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17644 b/zbx_env/var/lib/postgresql/data/base/16384/17644 new file mode 100644 index 000000000..e69de29bb diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17654 b/zbx_env/var/lib/postgresql/data/base/16384/17654 new file mode 100644 index 000000000..95fdbe277 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/17654 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17656 b/zbx_env/var/lib/postgresql/data/base/16384/17656 new file mode 100644 index 000000000..bc7eefe94 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/17656 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17657 b/zbx_env/var/lib/postgresql/data/base/16384/17657 new file mode 100644 index 000000000..83b7a8839 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/17657 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17658 b/zbx_env/var/lib/postgresql/data/base/16384/17658 new file mode 100644 index 000000000..e69de29bb diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17664 b/zbx_env/var/lib/postgresql/data/base/16384/17664 new file mode 100644 index 000000000..0c5cfe697 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/17664 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17666 b/zbx_env/var/lib/postgresql/data/base/16384/17666 new file mode 100644 index 000000000..1b3d520d7 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/17666 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17667 b/zbx_env/var/lib/postgresql/data/base/16384/17667 new file mode 100644 index 000000000..6d17cf9d1 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/17667 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17671 b/zbx_env/var/lib/postgresql/data/base/16384/17671 new file mode 100644 index 000000000..98eb32ba9 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/17671 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17673 b/zbx_env/var/lib/postgresql/data/base/16384/17673 new file mode 100644 index 000000000..e69de29bb diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17676 b/zbx_env/var/lib/postgresql/data/base/16384/17676 new file mode 100644 index 000000000..d352db4f9 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/17676 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17678 b/zbx_env/var/lib/postgresql/data/base/16384/17678 new file mode 100644 index 000000000..402afa9fc Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/17678 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17679 b/zbx_env/var/lib/postgresql/data/base/16384/17679 new file mode 100644 index 000000000..e69de29bb diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17753 b/zbx_env/var/lib/postgresql/data/base/16384/17753 new file mode 100644 index 000000000..e69de29bb diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17755 b/zbx_env/var/lib/postgresql/data/base/16384/17755 new file mode 100644 index 000000000..c50488bc6 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/17755 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17756 b/zbx_env/var/lib/postgresql/data/base/16384/17756 new file mode 100644 index 000000000..25dac0442 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/17756 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17758 b/zbx_env/var/lib/postgresql/data/base/16384/17758 new file mode 100644 index 000000000..e69de29bb diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17763 b/zbx_env/var/lib/postgresql/data/base/16384/17763 new file mode 100644 index 000000000..c0b5be66c Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/17763 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17765 b/zbx_env/var/lib/postgresql/data/base/16384/17765 new file mode 100644 index 000000000..8b3f54553 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/17765 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17765_fsm b/zbx_env/var/lib/postgresql/data/base/16384/17765_fsm new file mode 100644 index 000000000..6b4fbb37b Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/17765_fsm differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17771 b/zbx_env/var/lib/postgresql/data/base/16384/17771 new file mode 100644 index 000000000..f80d63a53 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/17771 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17771_fsm b/zbx_env/var/lib/postgresql/data/base/16384/17771_fsm new file mode 100644 index 000000000..6b4fbb37b Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/17771_fsm differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17773 b/zbx_env/var/lib/postgresql/data/base/16384/17773 new file mode 100644 index 000000000..7dea0c276 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/17773 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17774 b/zbx_env/var/lib/postgresql/data/base/16384/17774 new file mode 100644 index 000000000..28c0d3d02 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/17774 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17776 b/zbx_env/var/lib/postgresql/data/base/16384/17776 new file mode 100644 index 000000000..5e0ad138d Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/17776 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17777 b/zbx_env/var/lib/postgresql/data/base/16384/17777 new file mode 100644 index 000000000..ca5ea44f2 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/17777 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17777_fsm b/zbx_env/var/lib/postgresql/data/base/16384/17777_fsm new file mode 100644 index 000000000..6b4fbb37b Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/17777_fsm differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17783 b/zbx_env/var/lib/postgresql/data/base/16384/17783 new file mode 100644 index 000000000..89bb8011f Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/17783 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17785 b/zbx_env/var/lib/postgresql/data/base/16384/17785 new file mode 100644 index 000000000..4e7fe5858 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/17785 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17786 b/zbx_env/var/lib/postgresql/data/base/16384/17786 new file mode 100644 index 000000000..a5c3b75b0 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/17786 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17787 b/zbx_env/var/lib/postgresql/data/base/16384/17787 new file mode 100644 index 000000000..6d17cf9d1 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/17787 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17793 b/zbx_env/var/lib/postgresql/data/base/16384/17793 new file mode 100644 index 000000000..8921464e5 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/17793 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17795 b/zbx_env/var/lib/postgresql/data/base/16384/17795 new file mode 100644 index 000000000..e69de29bb diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17798 b/zbx_env/var/lib/postgresql/data/base/16384/17798 new file mode 100644 index 000000000..cfd6ccbdb Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/17798 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17800 b/zbx_env/var/lib/postgresql/data/base/16384/17800 new file mode 100644 index 000000000..6d17cf9d1 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/17800 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17810 b/zbx_env/var/lib/postgresql/data/base/16384/17810 new file mode 100644 index 000000000..fbfefa48c Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/17810 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17812 b/zbx_env/var/lib/postgresql/data/base/16384/17812 new file mode 100644 index 000000000..307959e65 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/17812 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17813 b/zbx_env/var/lib/postgresql/data/base/16384/17813 new file mode 100644 index 000000000..b4745656a Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/17813 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17814 b/zbx_env/var/lib/postgresql/data/base/16384/17814 new file mode 100644 index 000000000..6d17cf9d1 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/17814 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17820 b/zbx_env/var/lib/postgresql/data/base/16384/17820 new file mode 100644 index 000000000..2d59aa078 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/17820 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17822 b/zbx_env/var/lib/postgresql/data/base/16384/17822 new file mode 100644 index 000000000..0767a1bdc Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/17822 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17823 b/zbx_env/var/lib/postgresql/data/base/16384/17823 new file mode 100644 index 000000000..e69de29bb diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17826 b/zbx_env/var/lib/postgresql/data/base/16384/17826 new file mode 100644 index 000000000..1bfaffb3a Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/17826 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17828 b/zbx_env/var/lib/postgresql/data/base/16384/17828 new file mode 100644 index 000000000..c5c778e18 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/17828 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17829 b/zbx_env/var/lib/postgresql/data/base/16384/17829 new file mode 100644 index 000000000..6d17cf9d1 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/17829 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17832 b/zbx_env/var/lib/postgresql/data/base/16384/17832 new file mode 100644 index 000000000..6849a455a Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/17832 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17834 b/zbx_env/var/lib/postgresql/data/base/16384/17834 new file mode 100644 index 000000000..3161d1b9f Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/17834 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17835 b/zbx_env/var/lib/postgresql/data/base/16384/17835 new file mode 100644 index 000000000..1bb78f596 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/17835 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17836 b/zbx_env/var/lib/postgresql/data/base/16384/17836 new file mode 100644 index 000000000..294f4016d Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/17836 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17836_fsm b/zbx_env/var/lib/postgresql/data/base/16384/17836_fsm new file mode 100644 index 000000000..6b4fbb37b Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/17836_fsm differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17842 b/zbx_env/var/lib/postgresql/data/base/16384/17842 new file mode 100644 index 000000000..41babeff6 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/17842 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17844 b/zbx_env/var/lib/postgresql/data/base/16384/17844 new file mode 100644 index 000000000..1dfc800ef Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/17844 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17845 b/zbx_env/var/lib/postgresql/data/base/16384/17845 new file mode 100644 index 000000000..6d17cf9d1 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/17845 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17849 b/zbx_env/var/lib/postgresql/data/base/16384/17849 new file mode 100644 index 000000000..9695ba0b4 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/17849 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17851 b/zbx_env/var/lib/postgresql/data/base/16384/17851 new file mode 100644 index 000000000..4871b2b47 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/17851 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17852 b/zbx_env/var/lib/postgresql/data/base/16384/17852 new file mode 100644 index 000000000..72bdaa17e Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/17852 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17853 b/zbx_env/var/lib/postgresql/data/base/16384/17853 new file mode 100644 index 000000000..6d17cf9d1 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/17853 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17856 b/zbx_env/var/lib/postgresql/data/base/16384/17856 new file mode 100644 index 000000000..06a15d44e Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/17856 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17858 b/zbx_env/var/lib/postgresql/data/base/16384/17858 new file mode 100644 index 000000000..bba4d1af8 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/17858 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17859 b/zbx_env/var/lib/postgresql/data/base/16384/17859 new file mode 100644 index 000000000..730a4bf53 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/17859 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17860 b/zbx_env/var/lib/postgresql/data/base/16384/17860 new file mode 100644 index 000000000..e69de29bb diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17866 b/zbx_env/var/lib/postgresql/data/base/16384/17866 new file mode 100644 index 000000000..e47636dec Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/17866 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17868 b/zbx_env/var/lib/postgresql/data/base/16384/17868 new file mode 100644 index 000000000..cd15e7b20 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/17868 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17869 b/zbx_env/var/lib/postgresql/data/base/16384/17869 new file mode 100644 index 000000000..86e772358 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/17869 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17870 b/zbx_env/var/lib/postgresql/data/base/16384/17870 new file mode 100644 index 000000000..e69de29bb diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17874 b/zbx_env/var/lib/postgresql/data/base/16384/17874 new file mode 100644 index 000000000..3821d1318 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/17874 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17876 b/zbx_env/var/lib/postgresql/data/base/16384/17876 new file mode 100644 index 000000000..e69de29bb diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17881 b/zbx_env/var/lib/postgresql/data/base/16384/17881 new file mode 100644 index 000000000..e69de29bb diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17883 b/zbx_env/var/lib/postgresql/data/base/16384/17883 new file mode 100644 index 000000000..3ebd8079d Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/17883 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17884 b/zbx_env/var/lib/postgresql/data/base/16384/17884 new file mode 100644 index 000000000..175ec683a Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/17884 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17886 b/zbx_env/var/lib/postgresql/data/base/16384/17886 new file mode 100644 index 000000000..c53281d38 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/17886 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17887 b/zbx_env/var/lib/postgresql/data/base/16384/17887 new file mode 100644 index 000000000..e69de29bb diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17892 b/zbx_env/var/lib/postgresql/data/base/16384/17892 new file mode 100644 index 000000000..e69de29bb diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17894 b/zbx_env/var/lib/postgresql/data/base/16384/17894 new file mode 100644 index 000000000..346520ce0 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/17894 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17895 b/zbx_env/var/lib/postgresql/data/base/16384/17895 new file mode 100644 index 000000000..33abb1379 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/17895 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17897 b/zbx_env/var/lib/postgresql/data/base/16384/17897 new file mode 100644 index 000000000..cda5b4f81 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/17897 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17898 b/zbx_env/var/lib/postgresql/data/base/16384/17898 new file mode 100644 index 000000000..e69de29bb diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17908 b/zbx_env/var/lib/postgresql/data/base/16384/17908 new file mode 100644 index 000000000..d5e76f64e Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/17908 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17910 b/zbx_env/var/lib/postgresql/data/base/16384/17910 new file mode 100644 index 000000000..fa2f80b91 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/17910 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17911 b/zbx_env/var/lib/postgresql/data/base/16384/17911 new file mode 100644 index 000000000..e913d2cac Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/17911 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17912 b/zbx_env/var/lib/postgresql/data/base/16384/17912 new file mode 100644 index 000000000..44f374309 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/17912 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17913 b/zbx_env/var/lib/postgresql/data/base/16384/17913 new file mode 100644 index 000000000..e69de29bb diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17918 b/zbx_env/var/lib/postgresql/data/base/16384/17918 new file mode 100644 index 000000000..e69de29bb diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17920 b/zbx_env/var/lib/postgresql/data/base/16384/17920 new file mode 100644 index 000000000..589318bc4 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/17920 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17921 b/zbx_env/var/lib/postgresql/data/base/16384/17921 new file mode 100644 index 000000000..0b66ba640 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/17921 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17923 b/zbx_env/var/lib/postgresql/data/base/16384/17923 new file mode 100644 index 000000000..553132d95 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/17923 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17924 b/zbx_env/var/lib/postgresql/data/base/16384/17924 new file mode 100644 index 000000000..e6cef9d12 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/17924 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17925 b/zbx_env/var/lib/postgresql/data/base/16384/17925 new file mode 100644 index 000000000..e69de29bb diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17928 b/zbx_env/var/lib/postgresql/data/base/16384/17928 new file mode 100644 index 000000000..ed14fff62 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/17928 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17930 b/zbx_env/var/lib/postgresql/data/base/16384/17930 new file mode 100644 index 000000000..655cc1bad Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/17930 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17931 b/zbx_env/var/lib/postgresql/data/base/16384/17931 new file mode 100644 index 000000000..108b3dfc2 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/17931 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17932 b/zbx_env/var/lib/postgresql/data/base/16384/17932 new file mode 100644 index 000000000..e69de29bb diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17940 b/zbx_env/var/lib/postgresql/data/base/16384/17940 new file mode 100644 index 000000000..e69de29bb diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17942 b/zbx_env/var/lib/postgresql/data/base/16384/17942 new file mode 100644 index 000000000..640f808ce Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/17942 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17943 b/zbx_env/var/lib/postgresql/data/base/16384/17943 new file mode 100644 index 000000000..9ee1501e1 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/17943 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17945 b/zbx_env/var/lib/postgresql/data/base/16384/17945 new file mode 100644 index 000000000..4258da0c8 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/17945 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17946 b/zbx_env/var/lib/postgresql/data/base/16384/17946 new file mode 100644 index 000000000..631a3e3ba Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/17946 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17947 b/zbx_env/var/lib/postgresql/data/base/16384/17947 new file mode 100644 index 000000000..e69de29bb diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17951 b/zbx_env/var/lib/postgresql/data/base/16384/17951 new file mode 100644 index 000000000..1d0783588 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/17951 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17953 b/zbx_env/var/lib/postgresql/data/base/16384/17953 new file mode 100644 index 000000000..7b213dc75 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/17953 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17954 b/zbx_env/var/lib/postgresql/data/base/16384/17954 new file mode 100644 index 000000000..e69de29bb diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17958 b/zbx_env/var/lib/postgresql/data/base/16384/17958 new file mode 100644 index 000000000..13b7c71fc Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/17958 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17960 b/zbx_env/var/lib/postgresql/data/base/16384/17960 new file mode 100644 index 000000000..e69de29bb diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17964 b/zbx_env/var/lib/postgresql/data/base/16384/17964 new file mode 100644 index 000000000..7e56cef35 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/17964 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17966 b/zbx_env/var/lib/postgresql/data/base/16384/17966 new file mode 100644 index 000000000..82fda0d61 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/17966 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17967 b/zbx_env/var/lib/postgresql/data/base/16384/17967 new file mode 100644 index 000000000..e69de29bb diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17972 b/zbx_env/var/lib/postgresql/data/base/16384/17972 new file mode 100644 index 000000000..e69de29bb diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17974 b/zbx_env/var/lib/postgresql/data/base/16384/17974 new file mode 100644 index 000000000..45cff33b4 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/17974 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17975 b/zbx_env/var/lib/postgresql/data/base/16384/17975 new file mode 100644 index 000000000..716ef2d12 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/17975 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17977 b/zbx_env/var/lib/postgresql/data/base/16384/17977 new file mode 100644 index 000000000..e69de29bb diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17983 b/zbx_env/var/lib/postgresql/data/base/16384/17983 new file mode 100644 index 000000000..e69de29bb diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17985 b/zbx_env/var/lib/postgresql/data/base/16384/17985 new file mode 100644 index 000000000..18f969d77 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/17985 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17986 b/zbx_env/var/lib/postgresql/data/base/16384/17986 new file mode 100644 index 000000000..1877abcef Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/17986 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17988 b/zbx_env/var/lib/postgresql/data/base/16384/17988 new file mode 100644 index 000000000..e69de29bb diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17992 b/zbx_env/var/lib/postgresql/data/base/16384/17992 new file mode 100644 index 000000000..58b29a3e7 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/17992 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17994 b/zbx_env/var/lib/postgresql/data/base/16384/17994 new file mode 100644 index 000000000..f2180ae9a Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/17994 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17995 b/zbx_env/var/lib/postgresql/data/base/16384/17995 new file mode 100644 index 000000000..e69de29bb diff --git a/zbx_env/var/lib/postgresql/data/base/16384/18001 b/zbx_env/var/lib/postgresql/data/base/16384/18001 new file mode 100644 index 000000000..0f1808bd6 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/18001 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/18003 b/zbx_env/var/lib/postgresql/data/base/16384/18003 new file mode 100644 index 000000000..d1e181aea Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/18003 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/18004 b/zbx_env/var/lib/postgresql/data/base/16384/18004 new file mode 100644 index 000000000..e69de29bb diff --git a/zbx_env/var/lib/postgresql/data/base/16384/18007 b/zbx_env/var/lib/postgresql/data/base/16384/18007 new file mode 100644 index 000000000..1339c3faa Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/18007 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/18009 b/zbx_env/var/lib/postgresql/data/base/16384/18009 new file mode 100644 index 000000000..12f3be4dd Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/18009 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/18009_fsm b/zbx_env/var/lib/postgresql/data/base/16384/18009_fsm new file mode 100644 index 000000000..6b4fbb37b Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/18009_fsm differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/18015 b/zbx_env/var/lib/postgresql/data/base/16384/18015 new file mode 100644 index 000000000..2ca1bc7b5 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/18015 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/18017 b/zbx_env/var/lib/postgresql/data/base/16384/18017 new file mode 100644 index 000000000..d96deab78 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/18017 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/18018 b/zbx_env/var/lib/postgresql/data/base/16384/18018 new file mode 100644 index 000000000..e69de29bb diff --git a/zbx_env/var/lib/postgresql/data/base/16384/18030 b/zbx_env/var/lib/postgresql/data/base/16384/18030 new file mode 100644 index 000000000..e69de29bb diff --git a/zbx_env/var/lib/postgresql/data/base/16384/18032 b/zbx_env/var/lib/postgresql/data/base/16384/18032 new file mode 100644 index 000000000..1689f2a37 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/18032 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/18033 b/zbx_env/var/lib/postgresql/data/base/16384/18033 new file mode 100644 index 000000000..40f3e651b Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/18033 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/18035 b/zbx_env/var/lib/postgresql/data/base/16384/18035 new file mode 100644 index 000000000..e69de29bb diff --git a/zbx_env/var/lib/postgresql/data/base/16384/18040 b/zbx_env/var/lib/postgresql/data/base/16384/18040 new file mode 100644 index 000000000..e69de29bb diff --git a/zbx_env/var/lib/postgresql/data/base/16384/18042 b/zbx_env/var/lib/postgresql/data/base/16384/18042 new file mode 100644 index 000000000..08800ef30 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/18042 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/18043 b/zbx_env/var/lib/postgresql/data/base/16384/18043 new file mode 100644 index 000000000..07584945d Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/18043 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/18045 b/zbx_env/var/lib/postgresql/data/base/16384/18045 new file mode 100644 index 000000000..e69de29bb diff --git a/zbx_env/var/lib/postgresql/data/base/16384/18048 b/zbx_env/var/lib/postgresql/data/base/16384/18048 new file mode 100644 index 000000000..1f96b6966 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/18048 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/18050 b/zbx_env/var/lib/postgresql/data/base/16384/18050 new file mode 100644 index 000000000..6d17cf9d1 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/18050 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/18069 b/zbx_env/var/lib/postgresql/data/base/16384/18069 new file mode 100644 index 000000000..e69de29bb diff --git a/zbx_env/var/lib/postgresql/data/base/16384/18071 b/zbx_env/var/lib/postgresql/data/base/16384/18071 new file mode 100644 index 000000000..aa6bde9ed Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/18071 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/18072 b/zbx_env/var/lib/postgresql/data/base/16384/18072 new file mode 100644 index 000000000..49a4f830b Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/18072 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/18074 b/zbx_env/var/lib/postgresql/data/base/16384/18074 new file mode 100644 index 000000000..361fb7b1d Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/18074 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/18075 b/zbx_env/var/lib/postgresql/data/base/16384/18075 new file mode 100644 index 000000000..e69de29bb diff --git a/zbx_env/var/lib/postgresql/data/base/16384/18078 b/zbx_env/var/lib/postgresql/data/base/16384/18078 new file mode 100644 index 000000000..b3df5c3f4 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/18078 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/18080 b/zbx_env/var/lib/postgresql/data/base/16384/18080 new file mode 100644 index 000000000..eb3f421e3 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/18080 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/18081 b/zbx_env/var/lib/postgresql/data/base/16384/18081 new file mode 100644 index 000000000..e69de29bb diff --git a/zbx_env/var/lib/postgresql/data/base/16384/18087 b/zbx_env/var/lib/postgresql/data/base/16384/18087 new file mode 100644 index 000000000..e69de29bb diff --git a/zbx_env/var/lib/postgresql/data/base/16384/18089 b/zbx_env/var/lib/postgresql/data/base/16384/18089 new file mode 100644 index 000000000..6710ca48e Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/18089 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/18090 b/zbx_env/var/lib/postgresql/data/base/16384/18090 new file mode 100644 index 000000000..59e1d5815 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/18090 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/18092 b/zbx_env/var/lib/postgresql/data/base/16384/18092 new file mode 100644 index 000000000..20b83a157 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/18092 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/18093 b/zbx_env/var/lib/postgresql/data/base/16384/18093 new file mode 100644 index 000000000..e69de29bb diff --git a/zbx_env/var/lib/postgresql/data/base/16384/18099 b/zbx_env/var/lib/postgresql/data/base/16384/18099 new file mode 100644 index 000000000..e69de29bb diff --git a/zbx_env/var/lib/postgresql/data/base/16384/18101 b/zbx_env/var/lib/postgresql/data/base/16384/18101 new file mode 100644 index 000000000..36242ba78 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/18101 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/18102 b/zbx_env/var/lib/postgresql/data/base/16384/18102 new file mode 100644 index 000000000..cd644b0cb Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/18102 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/18104 b/zbx_env/var/lib/postgresql/data/base/16384/18104 new file mode 100644 index 000000000..de6251d84 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/18104 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/18105 b/zbx_env/var/lib/postgresql/data/base/16384/18105 new file mode 100644 index 000000000..6d17cf9d1 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/18105 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/18109 b/zbx_env/var/lib/postgresql/data/base/16384/18109 new file mode 100644 index 000000000..6e566c3d6 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/18109 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/18111 b/zbx_env/var/lib/postgresql/data/base/16384/18111 new file mode 100644 index 000000000..e69de29bb diff --git a/zbx_env/var/lib/postgresql/data/base/16384/18115 b/zbx_env/var/lib/postgresql/data/base/16384/18115 new file mode 100644 index 000000000..28c258825 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/18115 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/18117 b/zbx_env/var/lib/postgresql/data/base/16384/18117 new file mode 100644 index 000000000..a195056df Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/18117 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/18118 b/zbx_env/var/lib/postgresql/data/base/16384/18118 new file mode 100644 index 000000000..e69de29bb diff --git a/zbx_env/var/lib/postgresql/data/base/16384/18122 b/zbx_env/var/lib/postgresql/data/base/16384/18122 new file mode 100644 index 000000000..3566e7962 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/18122 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/18124 b/zbx_env/var/lib/postgresql/data/base/16384/18124 new file mode 100644 index 000000000..a01dc5a3c Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/18124 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/18125 b/zbx_env/var/lib/postgresql/data/base/16384/18125 new file mode 100644 index 000000000..6d17cf9d1 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/18125 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/18134 b/zbx_env/var/lib/postgresql/data/base/16384/18134 new file mode 100644 index 000000000..e69de29bb diff --git a/zbx_env/var/lib/postgresql/data/base/16384/18136 b/zbx_env/var/lib/postgresql/data/base/16384/18136 new file mode 100644 index 000000000..e725e5a2d Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/18136 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/18137 b/zbx_env/var/lib/postgresql/data/base/16384/18137 new file mode 100644 index 000000000..333fabeb1 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/18137 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/18139 b/zbx_env/var/lib/postgresql/data/base/16384/18139 new file mode 100644 index 000000000..cf8f23f36 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/18139 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/18140 b/zbx_env/var/lib/postgresql/data/base/16384/18140 new file mode 100644 index 000000000..e69de29bb diff --git a/zbx_env/var/lib/postgresql/data/base/16384/18147 b/zbx_env/var/lib/postgresql/data/base/16384/18147 new file mode 100644 index 000000000..e69de29bb diff --git a/zbx_env/var/lib/postgresql/data/base/16384/18149 b/zbx_env/var/lib/postgresql/data/base/16384/18149 new file mode 100644 index 000000000..2b2af072f Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/18149 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/18150 b/zbx_env/var/lib/postgresql/data/base/16384/18150 new file mode 100644 index 000000000..6a2d33ae2 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/18150 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/18152 b/zbx_env/var/lib/postgresql/data/base/16384/18152 new file mode 100644 index 000000000..93959e0eb Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/18152 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/18153 b/zbx_env/var/lib/postgresql/data/base/16384/18153 new file mode 100644 index 000000000..9a38f1878 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/18153 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/18154 b/zbx_env/var/lib/postgresql/data/base/16384/18154 new file mode 100644 index 000000000..193014ab5 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/18154 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/18155 b/zbx_env/var/lib/postgresql/data/base/16384/18155 new file mode 100644 index 000000000..3466439a0 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/18155 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/18156 b/zbx_env/var/lib/postgresql/data/base/16384/18156 new file mode 100644 index 000000000..4023ff139 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/18156 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/18157 b/zbx_env/var/lib/postgresql/data/base/16384/18157 new file mode 100644 index 000000000..2a263b395 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/18157 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/18158 b/zbx_env/var/lib/postgresql/data/base/16384/18158 new file mode 100644 index 000000000..6d17cf9d1 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/18158 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/2187 b/zbx_env/var/lib/postgresql/data/base/16384/2187 new file mode 100644 index 000000000..d39a0b782 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/2187 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/2224 b/zbx_env/var/lib/postgresql/data/base/16384/2224 new file mode 100644 index 000000000..6d17cf9d1 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/2224 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/2224_vm b/zbx_env/var/lib/postgresql/data/base/16384/2224_vm new file mode 100644 index 000000000..e69de29bb diff --git a/zbx_env/var/lib/postgresql/data/base/16384/2328 b/zbx_env/var/lib/postgresql/data/base/16384/2328 new file mode 100644 index 000000000..e69de29bb diff --git a/zbx_env/var/lib/postgresql/data/base/16384/2328_vm b/zbx_env/var/lib/postgresql/data/base/16384/2328_vm new file mode 100644 index 000000000..e69de29bb diff --git a/zbx_env/var/lib/postgresql/data/base/16384/2336 b/zbx_env/var/lib/postgresql/data/base/16384/2336 new file mode 100644 index 000000000..e69de29bb diff --git a/zbx_env/var/lib/postgresql/data/base/16384/2336_vm b/zbx_env/var/lib/postgresql/data/base/16384/2336_vm new file mode 100644 index 000000000..e69de29bb diff --git a/zbx_env/var/lib/postgresql/data/base/16384/2337 b/zbx_env/var/lib/postgresql/data/base/16384/2337 new file mode 100644 index 000000000..c16658041 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/2337 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/2600 b/zbx_env/var/lib/postgresql/data/base/16384/2600 new file mode 100644 index 000000000..980d98e71 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/2600 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/2600_fsm b/zbx_env/var/lib/postgresql/data/base/16384/2600_fsm new file mode 100644 index 000000000..e63ffab3e Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/2600_fsm differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/2600_vm b/zbx_env/var/lib/postgresql/data/base/16384/2600_vm new file mode 100644 index 000000000..be059bc07 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/2600_vm differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/2601 b/zbx_env/var/lib/postgresql/data/base/16384/2601 new file mode 100644 index 000000000..1d44fa56b Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/2601 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/2601_fsm b/zbx_env/var/lib/postgresql/data/base/16384/2601_fsm new file mode 100644 index 000000000..0908076c0 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/2601_fsm differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/2601_vm b/zbx_env/var/lib/postgresql/data/base/16384/2601_vm new file mode 100644 index 000000000..2aa5dcdb5 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/2601_vm differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/2602 b/zbx_env/var/lib/postgresql/data/base/16384/2602 new file mode 100644 index 000000000..66f5754af Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/2602 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/2602_fsm b/zbx_env/var/lib/postgresql/data/base/16384/2602_fsm new file mode 100644 index 000000000..5ed43b88a Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/2602_fsm differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/2602_vm b/zbx_env/var/lib/postgresql/data/base/16384/2602_vm new file mode 100644 index 000000000..d1b65bdb8 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/2602_vm differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/2603 b/zbx_env/var/lib/postgresql/data/base/16384/2603 new file mode 100644 index 000000000..a51df6676 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/2603 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/2603_fsm b/zbx_env/var/lib/postgresql/data/base/16384/2603_fsm new file mode 100644 index 000000000..f507d0e9f Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/2603_fsm differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/2603_vm b/zbx_env/var/lib/postgresql/data/base/16384/2603_vm new file mode 100644 index 000000000..95728db4a Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/2603_vm differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/2604 b/zbx_env/var/lib/postgresql/data/base/16384/2604 new file mode 100644 index 000000000..d561582c9 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/2604 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/2604_fsm b/zbx_env/var/lib/postgresql/data/base/16384/2604_fsm new file mode 100644 index 000000000..6b4fbb37b Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/2604_fsm differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/2604_vm b/zbx_env/var/lib/postgresql/data/base/16384/2604_vm new file mode 100644 index 000000000..e69de29bb diff --git a/zbx_env/var/lib/postgresql/data/base/16384/2605 b/zbx_env/var/lib/postgresql/data/base/16384/2605 new file mode 100644 index 000000000..45f16c079 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/2605 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/2605_fsm b/zbx_env/var/lib/postgresql/data/base/16384/2605_fsm new file mode 100644 index 000000000..c1b0e039f Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/2605_fsm differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/2605_vm b/zbx_env/var/lib/postgresql/data/base/16384/2605_vm new file mode 100644 index 000000000..bd231050a Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/2605_vm differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/2606 b/zbx_env/var/lib/postgresql/data/base/16384/2606 new file mode 100644 index 000000000..bd6e8ae33 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/2606 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/2606_fsm b/zbx_env/var/lib/postgresql/data/base/16384/2606_fsm new file mode 100644 index 000000000..d37e4dd05 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/2606_fsm differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/2606_vm b/zbx_env/var/lib/postgresql/data/base/16384/2606_vm new file mode 100644 index 000000000..4301f6b95 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/2606_vm differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/2607 b/zbx_env/var/lib/postgresql/data/base/16384/2607 new file mode 100644 index 000000000..1ecadcbc8 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/2607 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/2607_fsm b/zbx_env/var/lib/postgresql/data/base/16384/2607_fsm new file mode 100644 index 000000000..5b066f1a3 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/2607_fsm differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/2607_vm b/zbx_env/var/lib/postgresql/data/base/16384/2607_vm new file mode 100644 index 000000000..913a86769 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/2607_vm differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/2608 b/zbx_env/var/lib/postgresql/data/base/16384/2608 new file mode 100644 index 000000000..779d36c76 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/2608 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/2608_fsm b/zbx_env/var/lib/postgresql/data/base/16384/2608_fsm new file mode 100644 index 000000000..106a100e5 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/2608_fsm differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/2608_vm b/zbx_env/var/lib/postgresql/data/base/16384/2608_vm new file mode 100644 index 000000000..b4ec88c13 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/2608_vm differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/2609 b/zbx_env/var/lib/postgresql/data/base/16384/2609 new file mode 100644 index 000000000..55d48b226 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/2609 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/2609_fsm b/zbx_env/var/lib/postgresql/data/base/16384/2609_fsm new file mode 100644 index 000000000..8fa6e5fa6 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/2609_fsm differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/2609_vm b/zbx_env/var/lib/postgresql/data/base/16384/2609_vm new file mode 100644 index 000000000..a459f2c88 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/2609_vm differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/2610 b/zbx_env/var/lib/postgresql/data/base/16384/2610 new file mode 100644 index 000000000..694000b01 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/2610 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/2610_fsm b/zbx_env/var/lib/postgresql/data/base/16384/2610_fsm new file mode 100644 index 000000000..6a556770a Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/2610_fsm differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/2610_vm b/zbx_env/var/lib/postgresql/data/base/16384/2610_vm new file mode 100644 index 000000000..a2cb5435a Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/2610_vm differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/2611 b/zbx_env/var/lib/postgresql/data/base/16384/2611 new file mode 100644 index 000000000..e69de29bb diff --git a/zbx_env/var/lib/postgresql/data/base/16384/2611_vm b/zbx_env/var/lib/postgresql/data/base/16384/2611_vm new file mode 100644 index 000000000..e69de29bb diff --git a/zbx_env/var/lib/postgresql/data/base/16384/2612 b/zbx_env/var/lib/postgresql/data/base/16384/2612 new file mode 100644 index 000000000..92362df9a Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/2612 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/2612_fsm b/zbx_env/var/lib/postgresql/data/base/16384/2612_fsm new file mode 100644 index 000000000..877976acf Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/2612_fsm differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/2612_vm b/zbx_env/var/lib/postgresql/data/base/16384/2612_vm new file mode 100644 index 000000000..27aad7785 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/2612_vm differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/2613 b/zbx_env/var/lib/postgresql/data/base/16384/2613 new file mode 100644 index 000000000..e69de29bb diff --git a/zbx_env/var/lib/postgresql/data/base/16384/2613_vm b/zbx_env/var/lib/postgresql/data/base/16384/2613_vm new file mode 100644 index 000000000..e69de29bb diff --git a/zbx_env/var/lib/postgresql/data/base/16384/2615 b/zbx_env/var/lib/postgresql/data/base/16384/2615 new file mode 100644 index 000000000..f81cca3d5 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/2615 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/2615_fsm b/zbx_env/var/lib/postgresql/data/base/16384/2615_fsm new file mode 100644 index 000000000..948882ce6 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/2615_fsm differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/2615_vm b/zbx_env/var/lib/postgresql/data/base/16384/2615_vm new file mode 100644 index 000000000..0ceaa2a80 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/2615_vm differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/2616 b/zbx_env/var/lib/postgresql/data/base/16384/2616 new file mode 100644 index 000000000..19f42857d Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/2616 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/2616_fsm b/zbx_env/var/lib/postgresql/data/base/16384/2616_fsm new file mode 100644 index 000000000..995a05b3c Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/2616_fsm differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/2616_vm b/zbx_env/var/lib/postgresql/data/base/16384/2616_vm new file mode 100644 index 000000000..dfb995f88 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/2616_vm differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/2617 b/zbx_env/var/lib/postgresql/data/base/16384/2617 new file mode 100644 index 000000000..d989d35e2 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/2617 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/2617_fsm b/zbx_env/var/lib/postgresql/data/base/16384/2617_fsm new file mode 100644 index 000000000..cb2a806b3 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/2617_fsm differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/2617_vm b/zbx_env/var/lib/postgresql/data/base/16384/2617_vm new file mode 100644 index 000000000..678b7f7f3 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/2617_vm differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/2618 b/zbx_env/var/lib/postgresql/data/base/16384/2618 new file mode 100644 index 000000000..8a17c1706 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/2618 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/2618_fsm b/zbx_env/var/lib/postgresql/data/base/16384/2618_fsm new file mode 100644 index 000000000..2379916aa Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/2618_fsm differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/2618_vm b/zbx_env/var/lib/postgresql/data/base/16384/2618_vm new file mode 100644 index 000000000..4b06dd76e Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/2618_vm differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/2619 b/zbx_env/var/lib/postgresql/data/base/16384/2619 new file mode 100644 index 000000000..c14ecd8fa Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/2619 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/2619_fsm b/zbx_env/var/lib/postgresql/data/base/16384/2619_fsm new file mode 100644 index 000000000..81f80a5b6 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/2619_fsm differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/2619_vm b/zbx_env/var/lib/postgresql/data/base/16384/2619_vm new file mode 100644 index 000000000..554e94eb4 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/2619_vm differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/2620 b/zbx_env/var/lib/postgresql/data/base/16384/2620 new file mode 100644 index 000000000..e2c8fe92d Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/2620 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/2620_fsm b/zbx_env/var/lib/postgresql/data/base/16384/2620_fsm new file mode 100644 index 000000000..6b4fbb37b Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/2620_fsm differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/2620_vm b/zbx_env/var/lib/postgresql/data/base/16384/2620_vm new file mode 100644 index 000000000..e69de29bb diff --git a/zbx_env/var/lib/postgresql/data/base/16384/2650 b/zbx_env/var/lib/postgresql/data/base/16384/2650 new file mode 100644 index 000000000..8a0d71d50 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/2650 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/2651 b/zbx_env/var/lib/postgresql/data/base/16384/2651 new file mode 100644 index 000000000..29e245e35 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/2651 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/2652 b/zbx_env/var/lib/postgresql/data/base/16384/2652 new file mode 100644 index 000000000..9e26143e4 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/2652 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/2653 b/zbx_env/var/lib/postgresql/data/base/16384/2653 new file mode 100644 index 000000000..e02db67df Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/2653 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/2654 b/zbx_env/var/lib/postgresql/data/base/16384/2654 new file mode 100644 index 000000000..95363af10 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/2654 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/2655 b/zbx_env/var/lib/postgresql/data/base/16384/2655 new file mode 100644 index 000000000..a9a12adf9 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/2655 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/2656 b/zbx_env/var/lib/postgresql/data/base/16384/2656 new file mode 100644 index 000000000..3f24964ff Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/2656 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/2657 b/zbx_env/var/lib/postgresql/data/base/16384/2657 new file mode 100644 index 000000000..12d3ab069 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/2657 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/2658 b/zbx_env/var/lib/postgresql/data/base/16384/2658 new file mode 100644 index 000000000..77a8284dd Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/2658 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/2659 b/zbx_env/var/lib/postgresql/data/base/16384/2659 new file mode 100644 index 000000000..671c271cd Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/2659 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/2660 b/zbx_env/var/lib/postgresql/data/base/16384/2660 new file mode 100644 index 000000000..d16f41a42 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/2660 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/2661 b/zbx_env/var/lib/postgresql/data/base/16384/2661 new file mode 100644 index 000000000..59ade838f Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/2661 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/2662 b/zbx_env/var/lib/postgresql/data/base/16384/2662 new file mode 100644 index 000000000..e645ffea3 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/2662 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/2663 b/zbx_env/var/lib/postgresql/data/base/16384/2663 new file mode 100644 index 000000000..fcada35b5 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/2663 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/2664 b/zbx_env/var/lib/postgresql/data/base/16384/2664 new file mode 100644 index 000000000..8c5f1989e Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/2664 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/2665 b/zbx_env/var/lib/postgresql/data/base/16384/2665 new file mode 100644 index 000000000..63ca88a3e Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/2665 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/2666 b/zbx_env/var/lib/postgresql/data/base/16384/2666 new file mode 100644 index 000000000..e7c92d1f5 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/2666 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/2667 b/zbx_env/var/lib/postgresql/data/base/16384/2667 new file mode 100644 index 000000000..5755a624a Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/2667 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/2668 b/zbx_env/var/lib/postgresql/data/base/16384/2668 new file mode 100644 index 000000000..11a6b5270 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/2668 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/2669 b/zbx_env/var/lib/postgresql/data/base/16384/2669 new file mode 100644 index 000000000..79d31ebcc Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/2669 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/2670 b/zbx_env/var/lib/postgresql/data/base/16384/2670 new file mode 100644 index 000000000..6184b908d Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/2670 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/2673 b/zbx_env/var/lib/postgresql/data/base/16384/2673 new file mode 100644 index 000000000..c90a21c3d Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/2673 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/2674 b/zbx_env/var/lib/postgresql/data/base/16384/2674 new file mode 100644 index 000000000..4c9c767f4 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/2674 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/2675 b/zbx_env/var/lib/postgresql/data/base/16384/2675 new file mode 100644 index 000000000..c88a53bd5 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/2675 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/2678 b/zbx_env/var/lib/postgresql/data/base/16384/2678 new file mode 100644 index 000000000..aa38595d1 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/2678 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/2679 b/zbx_env/var/lib/postgresql/data/base/16384/2679 new file mode 100644 index 000000000..ee7f8c45b Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/2679 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/2680 b/zbx_env/var/lib/postgresql/data/base/16384/2680 new file mode 100644 index 000000000..876da95b2 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/2680 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/2681 b/zbx_env/var/lib/postgresql/data/base/16384/2681 new file mode 100644 index 000000000..4987623fd Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/2681 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/2682 b/zbx_env/var/lib/postgresql/data/base/16384/2682 new file mode 100644 index 000000000..7943e766e Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/2682 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/2683 b/zbx_env/var/lib/postgresql/data/base/16384/2683 new file mode 100644 index 000000000..636f10144 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/2683 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/2684 b/zbx_env/var/lib/postgresql/data/base/16384/2684 new file mode 100644 index 000000000..f54f9598d Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/2684 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/2685 b/zbx_env/var/lib/postgresql/data/base/16384/2685 new file mode 100644 index 000000000..95d7fde28 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/2685 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/2686 b/zbx_env/var/lib/postgresql/data/base/16384/2686 new file mode 100644 index 000000000..bc86cec09 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/2686 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/2687 b/zbx_env/var/lib/postgresql/data/base/16384/2687 new file mode 100644 index 000000000..f080504d5 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/2687 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/2688 b/zbx_env/var/lib/postgresql/data/base/16384/2688 new file mode 100644 index 000000000..47572a662 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/2688 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/2689 b/zbx_env/var/lib/postgresql/data/base/16384/2689 new file mode 100644 index 000000000..4333d769f Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/2689 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/2690 b/zbx_env/var/lib/postgresql/data/base/16384/2690 new file mode 100644 index 000000000..89fab01a4 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/2690 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/2691 b/zbx_env/var/lib/postgresql/data/base/16384/2691 new file mode 100644 index 000000000..08dade0dd Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/2691 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/2692 b/zbx_env/var/lib/postgresql/data/base/16384/2692 new file mode 100644 index 000000000..150467201 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/2692 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/2693 b/zbx_env/var/lib/postgresql/data/base/16384/2693 new file mode 100644 index 000000000..ef76c5b32 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/2693 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/2696 b/zbx_env/var/lib/postgresql/data/base/16384/2696 new file mode 100644 index 000000000..69014bb1f Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/2696 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/2699 b/zbx_env/var/lib/postgresql/data/base/16384/2699 new file mode 100644 index 000000000..0c587e2b3 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/2699 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/2701 b/zbx_env/var/lib/postgresql/data/base/16384/2701 new file mode 100644 index 000000000..b4dd16482 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/2701 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/2702 b/zbx_env/var/lib/postgresql/data/base/16384/2702 new file mode 100644 index 000000000..ff7cb22e7 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/2702 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/2703 b/zbx_env/var/lib/postgresql/data/base/16384/2703 new file mode 100644 index 000000000..acff6ee2a Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/2703 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/2704 b/zbx_env/var/lib/postgresql/data/base/16384/2704 new file mode 100644 index 000000000..ff285084f Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/2704 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/2753 b/zbx_env/var/lib/postgresql/data/base/16384/2753 new file mode 100644 index 000000000..73f903165 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/2753 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/2753_fsm b/zbx_env/var/lib/postgresql/data/base/16384/2753_fsm new file mode 100644 index 000000000..0787df53d Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/2753_fsm differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/2753_vm b/zbx_env/var/lib/postgresql/data/base/16384/2753_vm new file mode 100644 index 000000000..6c8ced900 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/2753_vm differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/2754 b/zbx_env/var/lib/postgresql/data/base/16384/2754 new file mode 100644 index 000000000..5a44a7962 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/2754 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/2755 b/zbx_env/var/lib/postgresql/data/base/16384/2755 new file mode 100644 index 000000000..fac11c420 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/2755 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/2756 b/zbx_env/var/lib/postgresql/data/base/16384/2756 new file mode 100644 index 000000000..5b9bc166b Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/2756 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/2757 b/zbx_env/var/lib/postgresql/data/base/16384/2757 new file mode 100644 index 000000000..1bade66ff Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/2757 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/2830 b/zbx_env/var/lib/postgresql/data/base/16384/2830 new file mode 100644 index 000000000..e69de29bb diff --git a/zbx_env/var/lib/postgresql/data/base/16384/2830_vm b/zbx_env/var/lib/postgresql/data/base/16384/2830_vm new file mode 100644 index 000000000..e69de29bb diff --git a/zbx_env/var/lib/postgresql/data/base/16384/2831 b/zbx_env/var/lib/postgresql/data/base/16384/2831 new file mode 100644 index 000000000..b0c0ed88c Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/2831 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/2832 b/zbx_env/var/lib/postgresql/data/base/16384/2832 new file mode 100644 index 000000000..e69de29bb diff --git a/zbx_env/var/lib/postgresql/data/base/16384/2832_vm b/zbx_env/var/lib/postgresql/data/base/16384/2832_vm new file mode 100644 index 000000000..e69de29bb diff --git a/zbx_env/var/lib/postgresql/data/base/16384/2833 b/zbx_env/var/lib/postgresql/data/base/16384/2833 new file mode 100644 index 000000000..e70ee62b0 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/2833 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/2834 b/zbx_env/var/lib/postgresql/data/base/16384/2834 new file mode 100644 index 000000000..e69de29bb diff --git a/zbx_env/var/lib/postgresql/data/base/16384/2834_vm b/zbx_env/var/lib/postgresql/data/base/16384/2834_vm new file mode 100644 index 000000000..e69de29bb diff --git a/zbx_env/var/lib/postgresql/data/base/16384/2835 b/zbx_env/var/lib/postgresql/data/base/16384/2835 new file mode 100644 index 000000000..c65e18b5e Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/2835 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/2836 b/zbx_env/var/lib/postgresql/data/base/16384/2836 new file mode 100644 index 000000000..e69de29bb diff --git a/zbx_env/var/lib/postgresql/data/base/16384/2836_vm b/zbx_env/var/lib/postgresql/data/base/16384/2836_vm new file mode 100644 index 000000000..e69de29bb diff --git a/zbx_env/var/lib/postgresql/data/base/16384/2837 b/zbx_env/var/lib/postgresql/data/base/16384/2837 new file mode 100644 index 000000000..4ef00f573 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/2837 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/2838 b/zbx_env/var/lib/postgresql/data/base/16384/2838 new file mode 100644 index 000000000..5efb4501d Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/2838 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/2838_fsm b/zbx_env/var/lib/postgresql/data/base/16384/2838_fsm new file mode 100644 index 000000000..72ba496ec Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/2838_fsm differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/2838_vm b/zbx_env/var/lib/postgresql/data/base/16384/2838_vm new file mode 100644 index 000000000..962055edb Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/2838_vm differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/2839 b/zbx_env/var/lib/postgresql/data/base/16384/2839 new file mode 100644 index 000000000..9b1c1e571 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/2839 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/2840 b/zbx_env/var/lib/postgresql/data/base/16384/2840 new file mode 100644 index 000000000..840ad144c Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/2840 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/2840_fsm b/zbx_env/var/lib/postgresql/data/base/16384/2840_fsm new file mode 100644 index 000000000..7d14d0cfe Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/2840_fsm differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/2840_vm b/zbx_env/var/lib/postgresql/data/base/16384/2840_vm new file mode 100644 index 000000000..fee0e0473 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/2840_vm differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/2841 b/zbx_env/var/lib/postgresql/data/base/16384/2841 new file mode 100644 index 000000000..44212c4cd Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/2841 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/2995 b/zbx_env/var/lib/postgresql/data/base/16384/2995 new file mode 100644 index 000000000..e69de29bb diff --git a/zbx_env/var/lib/postgresql/data/base/16384/2995_vm b/zbx_env/var/lib/postgresql/data/base/16384/2995_vm new file mode 100644 index 000000000..e69de29bb diff --git a/zbx_env/var/lib/postgresql/data/base/16384/2996 b/zbx_env/var/lib/postgresql/data/base/16384/2996 new file mode 100644 index 000000000..a1e392a5f Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/2996 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/3079 b/zbx_env/var/lib/postgresql/data/base/16384/3079 new file mode 100644 index 000000000..2ac5237cb Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/3079 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/3079_fsm b/zbx_env/var/lib/postgresql/data/base/16384/3079_fsm new file mode 100644 index 000000000..7732d22b7 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/3079_fsm differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/3079_vm b/zbx_env/var/lib/postgresql/data/base/16384/3079_vm new file mode 100644 index 000000000..44a2ff91e Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/3079_vm differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/3080 b/zbx_env/var/lib/postgresql/data/base/16384/3080 new file mode 100644 index 000000000..91f8d4902 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/3080 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/3081 b/zbx_env/var/lib/postgresql/data/base/16384/3081 new file mode 100644 index 000000000..8bc74ec63 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/3081 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/3085 b/zbx_env/var/lib/postgresql/data/base/16384/3085 new file mode 100644 index 000000000..05c256fa5 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/3085 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/3118 b/zbx_env/var/lib/postgresql/data/base/16384/3118 new file mode 100644 index 000000000..e69de29bb diff --git a/zbx_env/var/lib/postgresql/data/base/16384/3118_vm b/zbx_env/var/lib/postgresql/data/base/16384/3118_vm new file mode 100644 index 000000000..e69de29bb diff --git a/zbx_env/var/lib/postgresql/data/base/16384/3119 b/zbx_env/var/lib/postgresql/data/base/16384/3119 new file mode 100644 index 000000000..cdf9c180f Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/3119 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/3164 b/zbx_env/var/lib/postgresql/data/base/16384/3164 new file mode 100644 index 000000000..a58c39469 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/3164 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/3256 b/zbx_env/var/lib/postgresql/data/base/16384/3256 new file mode 100644 index 000000000..e69de29bb diff --git a/zbx_env/var/lib/postgresql/data/base/16384/3256_vm b/zbx_env/var/lib/postgresql/data/base/16384/3256_vm new file mode 100644 index 000000000..e69de29bb diff --git a/zbx_env/var/lib/postgresql/data/base/16384/3257 b/zbx_env/var/lib/postgresql/data/base/16384/3257 new file mode 100644 index 000000000..fb1ff935a Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/3257 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/3258 b/zbx_env/var/lib/postgresql/data/base/16384/3258 new file mode 100644 index 000000000..0b6aca02a Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/3258 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/3350 b/zbx_env/var/lib/postgresql/data/base/16384/3350 new file mode 100644 index 000000000..e69de29bb diff --git a/zbx_env/var/lib/postgresql/data/base/16384/3350_vm b/zbx_env/var/lib/postgresql/data/base/16384/3350_vm new file mode 100644 index 000000000..e69de29bb diff --git a/zbx_env/var/lib/postgresql/data/base/16384/3351 b/zbx_env/var/lib/postgresql/data/base/16384/3351 new file mode 100644 index 000000000..485a7f339 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/3351 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/3379 b/zbx_env/var/lib/postgresql/data/base/16384/3379 new file mode 100644 index 000000000..2b3165f78 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/3379 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/3380 b/zbx_env/var/lib/postgresql/data/base/16384/3380 new file mode 100644 index 000000000..262c95057 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/3380 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/3381 b/zbx_env/var/lib/postgresql/data/base/16384/3381 new file mode 100644 index 000000000..e69de29bb diff --git a/zbx_env/var/lib/postgresql/data/base/16384/3381_vm b/zbx_env/var/lib/postgresql/data/base/16384/3381_vm new file mode 100644 index 000000000..e69de29bb diff --git a/zbx_env/var/lib/postgresql/data/base/16384/3394 b/zbx_env/var/lib/postgresql/data/base/16384/3394 new file mode 100644 index 000000000..b6a9edeae Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/3394 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/3394_fsm b/zbx_env/var/lib/postgresql/data/base/16384/3394_fsm new file mode 100644 index 000000000..9bf23e33a Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/3394_fsm differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/3394_vm b/zbx_env/var/lib/postgresql/data/base/16384/3394_vm new file mode 100644 index 000000000..450f3d7c2 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/3394_vm differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/3395 b/zbx_env/var/lib/postgresql/data/base/16384/3395 new file mode 100644 index 000000000..5bd6238c1 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/3395 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/3439 b/zbx_env/var/lib/postgresql/data/base/16384/3439 new file mode 100644 index 000000000..e69de29bb diff --git a/zbx_env/var/lib/postgresql/data/base/16384/3439_vm b/zbx_env/var/lib/postgresql/data/base/16384/3439_vm new file mode 100644 index 000000000..e69de29bb diff --git a/zbx_env/var/lib/postgresql/data/base/16384/3440 b/zbx_env/var/lib/postgresql/data/base/16384/3440 new file mode 100644 index 000000000..bae4de162 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/3440 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/3455 b/zbx_env/var/lib/postgresql/data/base/16384/3455 new file mode 100644 index 000000000..aee263080 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/3455 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/3456 b/zbx_env/var/lib/postgresql/data/base/16384/3456 new file mode 100644 index 000000000..2bc0341f9 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/3456 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/3456_fsm b/zbx_env/var/lib/postgresql/data/base/16384/3456_fsm new file mode 100644 index 000000000..ea43ee9d4 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/3456_fsm differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/3456_vm b/zbx_env/var/lib/postgresql/data/base/16384/3456_vm new file mode 100644 index 000000000..7ac9233fc Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/3456_vm differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/3466 b/zbx_env/var/lib/postgresql/data/base/16384/3466 new file mode 100644 index 000000000..e69de29bb diff --git a/zbx_env/var/lib/postgresql/data/base/16384/3466_vm b/zbx_env/var/lib/postgresql/data/base/16384/3466_vm new file mode 100644 index 000000000..e69de29bb diff --git a/zbx_env/var/lib/postgresql/data/base/16384/3467 b/zbx_env/var/lib/postgresql/data/base/16384/3467 new file mode 100644 index 000000000..d28a66e55 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/3467 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/3468 b/zbx_env/var/lib/postgresql/data/base/16384/3468 new file mode 100644 index 000000000..79b6e9472 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/3468 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/3501 b/zbx_env/var/lib/postgresql/data/base/16384/3501 new file mode 100644 index 000000000..e69de29bb diff --git a/zbx_env/var/lib/postgresql/data/base/16384/3501_vm b/zbx_env/var/lib/postgresql/data/base/16384/3501_vm new file mode 100644 index 000000000..e69de29bb diff --git a/zbx_env/var/lib/postgresql/data/base/16384/3502 b/zbx_env/var/lib/postgresql/data/base/16384/3502 new file mode 100644 index 000000000..061a18dc6 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/3502 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/3503 b/zbx_env/var/lib/postgresql/data/base/16384/3503 new file mode 100644 index 000000000..ebd24c5cb Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/3503 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/3534 b/zbx_env/var/lib/postgresql/data/base/16384/3534 new file mode 100644 index 000000000..4fdd31ed7 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/3534 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/3541 b/zbx_env/var/lib/postgresql/data/base/16384/3541 new file mode 100644 index 000000000..ad69913a9 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/3541 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/3541_fsm b/zbx_env/var/lib/postgresql/data/base/16384/3541_fsm new file mode 100644 index 000000000..62f015667 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/3541_fsm differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/3541_vm b/zbx_env/var/lib/postgresql/data/base/16384/3541_vm new file mode 100644 index 000000000..338f46301 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/3541_vm differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/3542 b/zbx_env/var/lib/postgresql/data/base/16384/3542 new file mode 100644 index 000000000..bf7c3330f Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/3542 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/3574 b/zbx_env/var/lib/postgresql/data/base/16384/3574 new file mode 100644 index 000000000..0861ca0e2 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/3574 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/3575 b/zbx_env/var/lib/postgresql/data/base/16384/3575 new file mode 100644 index 000000000..2b57a8ed5 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/3575 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/3576 b/zbx_env/var/lib/postgresql/data/base/16384/3576 new file mode 100644 index 000000000..e69de29bb diff --git a/zbx_env/var/lib/postgresql/data/base/16384/3576_vm b/zbx_env/var/lib/postgresql/data/base/16384/3576_vm new file mode 100644 index 000000000..e69de29bb diff --git a/zbx_env/var/lib/postgresql/data/base/16384/3596 b/zbx_env/var/lib/postgresql/data/base/16384/3596 new file mode 100644 index 000000000..e69de29bb diff --git a/zbx_env/var/lib/postgresql/data/base/16384/3596_vm b/zbx_env/var/lib/postgresql/data/base/16384/3596_vm new file mode 100644 index 000000000..e69de29bb diff --git a/zbx_env/var/lib/postgresql/data/base/16384/3597 b/zbx_env/var/lib/postgresql/data/base/16384/3597 new file mode 100644 index 000000000..8684c812e Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/3597 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/3598 b/zbx_env/var/lib/postgresql/data/base/16384/3598 new file mode 100644 index 000000000..e69de29bb diff --git a/zbx_env/var/lib/postgresql/data/base/16384/3598_vm b/zbx_env/var/lib/postgresql/data/base/16384/3598_vm new file mode 100644 index 000000000..e69de29bb diff --git a/zbx_env/var/lib/postgresql/data/base/16384/3599 b/zbx_env/var/lib/postgresql/data/base/16384/3599 new file mode 100644 index 000000000..d48e4a663 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/3599 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/3600 b/zbx_env/var/lib/postgresql/data/base/16384/3600 new file mode 100644 index 000000000..6f5b9c650 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/3600 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/3600_fsm b/zbx_env/var/lib/postgresql/data/base/16384/3600_fsm new file mode 100644 index 000000000..ffd4b1594 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/3600_fsm differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/3600_vm b/zbx_env/var/lib/postgresql/data/base/16384/3600_vm new file mode 100644 index 000000000..eda7dfa8b Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/3600_vm differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/3601 b/zbx_env/var/lib/postgresql/data/base/16384/3601 new file mode 100644 index 000000000..065e4e19a Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/3601 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/3601_fsm b/zbx_env/var/lib/postgresql/data/base/16384/3601_fsm new file mode 100644 index 000000000..7732d22b7 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/3601_fsm differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/3601_vm b/zbx_env/var/lib/postgresql/data/base/16384/3601_vm new file mode 100644 index 000000000..ccebc9717 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/3601_vm differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/3602 b/zbx_env/var/lib/postgresql/data/base/16384/3602 new file mode 100644 index 000000000..a4991530e Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/3602 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/3602_fsm b/zbx_env/var/lib/postgresql/data/base/16384/3602_fsm new file mode 100644 index 000000000..7cbf83404 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/3602_fsm differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/3602_vm b/zbx_env/var/lib/postgresql/data/base/16384/3602_vm new file mode 100644 index 000000000..51db8d829 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/3602_vm differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/3603 b/zbx_env/var/lib/postgresql/data/base/16384/3603 new file mode 100644 index 000000000..7ec261796 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/3603 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/3603_fsm b/zbx_env/var/lib/postgresql/data/base/16384/3603_fsm new file mode 100644 index 000000000..6d00d6859 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/3603_fsm differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/3603_vm b/zbx_env/var/lib/postgresql/data/base/16384/3603_vm new file mode 100644 index 000000000..d7c5456fe Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/3603_vm differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/3604 b/zbx_env/var/lib/postgresql/data/base/16384/3604 new file mode 100644 index 000000000..8c2e843bd Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/3604 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/3605 b/zbx_env/var/lib/postgresql/data/base/16384/3605 new file mode 100644 index 000000000..4c51aeb50 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/3605 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/3606 b/zbx_env/var/lib/postgresql/data/base/16384/3606 new file mode 100644 index 000000000..973f81de1 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/3606 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/3607 b/zbx_env/var/lib/postgresql/data/base/16384/3607 new file mode 100644 index 000000000..bb91efdd3 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/3607 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/3608 b/zbx_env/var/lib/postgresql/data/base/16384/3608 new file mode 100644 index 000000000..edd6032b2 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/3608 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/3609 b/zbx_env/var/lib/postgresql/data/base/16384/3609 new file mode 100644 index 000000000..d723790f6 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/3609 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/3712 b/zbx_env/var/lib/postgresql/data/base/16384/3712 new file mode 100644 index 000000000..972327c1f Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/3712 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/3764 b/zbx_env/var/lib/postgresql/data/base/16384/3764 new file mode 100644 index 000000000..8b7953258 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/3764 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/3764_fsm b/zbx_env/var/lib/postgresql/data/base/16384/3764_fsm new file mode 100644 index 000000000..d041693e8 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/3764_fsm differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/3764_vm b/zbx_env/var/lib/postgresql/data/base/16384/3764_vm new file mode 100644 index 000000000..81e9a8d75 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/3764_vm differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/3766 b/zbx_env/var/lib/postgresql/data/base/16384/3766 new file mode 100644 index 000000000..adc6bd05b Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/3766 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/3767 b/zbx_env/var/lib/postgresql/data/base/16384/3767 new file mode 100644 index 000000000..8a13ca18a Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/3767 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/3997 b/zbx_env/var/lib/postgresql/data/base/16384/3997 new file mode 100644 index 000000000..8bef1d51c Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/3997 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/5002 b/zbx_env/var/lib/postgresql/data/base/16384/5002 new file mode 100644 index 000000000..0f41bca5f Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/5002 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/548 b/zbx_env/var/lib/postgresql/data/base/16384/548 new file mode 100644 index 000000000..95a149a1b Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/548 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/549 b/zbx_env/var/lib/postgresql/data/base/16384/549 new file mode 100644 index 000000000..b8d72f418 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/549 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/6102 b/zbx_env/var/lib/postgresql/data/base/16384/6102 new file mode 100644 index 000000000..e69de29bb diff --git a/zbx_env/var/lib/postgresql/data/base/16384/6102_vm b/zbx_env/var/lib/postgresql/data/base/16384/6102_vm new file mode 100644 index 000000000..e69de29bb diff --git a/zbx_env/var/lib/postgresql/data/base/16384/6104 b/zbx_env/var/lib/postgresql/data/base/16384/6104 new file mode 100644 index 000000000..e69de29bb diff --git a/zbx_env/var/lib/postgresql/data/base/16384/6104_vm b/zbx_env/var/lib/postgresql/data/base/16384/6104_vm new file mode 100644 index 000000000..e69de29bb diff --git a/zbx_env/var/lib/postgresql/data/base/16384/6106 b/zbx_env/var/lib/postgresql/data/base/16384/6106 new file mode 100644 index 000000000..e69de29bb diff --git a/zbx_env/var/lib/postgresql/data/base/16384/6106_vm b/zbx_env/var/lib/postgresql/data/base/16384/6106_vm new file mode 100644 index 000000000..e69de29bb diff --git a/zbx_env/var/lib/postgresql/data/base/16384/6110 b/zbx_env/var/lib/postgresql/data/base/16384/6110 new file mode 100644 index 000000000..88905e93c Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/6110 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/6111 b/zbx_env/var/lib/postgresql/data/base/16384/6111 new file mode 100644 index 000000000..fc5fe1e60 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/6111 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/6112 b/zbx_env/var/lib/postgresql/data/base/16384/6112 new file mode 100644 index 000000000..2c009e3c0 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/6112 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/6113 b/zbx_env/var/lib/postgresql/data/base/16384/6113 new file mode 100644 index 000000000..09ca7f38a Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/6113 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/6117 b/zbx_env/var/lib/postgresql/data/base/16384/6117 new file mode 100644 index 000000000..b2a8f2639 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/6117 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/826 b/zbx_env/var/lib/postgresql/data/base/16384/826 new file mode 100644 index 000000000..e69de29bb diff --git a/zbx_env/var/lib/postgresql/data/base/16384/826_vm b/zbx_env/var/lib/postgresql/data/base/16384/826_vm new file mode 100644 index 000000000..e69de29bb diff --git a/zbx_env/var/lib/postgresql/data/base/16384/827 b/zbx_env/var/lib/postgresql/data/base/16384/827 new file mode 100644 index 000000000..45ca171f5 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/827 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/828 b/zbx_env/var/lib/postgresql/data/base/16384/828 new file mode 100644 index 000000000..9543d4d5d Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/828 differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/PG_VERSION b/zbx_env/var/lib/postgresql/data/base/16384/PG_VERSION new file mode 100644 index 000000000..f599e28b8 --- /dev/null +++ b/zbx_env/var/lib/postgresql/data/base/16384/PG_VERSION @@ -0,0 +1 @@ +10 diff --git a/zbx_env/var/lib/postgresql/data/base/16384/pg_filenode.map b/zbx_env/var/lib/postgresql/data/base/16384/pg_filenode.map new file mode 100644 index 000000000..428c97e9a Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/pg_filenode.map differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/pg_internal.init b/zbx_env/var/lib/postgresql/data/base/16384/pg_internal.init new file mode 100644 index 000000000..e41c55633 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/base/16384/pg_internal.init differ diff --git a/zbx_env/var/lib/postgresql/data/global/1136 b/zbx_env/var/lib/postgresql/data/global/1136 new file mode 100644 index 000000000..3d03f0bde Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/global/1136 differ diff --git a/zbx_env/var/lib/postgresql/data/global/1136_fsm b/zbx_env/var/lib/postgresql/data/global/1136_fsm new file mode 100644 index 000000000..929c96e71 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/global/1136_fsm differ diff --git a/zbx_env/var/lib/postgresql/data/global/1136_vm b/zbx_env/var/lib/postgresql/data/global/1136_vm new file mode 100644 index 000000000..99e2a263f Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/global/1136_vm differ diff --git a/zbx_env/var/lib/postgresql/data/global/1137 b/zbx_env/var/lib/postgresql/data/global/1137 new file mode 100644 index 000000000..c36f17ee1 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/global/1137 differ diff --git a/zbx_env/var/lib/postgresql/data/global/1213 b/zbx_env/var/lib/postgresql/data/global/1213 new file mode 100644 index 000000000..bf1087ec0 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/global/1213 differ diff --git a/zbx_env/var/lib/postgresql/data/global/1213_fsm b/zbx_env/var/lib/postgresql/data/global/1213_fsm new file mode 100644 index 000000000..86074bee2 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/global/1213_fsm differ diff --git a/zbx_env/var/lib/postgresql/data/global/1213_vm b/zbx_env/var/lib/postgresql/data/global/1213_vm new file mode 100644 index 000000000..7566dbed3 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/global/1213_vm differ diff --git a/zbx_env/var/lib/postgresql/data/global/1214 b/zbx_env/var/lib/postgresql/data/global/1214 new file mode 100644 index 000000000..ef06df2aa Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/global/1214 differ diff --git a/zbx_env/var/lib/postgresql/data/global/1214_fsm b/zbx_env/var/lib/postgresql/data/global/1214_fsm new file mode 100644 index 000000000..a3a2de4dd Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/global/1214_fsm differ diff --git a/zbx_env/var/lib/postgresql/data/global/1214_vm b/zbx_env/var/lib/postgresql/data/global/1214_vm new file mode 100644 index 000000000..22bfe7728 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/global/1214_vm differ diff --git a/zbx_env/var/lib/postgresql/data/global/1232 b/zbx_env/var/lib/postgresql/data/global/1232 new file mode 100644 index 000000000..22f4c5898 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/global/1232 differ diff --git a/zbx_env/var/lib/postgresql/data/global/1233 b/zbx_env/var/lib/postgresql/data/global/1233 new file mode 100644 index 000000000..96bee7755 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/global/1233 differ diff --git a/zbx_env/var/lib/postgresql/data/global/1260 b/zbx_env/var/lib/postgresql/data/global/1260 new file mode 100644 index 000000000..e6325f9e7 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/global/1260 differ diff --git a/zbx_env/var/lib/postgresql/data/global/1260_fsm b/zbx_env/var/lib/postgresql/data/global/1260_fsm new file mode 100644 index 000000000..ecbfaee5e Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/global/1260_fsm differ diff --git a/zbx_env/var/lib/postgresql/data/global/1260_vm b/zbx_env/var/lib/postgresql/data/global/1260_vm new file mode 100644 index 000000000..aecaab830 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/global/1260_vm differ diff --git a/zbx_env/var/lib/postgresql/data/global/1261 b/zbx_env/var/lib/postgresql/data/global/1261 new file mode 100644 index 000000000..479815f96 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/global/1261 differ diff --git a/zbx_env/var/lib/postgresql/data/global/1261_fsm b/zbx_env/var/lib/postgresql/data/global/1261_fsm new file mode 100644 index 000000000..7732d22b7 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/global/1261_fsm differ diff --git a/zbx_env/var/lib/postgresql/data/global/1261_vm b/zbx_env/var/lib/postgresql/data/global/1261_vm new file mode 100644 index 000000000..4d1f70cb0 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/global/1261_vm differ diff --git a/zbx_env/var/lib/postgresql/data/global/1262 b/zbx_env/var/lib/postgresql/data/global/1262 new file mode 100644 index 000000000..23fb762e5 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/global/1262 differ diff --git a/zbx_env/var/lib/postgresql/data/global/1262_fsm b/zbx_env/var/lib/postgresql/data/global/1262_fsm new file mode 100644 index 000000000..b49966ffd Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/global/1262_fsm differ diff --git a/zbx_env/var/lib/postgresql/data/global/1262_vm b/zbx_env/var/lib/postgresql/data/global/1262_vm new file mode 100644 index 000000000..2732d91f2 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/global/1262_vm differ diff --git a/zbx_env/var/lib/postgresql/data/global/2396 b/zbx_env/var/lib/postgresql/data/global/2396 new file mode 100644 index 000000000..76e331342 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/global/2396 differ diff --git a/zbx_env/var/lib/postgresql/data/global/2396_fsm b/zbx_env/var/lib/postgresql/data/global/2396_fsm new file mode 100644 index 000000000..7a4f24f37 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/global/2396_fsm differ diff --git a/zbx_env/var/lib/postgresql/data/global/2396_vm b/zbx_env/var/lib/postgresql/data/global/2396_vm new file mode 100644 index 000000000..3ed9e1a9f Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/global/2396_vm differ diff --git a/zbx_env/var/lib/postgresql/data/global/2397 b/zbx_env/var/lib/postgresql/data/global/2397 new file mode 100644 index 000000000..8610ddf69 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/global/2397 differ diff --git a/zbx_env/var/lib/postgresql/data/global/2671 b/zbx_env/var/lib/postgresql/data/global/2671 new file mode 100644 index 000000000..9e849524f Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/global/2671 differ diff --git a/zbx_env/var/lib/postgresql/data/global/2672 b/zbx_env/var/lib/postgresql/data/global/2672 new file mode 100644 index 000000000..747918194 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/global/2672 differ diff --git a/zbx_env/var/lib/postgresql/data/global/2676 b/zbx_env/var/lib/postgresql/data/global/2676 new file mode 100644 index 000000000..09e7143c0 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/global/2676 differ diff --git a/zbx_env/var/lib/postgresql/data/global/2677 b/zbx_env/var/lib/postgresql/data/global/2677 new file mode 100644 index 000000000..0408d3a6f Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/global/2677 differ diff --git a/zbx_env/var/lib/postgresql/data/global/2694 b/zbx_env/var/lib/postgresql/data/global/2694 new file mode 100644 index 000000000..6b227a6f0 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/global/2694 differ diff --git a/zbx_env/var/lib/postgresql/data/global/2695 b/zbx_env/var/lib/postgresql/data/global/2695 new file mode 100644 index 000000000..a258225cc Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/global/2695 differ diff --git a/zbx_env/var/lib/postgresql/data/global/2697 b/zbx_env/var/lib/postgresql/data/global/2697 new file mode 100644 index 000000000..390b1699e Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/global/2697 differ diff --git a/zbx_env/var/lib/postgresql/data/global/2698 b/zbx_env/var/lib/postgresql/data/global/2698 new file mode 100644 index 000000000..eee330265 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/global/2698 differ diff --git a/zbx_env/var/lib/postgresql/data/global/2846 b/zbx_env/var/lib/postgresql/data/global/2846 new file mode 100644 index 000000000..e69de29bb diff --git a/zbx_env/var/lib/postgresql/data/global/2846_vm b/zbx_env/var/lib/postgresql/data/global/2846_vm new file mode 100644 index 000000000..e69de29bb diff --git a/zbx_env/var/lib/postgresql/data/global/2847 b/zbx_env/var/lib/postgresql/data/global/2847 new file mode 100644 index 000000000..218b4b153 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/global/2847 differ diff --git a/zbx_env/var/lib/postgresql/data/global/2964 b/zbx_env/var/lib/postgresql/data/global/2964 new file mode 100644 index 000000000..e69de29bb diff --git a/zbx_env/var/lib/postgresql/data/global/2964_vm b/zbx_env/var/lib/postgresql/data/global/2964_vm new file mode 100644 index 000000000..e69de29bb diff --git a/zbx_env/var/lib/postgresql/data/global/2965 b/zbx_env/var/lib/postgresql/data/global/2965 new file mode 100644 index 000000000..2938713fe Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/global/2965 differ diff --git a/zbx_env/var/lib/postgresql/data/global/2966 b/zbx_env/var/lib/postgresql/data/global/2966 new file mode 100644 index 000000000..e69de29bb diff --git a/zbx_env/var/lib/postgresql/data/global/2966_vm b/zbx_env/var/lib/postgresql/data/global/2966_vm new file mode 100644 index 000000000..e69de29bb diff --git a/zbx_env/var/lib/postgresql/data/global/2967 b/zbx_env/var/lib/postgresql/data/global/2967 new file mode 100644 index 000000000..3b693ef65 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/global/2967 differ diff --git a/zbx_env/var/lib/postgresql/data/global/3592 b/zbx_env/var/lib/postgresql/data/global/3592 new file mode 100644 index 000000000..e69de29bb diff --git a/zbx_env/var/lib/postgresql/data/global/3592_vm b/zbx_env/var/lib/postgresql/data/global/3592_vm new file mode 100644 index 000000000..e69de29bb diff --git a/zbx_env/var/lib/postgresql/data/global/3593 b/zbx_env/var/lib/postgresql/data/global/3593 new file mode 100644 index 000000000..075210a53 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/global/3593 differ diff --git a/zbx_env/var/lib/postgresql/data/global/4060 b/zbx_env/var/lib/postgresql/data/global/4060 new file mode 100644 index 000000000..e69de29bb diff --git a/zbx_env/var/lib/postgresql/data/global/4060_vm b/zbx_env/var/lib/postgresql/data/global/4060_vm new file mode 100644 index 000000000..e69de29bb diff --git a/zbx_env/var/lib/postgresql/data/global/4061 b/zbx_env/var/lib/postgresql/data/global/4061 new file mode 100644 index 000000000..bfc103a3a Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/global/4061 differ diff --git a/zbx_env/var/lib/postgresql/data/global/6000 b/zbx_env/var/lib/postgresql/data/global/6000 new file mode 100644 index 000000000..e69de29bb diff --git a/zbx_env/var/lib/postgresql/data/global/6000_vm b/zbx_env/var/lib/postgresql/data/global/6000_vm new file mode 100644 index 000000000..e69de29bb diff --git a/zbx_env/var/lib/postgresql/data/global/6001 b/zbx_env/var/lib/postgresql/data/global/6001 new file mode 100644 index 000000000..4b5ca6738 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/global/6001 differ diff --git a/zbx_env/var/lib/postgresql/data/global/6002 b/zbx_env/var/lib/postgresql/data/global/6002 new file mode 100644 index 000000000..f77a4bcd1 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/global/6002 differ diff --git a/zbx_env/var/lib/postgresql/data/global/6100 b/zbx_env/var/lib/postgresql/data/global/6100 new file mode 100644 index 000000000..e69de29bb diff --git a/zbx_env/var/lib/postgresql/data/global/6100_vm b/zbx_env/var/lib/postgresql/data/global/6100_vm new file mode 100644 index 000000000..e69de29bb diff --git a/zbx_env/var/lib/postgresql/data/global/6114 b/zbx_env/var/lib/postgresql/data/global/6114 new file mode 100644 index 000000000..d4e882ddc Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/global/6114 differ diff --git a/zbx_env/var/lib/postgresql/data/global/6115 b/zbx_env/var/lib/postgresql/data/global/6115 new file mode 100644 index 000000000..c0ad72970 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/global/6115 differ diff --git a/zbx_env/var/lib/postgresql/data/global/pg_control b/zbx_env/var/lib/postgresql/data/global/pg_control new file mode 100644 index 000000000..5e190989a Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/global/pg_control differ diff --git a/zbx_env/var/lib/postgresql/data/global/pg_filenode.map b/zbx_env/var/lib/postgresql/data/global/pg_filenode.map new file mode 100644 index 000000000..8ee3a929c Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/global/pg_filenode.map differ diff --git a/zbx_env/var/lib/postgresql/data/global/pg_internal.init b/zbx_env/var/lib/postgresql/data/global/pg_internal.init new file mode 100644 index 000000000..c80f5b558 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/global/pg_internal.init differ diff --git a/zbx_env/var/lib/postgresql/data/pg_hba.conf b/zbx_env/var/lib/postgresql/data/pg_hba.conf new file mode 100644 index 000000000..b9a7ac198 --- /dev/null +++ b/zbx_env/var/lib/postgresql/data/pg_hba.conf @@ -0,0 +1,95 @@ +# PostgreSQL Client Authentication Configuration File +# =================================================== +# +# Refer to the "Client Authentication" section in the PostgreSQL +# documentation for a complete description of this file. A short +# synopsis follows. +# +# This file controls: which hosts are allowed to connect, how clients +# are authenticated, which PostgreSQL user names they can use, which +# databases they can access. Records take one of these forms: +# +# local DATABASE USER METHOD [OPTIONS] +# host DATABASE USER ADDRESS METHOD [OPTIONS] +# hostssl DATABASE USER ADDRESS METHOD [OPTIONS] +# hostnossl DATABASE USER ADDRESS METHOD [OPTIONS] +# +# (The uppercase items must be replaced by actual values.) +# +# The first field is the connection type: "local" is a Unix-domain +# socket, "host" is either a plain or SSL-encrypted TCP/IP socket, +# "hostssl" is an SSL-encrypted TCP/IP socket, and "hostnossl" is a +# plain TCP/IP socket. +# +# DATABASE can be "all", "sameuser", "samerole", "replication", a +# database name, or a comma-separated list thereof. The "all" +# keyword does not match "replication". Access to replication +# must be enabled in a separate record (see example below). +# +# USER can be "all", a user name, a group name prefixed with "+", or a +# comma-separated list thereof. In both the DATABASE and USER fields +# you can also write a file name prefixed with "@" to include names +# from a separate file. +# +# ADDRESS specifies the set of hosts the record matches. It can be a +# host name, or it is made up of an IP address and a CIDR mask that is +# an integer (between 0 and 32 (IPv4) or 128 (IPv6) inclusive) that +# specifies the number of significant bits in the mask. A host name +# that starts with a dot (.) matches a suffix of the actual host name. +# Alternatively, you can write an IP address and netmask in separate +# columns to specify the set of hosts. Instead of a CIDR-address, you +# can write "samehost" to match any of the server's own IP addresses, +# or "samenet" to match any address in any subnet that the server is +# directly connected to. +# +# METHOD can be "trust", "reject", "md5", "password", "scram-sha-256", +# "gss", "sspi", "ident", "peer", "pam", "ldap", "radius" or "cert". +# Note that "password" sends passwords in clear text; "md5" or +# "scram-sha-256" are preferred since they send encrypted passwords. +# +# OPTIONS are a set of options for the authentication in the format +# NAME=VALUE. The available options depend on the different +# authentication methods -- refer to the "Client Authentication" +# section in the documentation for a list of which options are +# available for which authentication methods. +# +# Database and user names containing spaces, commas, quotes and other +# special characters must be quoted. Quoting one of the keywords +# "all", "sameuser", "samerole" or "replication" makes the name lose +# its special character, and just match a database or username with +# that name. +# +# This file is read on server startup and when the server receives a +# SIGHUP signal. If you edit the file on a running system, you have to +# SIGHUP the server for the changes to take effect, run "pg_ctl reload", +# or execute "SELECT pg_reload_conf()". +# +# Put your actual configuration here +# ---------------------------------- +# +# If you want to allow non-local connections, you need to add more +# "host" records. In that case you will also need to make PostgreSQL +# listen on a non-local interface via the listen_addresses +# configuration parameter, or via the -i or -h command line switches. + +# CAUTION: Configuring the system for local "trust" authentication +# allows any local user to connect as any PostgreSQL user, including +# the database superuser. If you do not trust all your local users, +# use another authentication method. + + +# TYPE DATABASE USER ADDRESS METHOD + +# "local" is for Unix domain socket connections only +local all all trust +# IPv4 local connections: +host all all 127.0.0.1/32 trust +# IPv6 local connections: +host all all ::1/128 trust +# Allow replication connections from localhost, by a user with the +# replication privilege. +local replication all trust +host replication all 127.0.0.1/32 trust +host replication all ::1/128 trust + +host all all all md5 diff --git a/zbx_env/var/lib/postgresql/data/pg_ident.conf b/zbx_env/var/lib/postgresql/data/pg_ident.conf new file mode 100644 index 000000000..a5870e644 --- /dev/null +++ b/zbx_env/var/lib/postgresql/data/pg_ident.conf @@ -0,0 +1,42 @@ +# PostgreSQL User Name Maps +# ========================= +# +# Refer to the PostgreSQL documentation, chapter "Client +# Authentication" for a complete description. A short synopsis +# follows. +# +# This file controls PostgreSQL user name mapping. It maps external +# user names to their corresponding PostgreSQL user names. Records +# are of the form: +# +# MAPNAME SYSTEM-USERNAME PG-USERNAME +# +# (The uppercase quantities must be replaced by actual values.) +# +# MAPNAME is the (otherwise freely chosen) map name that was used in +# pg_hba.conf. SYSTEM-USERNAME is the detected user name of the +# client. PG-USERNAME is the requested PostgreSQL user name. The +# existence of a record specifies that SYSTEM-USERNAME may connect as +# PG-USERNAME. +# +# If SYSTEM-USERNAME starts with a slash (/), it will be treated as a +# regular expression. Optionally this can contain a capture (a +# parenthesized subexpression). The substring matching the capture +# will be substituted for \1 (backslash-one) if present in +# PG-USERNAME. +# +# Multiple maps may be specified in this file and used by pg_hba.conf. +# +# No map names are defined in the default configuration. If all +# system user names and PostgreSQL user names are the same, you don't +# need anything in this file. +# +# This file is read on server startup and when the postmaster receives +# a SIGHUP signal. If you edit the file on a running system, you have +# to SIGHUP the postmaster for the changes to take effect. You can +# use "pg_ctl reload" to do that. + +# Put your actual configuration here +# ---------------------------------- + +# MAPNAME SYSTEM-USERNAME PG-USERNAME diff --git a/zbx_env/var/lib/postgresql/data/pg_logical/replorigin_checkpoint b/zbx_env/var/lib/postgresql/data/pg_logical/replorigin_checkpoint new file mode 100644 index 000000000..ec451b0fa Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/pg_logical/replorigin_checkpoint differ diff --git a/zbx_env/var/lib/postgresql/data/pg_multixact/members/0000 b/zbx_env/var/lib/postgresql/data/pg_multixact/members/0000 new file mode 100644 index 000000000..6d17cf9d1 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/pg_multixact/members/0000 differ diff --git a/zbx_env/var/lib/postgresql/data/pg_multixact/offsets/0000 b/zbx_env/var/lib/postgresql/data/pg_multixact/offsets/0000 new file mode 100644 index 000000000..6d17cf9d1 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/pg_multixact/offsets/0000 differ diff --git a/zbx_env/var/lib/postgresql/data/pg_notify/0000 b/zbx_env/var/lib/postgresql/data/pg_notify/0000 new file mode 100644 index 000000000..6d17cf9d1 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/pg_notify/0000 differ diff --git a/zbx_env/var/lib/postgresql/data/pg_stat_tmp/db_0.stat b/zbx_env/var/lib/postgresql/data/pg_stat_tmp/db_0.stat new file mode 100644 index 000000000..4e0719672 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/pg_stat_tmp/db_0.stat differ diff --git a/zbx_env/var/lib/postgresql/data/pg_stat_tmp/global.stat b/zbx_env/var/lib/postgresql/data/pg_stat_tmp/global.stat new file mode 100644 index 000000000..d9b7f192e Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/pg_stat_tmp/global.stat differ diff --git a/zbx_env/var/lib/postgresql/data/pg_subtrans/0000 b/zbx_env/var/lib/postgresql/data/pg_subtrans/0000 new file mode 100644 index 000000000..6d17cf9d1 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/pg_subtrans/0000 differ diff --git a/zbx_env/var/lib/postgresql/data/pg_wal/000000010000000000000001 b/zbx_env/var/lib/postgresql/data/pg_wal/000000010000000000000001 new file mode 100644 index 000000000..fc4447cd4 Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/pg_wal/000000010000000000000001 differ diff --git a/zbx_env/var/lib/postgresql/data/pg_xact/0000 b/zbx_env/var/lib/postgresql/data/pg_xact/0000 new file mode 100644 index 000000000..c8f3ee90f Binary files /dev/null and b/zbx_env/var/lib/postgresql/data/pg_xact/0000 differ diff --git a/zbx_env/var/lib/postgresql/data/postgresql.auto.conf b/zbx_env/var/lib/postgresql/data/postgresql.auto.conf new file mode 100644 index 000000000..af7125e18 --- /dev/null +++ b/zbx_env/var/lib/postgresql/data/postgresql.auto.conf @@ -0,0 +1,2 @@ +# Do not edit this file manually! +# It will be overwritten by the ALTER SYSTEM command. diff --git a/zbx_env/var/lib/postgresql/data/postgresql.conf b/zbx_env/var/lib/postgresql/data/postgresql.conf new file mode 100644 index 000000000..2aa405560 --- /dev/null +++ b/zbx_env/var/lib/postgresql/data/postgresql.conf @@ -0,0 +1,658 @@ +# ----------------------------- +# PostgreSQL configuration file +# ----------------------------- +# +# This file consists of lines of the form: +# +# name = value +# +# (The "=" is optional.) Whitespace may be used. Comments are introduced with +# "#" anywhere on a line. The complete list of parameter names and allowed +# values can be found in the PostgreSQL documentation. +# +# The commented-out settings shown in this file represent the default values. +# Re-commenting a setting is NOT sufficient to revert it to the default value; +# you need to reload the server. +# +# This file is read on server startup and when the server receives a SIGHUP +# signal. If you edit the file on a running system, you have to SIGHUP the +# server for the changes to take effect, run "pg_ctl reload", or execute +# "SELECT pg_reload_conf()". Some parameters, which are marked below, +# require a server shutdown and restart to take effect. +# +# Any parameter can also be given as a command-line option to the server, e.g., +# "postgres -c log_connections=on". Some parameters can be changed at run time +# with the "SET" SQL command. +# +# Memory units: kB = kilobytes Time units: ms = milliseconds +# MB = megabytes s = seconds +# GB = gigabytes min = minutes +# TB = terabytes h = hours +# d = days + + +#------------------------------------------------------------------------------ +# FILE LOCATIONS +#------------------------------------------------------------------------------ + +# The default values of these variables are driven from the -D command-line +# option or PGDATA environment variable, represented here as ConfigDir. + +#data_directory = 'ConfigDir' # use data in another directory + # (change requires restart) +#hba_file = 'ConfigDir/pg_hba.conf' # host-based authentication file + # (change requires restart) +#ident_file = 'ConfigDir/pg_ident.conf' # ident configuration file + # (change requires restart) + +# If external_pid_file is not explicitly set, no extra PID file is written. +#external_pid_file = '' # write an extra PID file + # (change requires restart) + + +#------------------------------------------------------------------------------ +# CONNECTIONS AND AUTHENTICATION +#------------------------------------------------------------------------------ + +# - Connection Settings - + +listen_addresses = '*' + # comma-separated list of addresses; + # defaults to 'localhost'; use '*' for all + # (change requires restart) +#port = 5432 # (change requires restart) +max_connections = 100 # (change requires restart) +#superuser_reserved_connections = 3 # (change requires restart) +#unix_socket_directories = '/var/run/postgresql' # comma-separated list of directories + # (change requires restart) +#unix_socket_group = '' # (change requires restart) +#unix_socket_permissions = 0777 # begin with 0 to use octal notation + # (change requires restart) +#bonjour = off # advertise server via Bonjour + # (change requires restart) +#bonjour_name = '' # defaults to the computer name + # (change requires restart) + +# - Security and Authentication - + +#authentication_timeout = 1min # 1s-600s +#ssl = off +#ssl_ciphers = 'HIGH:MEDIUM:+3DES:!aNULL' # allowed SSL ciphers +#ssl_prefer_server_ciphers = on +#ssl_ecdh_curve = 'prime256v1' +#ssl_dh_params_file = '' +#ssl_cert_file = 'server.crt' +#ssl_key_file = 'server.key' +#ssl_ca_file = '' +#ssl_crl_file = '' +#password_encryption = md5 # md5 or scram-sha-256 +#db_user_namespace = off +#row_security = on + +# GSSAPI using Kerberos +#krb_server_keyfile = '' +#krb_caseins_users = off + +# - TCP Keepalives - +# see "man 7 tcp" for details + +#tcp_keepalives_idle = 0 # TCP_KEEPIDLE, in seconds; + # 0 selects the system default +#tcp_keepalives_interval = 0 # TCP_KEEPINTVL, in seconds; + # 0 selects the system default +#tcp_keepalives_count = 0 # TCP_KEEPCNT; + # 0 selects the system default + + +#------------------------------------------------------------------------------ +# RESOURCE USAGE (except WAL) +#------------------------------------------------------------------------------ + +# - Memory - + +shared_buffers = 128MB # min 128kB + # (change requires restart) +#huge_pages = try # on, off, or try + # (change requires restart) +#temp_buffers = 8MB # min 800kB +#max_prepared_transactions = 0 # zero disables the feature + # (change requires restart) +# Caution: it is not advisable to set max_prepared_transactions nonzero unless +# you actively intend to use prepared transactions. +#work_mem = 4MB # min 64kB +#maintenance_work_mem = 64MB # min 1MB +#replacement_sort_tuples = 150000 # limits use of replacement selection sort +#autovacuum_work_mem = -1 # min 1MB, or -1 to use maintenance_work_mem +#max_stack_depth = 2MB # min 100kB +dynamic_shared_memory_type = posix # the default is the first option + # supported by the operating system: + # posix + # sysv + # windows + # mmap + # use none to disable dynamic shared memory + # (change requires restart) + +# - Disk - + +#temp_file_limit = -1 # limits per-process temp file space + # in kB, or -1 for no limit + +# - Kernel Resource Usage - + +#max_files_per_process = 1000 # min 25 + # (change requires restart) +#shared_preload_libraries = '' # (change requires restart) + +# - Cost-Based Vacuum Delay - + +#vacuum_cost_delay = 0 # 0-100 milliseconds +#vacuum_cost_page_hit = 1 # 0-10000 credits +#vacuum_cost_page_miss = 10 # 0-10000 credits +#vacuum_cost_page_dirty = 20 # 0-10000 credits +#vacuum_cost_limit = 200 # 1-10000 credits + +# - Background Writer - + +#bgwriter_delay = 200ms # 10-10000ms between rounds +#bgwriter_lru_maxpages = 100 # 0-1000 max buffers written/round +#bgwriter_lru_multiplier = 2.0 # 0-10.0 multiplier on buffers scanned/round +#bgwriter_flush_after = 512kB # measured in pages, 0 disables + +# - Asynchronous Behavior - + +#effective_io_concurrency = 1 # 1-1000; 0 disables prefetching +#max_worker_processes = 8 # (change requires restart) +#max_parallel_workers_per_gather = 2 # taken from max_parallel_workers +#max_parallel_workers = 8 # maximum number of max_worker_processes that + # can be used in parallel queries +#old_snapshot_threshold = -1 # 1min-60d; -1 disables; 0 is immediate + # (change requires restart) +#backend_flush_after = 0 # measured in pages, 0 disables + + +#------------------------------------------------------------------------------ +# WRITE AHEAD LOG +#------------------------------------------------------------------------------ + +# - Settings - + +#wal_level = replica # minimal, replica, or logical + # (change requires restart) +#fsync = on # flush data to disk for crash safety + # (turning this off can cause + # unrecoverable data corruption) +#synchronous_commit = on # synchronization level; + # off, local, remote_write, remote_apply, or on +#wal_sync_method = fsync # the default is the first option + # supported by the operating system: + # open_datasync + # fdatasync (default on Linux) + # fsync + # fsync_writethrough + # open_sync +#full_page_writes = on # recover from partial page writes +#wal_compression = off # enable compression of full-page writes +#wal_log_hints = off # also do full page writes of non-critical updates + # (change requires restart) +#wal_buffers = -1 # min 32kB, -1 sets based on shared_buffers + # (change requires restart) +#wal_writer_delay = 200ms # 1-10000 milliseconds +#wal_writer_flush_after = 1MB # measured in pages, 0 disables + +#commit_delay = 0 # range 0-100000, in microseconds +#commit_siblings = 5 # range 1-1000 + +# - Checkpoints - + +#checkpoint_timeout = 5min # range 30s-1d +#max_wal_size = 1GB +#min_wal_size = 80MB +#checkpoint_completion_target = 0.5 # checkpoint target duration, 0.0 - 1.0 +#checkpoint_flush_after = 256kB # measured in pages, 0 disables +#checkpoint_warning = 30s # 0 disables + +# - Archiving - + +#archive_mode = off # enables archiving; off, on, or always + # (change requires restart) +#archive_command = '' # command to use to archive a logfile segment + # placeholders: %p = path of file to archive + # %f = file name only + # e.g. 'test ! -f /mnt/server/archivedir/%f && cp %p /mnt/server/archivedir/%f' +#archive_timeout = 0 # force a logfile segment switch after this + # number of seconds; 0 disables + + +#------------------------------------------------------------------------------ +# REPLICATION +#------------------------------------------------------------------------------ + +# - Sending Server(s) - + +# Set these on the master and on any standby that will send replication data. + +#max_wal_senders = 10 # max number of walsender processes + # (change requires restart) +#wal_keep_segments = 0 # in logfile segments, 16MB each; 0 disables +#wal_sender_timeout = 60s # in milliseconds; 0 disables + +#max_replication_slots = 10 # max number of replication slots + # (change requires restart) +#track_commit_timestamp = off # collect timestamp of transaction commit + # (change requires restart) + +# - Master Server - + +# These settings are ignored on a standby server. + +#synchronous_standby_names = '' # standby servers that provide sync rep + # method to choose sync standbys, number of sync standbys, + # and comma-separated list of application_name + # from standby(s); '*' = all +#vacuum_defer_cleanup_age = 0 # number of xacts by which cleanup is delayed + +# - Standby Servers - + +# These settings are ignored on a master server. + +#hot_standby = on # "off" disallows queries during recovery + # (change requires restart) +#max_standby_archive_delay = 30s # max delay before canceling queries + # when reading WAL from archive; + # -1 allows indefinite delay +#max_standby_streaming_delay = 30s # max delay before canceling queries + # when reading streaming WAL; + # -1 allows indefinite delay +#wal_receiver_status_interval = 10s # send replies at least this often + # 0 disables +#hot_standby_feedback = off # send info from standby to prevent + # query conflicts +#wal_receiver_timeout = 60s # time that receiver waits for + # communication from master + # in milliseconds; 0 disables +#wal_retrieve_retry_interval = 5s # time to wait before retrying to + # retrieve WAL after a failed attempt + +# - Subscribers - + +# These settings are ignored on a publisher. + +#max_logical_replication_workers = 4 # taken from max_worker_processes + # (change requires restart) +#max_sync_workers_per_subscription = 2 # taken from max_logical_replication_workers + + +#------------------------------------------------------------------------------ +# QUERY TUNING +#------------------------------------------------------------------------------ + +# - Planner Method Configuration - + +#enable_bitmapscan = on +#enable_hashagg = on +#enable_hashjoin = on +#enable_indexscan = on +#enable_indexonlyscan = on +#enable_material = on +#enable_mergejoin = on +#enable_nestloop = on +#enable_seqscan = on +#enable_sort = on +#enable_tidscan = on + +# - Planner Cost Constants - + +#seq_page_cost = 1.0 # measured on an arbitrary scale +#random_page_cost = 4.0 # same scale as above +#cpu_tuple_cost = 0.01 # same scale as above +#cpu_index_tuple_cost = 0.005 # same scale as above +#cpu_operator_cost = 0.0025 # same scale as above +#parallel_tuple_cost = 0.1 # same scale as above +#parallel_setup_cost = 1000.0 # same scale as above +#min_parallel_table_scan_size = 8MB +#min_parallel_index_scan_size = 512kB +#effective_cache_size = 4GB + +# - Genetic Query Optimizer - + +#geqo = on +#geqo_threshold = 12 +#geqo_effort = 5 # range 1-10 +#geqo_pool_size = 0 # selects default based on effort +#geqo_generations = 0 # selects default based on effort +#geqo_selection_bias = 2.0 # range 1.5-2.0 +#geqo_seed = 0.0 # range 0.0-1.0 + +# - Other Planner Options - + +#default_statistics_target = 100 # range 1-10000 +#constraint_exclusion = partition # on, off, or partition +#cursor_tuple_fraction = 0.1 # range 0.0-1.0 +#from_collapse_limit = 8 +#join_collapse_limit = 8 # 1 disables collapsing of explicit + # JOIN clauses +#force_parallel_mode = off + + +#------------------------------------------------------------------------------ +# ERROR REPORTING AND LOGGING +#------------------------------------------------------------------------------ + +# - Where to Log - + +#log_destination = 'stderr' # Valid values are combinations of + # stderr, csvlog, syslog, and eventlog, + # depending on platform. csvlog + # requires logging_collector to be on. + +# This is used when logging to stderr: +#logging_collector = off # Enable capturing of stderr and csvlog + # into log files. Required to be on for + # csvlogs. + # (change requires restart) + +# These are only used if logging_collector is on: +#log_directory = 'log' # directory where log files are written, + # can be absolute or relative to PGDATA +#log_filename = 'postgresql-%Y-%m-%d_%H%M%S.log' # log file name pattern, + # can include strftime() escapes +#log_file_mode = 0600 # creation mode for log files, + # begin with 0 to use octal notation +#log_truncate_on_rotation = off # If on, an existing log file with the + # same name as the new log file will be + # truncated rather than appended to. + # But such truncation only occurs on + # time-driven rotation, not on restarts + # or size-driven rotation. Default is + # off, meaning append to existing files + # in all cases. +#log_rotation_age = 1d # Automatic rotation of logfiles will + # happen after that time. 0 disables. +#log_rotation_size = 10MB # Automatic rotation of logfiles will + # happen after that much log output. + # 0 disables. + +# These are relevant when logging to syslog: +#syslog_facility = 'LOCAL0' +#syslog_ident = 'postgres' +#syslog_sequence_numbers = on +#syslog_split_messages = on + +# This is only relevant when logging to eventlog (win32): +# (change requires restart) +#event_source = 'PostgreSQL' + +# - When to Log - + +#client_min_messages = notice # values in order of decreasing detail: + # debug5 + # debug4 + # debug3 + # debug2 + # debug1 + # log + # notice + # warning + # error + +#log_min_messages = warning # values in order of decreasing detail: + # debug5 + # debug4 + # debug3 + # debug2 + # debug1 + # info + # notice + # warning + # error + # log + # fatal + # panic + +#log_min_error_statement = error # values in order of decreasing detail: + # debug5 + # debug4 + # debug3 + # debug2 + # debug1 + # info + # notice + # warning + # error + # log + # fatal + # panic (effectively off) + +#log_min_duration_statement = -1 # -1 is disabled, 0 logs all statements + # and their durations, > 0 logs only + # statements running at least this number + # of milliseconds + + +# - What to Log - + +#debug_print_parse = off +#debug_print_rewritten = off +#debug_print_plan = off +#debug_pretty_print = on +#log_checkpoints = off +#log_connections = off +#log_disconnections = off +#log_duration = off +#log_error_verbosity = default # terse, default, or verbose messages +#log_hostname = off +#log_line_prefix = '%m [%p] ' # special values: + # %a = application name + # %u = user name + # %d = database name + # %r = remote host and port + # %h = remote host + # %p = process ID + # %t = timestamp without milliseconds + # %m = timestamp with milliseconds + # %n = timestamp with milliseconds (as a Unix epoch) + # %i = command tag + # %e = SQL state + # %c = session ID + # %l = session line number + # %s = session start timestamp + # %v = virtual transaction ID + # %x = transaction ID (0 if none) + # %q = stop here in non-session + # processes + # %% = '%' + # e.g. '<%u%%%d> ' +#log_lock_waits = off # log lock waits >= deadlock_timeout +#log_statement = 'none' # none, ddl, mod, all +#log_replication_commands = off +#log_temp_files = -1 # log temporary files equal or larger + # than the specified size in kilobytes; + # -1 disables, 0 logs all temp files +log_timezone = 'UTC' + + +# - Process Title - + +#cluster_name = '' # added to process titles if nonempty + # (change requires restart) +#update_process_title = on + + +#------------------------------------------------------------------------------ +# RUNTIME STATISTICS +#------------------------------------------------------------------------------ + +# - Query/Index Statistics Collector - + +#track_activities = on +#track_counts = on +#track_io_timing = off +#track_functions = none # none, pl, all +#track_activity_query_size = 1024 # (change requires restart) +#stats_temp_directory = 'pg_stat_tmp' + + +# - Statistics Monitoring - + +#log_parser_stats = off +#log_planner_stats = off +#log_executor_stats = off +#log_statement_stats = off + + +#------------------------------------------------------------------------------ +# AUTOVACUUM PARAMETERS +#------------------------------------------------------------------------------ + +#autovacuum = on # Enable autovacuum subprocess? 'on' + # requires track_counts to also be on. +#log_autovacuum_min_duration = -1 # -1 disables, 0 logs all actions and + # their durations, > 0 logs only + # actions running at least this number + # of milliseconds. +#autovacuum_max_workers = 3 # max number of autovacuum subprocesses + # (change requires restart) +#autovacuum_naptime = 1min # time between autovacuum runs +#autovacuum_vacuum_threshold = 50 # min number of row updates before + # vacuum +#autovacuum_analyze_threshold = 50 # min number of row updates before + # analyze +#autovacuum_vacuum_scale_factor = 0.2 # fraction of table size before vacuum +#autovacuum_analyze_scale_factor = 0.1 # fraction of table size before analyze +#autovacuum_freeze_max_age = 200000000 # maximum XID age before forced vacuum + # (change requires restart) +#autovacuum_multixact_freeze_max_age = 400000000 # maximum multixact age + # before forced vacuum + # (change requires restart) +#autovacuum_vacuum_cost_delay = 20ms # default vacuum cost delay for + # autovacuum, in milliseconds; + # -1 means use vacuum_cost_delay +#autovacuum_vacuum_cost_limit = -1 # default vacuum cost limit for + # autovacuum, -1 means use + # vacuum_cost_limit + + +#------------------------------------------------------------------------------ +# CLIENT CONNECTION DEFAULTS +#------------------------------------------------------------------------------ + +# - Statement Behavior - + +#search_path = '"$user", public' # schema names +#default_tablespace = '' # a tablespace name, '' uses the default +#temp_tablespaces = '' # a list of tablespace names, '' uses + # only default tablespace +#check_function_bodies = on +#default_transaction_isolation = 'read committed' +#default_transaction_read_only = off +#default_transaction_deferrable = off +#session_replication_role = 'origin' +#statement_timeout = 0 # in milliseconds, 0 is disabled +#lock_timeout = 0 # in milliseconds, 0 is disabled +#idle_in_transaction_session_timeout = 0 # in milliseconds, 0 is disabled +#vacuum_freeze_min_age = 50000000 +#vacuum_freeze_table_age = 150000000 +#vacuum_multixact_freeze_min_age = 5000000 +#vacuum_multixact_freeze_table_age = 150000000 +#bytea_output = 'hex' # hex, escape +#xmlbinary = 'base64' +#xmloption = 'content' +#gin_fuzzy_search_limit = 0 +#gin_pending_list_limit = 4MB + +# - Locale and Formatting - + +datestyle = 'iso, mdy' +#intervalstyle = 'postgres' +timezone = 'UTC' +#timezone_abbreviations = 'Default' # Select the set of available time zone + # abbreviations. Currently, there are + # Default + # Australia (historical usage) + # India + # You can create your own file in + # share/timezonesets/. +#extra_float_digits = 0 # min -15, max 3 +#client_encoding = sql_ascii # actually, defaults to database + # encoding + +# These settings are initialized by initdb, but they can be changed. +lc_messages = 'en_US.utf8' # locale for system error message + # strings +lc_monetary = 'en_US.utf8' # locale for monetary formatting +lc_numeric = 'en_US.utf8' # locale for number formatting +lc_time = 'en_US.utf8' # locale for time formatting + +# default configuration for text search +default_text_search_config = 'pg_catalog.english' + +# - Other Defaults - + +#dynamic_library_path = '$libdir' +#local_preload_libraries = '' +#session_preload_libraries = '' + + +#------------------------------------------------------------------------------ +# LOCK MANAGEMENT +#------------------------------------------------------------------------------ + +#deadlock_timeout = 1s +#max_locks_per_transaction = 64 # min 10 + # (change requires restart) +#max_pred_locks_per_transaction = 64 # min 10 + # (change requires restart) +#max_pred_locks_per_relation = -2 # negative values mean + # (max_pred_locks_per_transaction + # / -max_pred_locks_per_relation) - 1 +#max_pred_locks_per_page = 2 # min 0 + + +#------------------------------------------------------------------------------ +# VERSION/PLATFORM COMPATIBILITY +#------------------------------------------------------------------------------ + +# - Previous PostgreSQL Versions - + +#array_nulls = on +#backslash_quote = safe_encoding # on, off, or safe_encoding +#default_with_oids = off +#escape_string_warning = on +#lo_compat_privileges = off +#operator_precedence_warning = off +#quote_all_identifiers = off +#standard_conforming_strings = on +#synchronize_seqscans = on + +# - Other Platforms and Clients - + +#transform_null_equals = off + + +#------------------------------------------------------------------------------ +# ERROR HANDLING +#------------------------------------------------------------------------------ + +#exit_on_error = off # terminate session on any error? +#restart_after_crash = on # reinitialize after backend crash? + + +#------------------------------------------------------------------------------ +# CONFIG FILE INCLUDES +#------------------------------------------------------------------------------ + +# These options allow settings to be loaded from files other than the +# default postgresql.conf. + +#include_dir = 'conf.d' # include files ending in '.conf' from + # directory 'conf.d' +#include_if_exists = 'exists.conf' # include file only if it exists +#include = 'special.conf' # include file + + +#------------------------------------------------------------------------------ +# CUSTOMIZED OPTIONS +#------------------------------------------------------------------------------ + +# Add settings for extensions here diff --git a/zbx_env/var/lib/postgresql/data/postmaster.opts b/zbx_env/var/lib/postgresql/data/postmaster.opts new file mode 100644 index 000000000..15758abad --- /dev/null +++ b/zbx_env/var/lib/postgresql/data/postmaster.opts @@ -0,0 +1 @@ +/usr/lib/postgresql/10/bin/postgres diff --git a/zbx_env/var/lib/postgresql/data/postmaster.pid b/zbx_env/var/lib/postgresql/data/postmaster.pid new file mode 100644 index 000000000..4a6f2082e --- /dev/null +++ b/zbx_env/var/lib/postgresql/data/postmaster.pid @@ -0,0 +1,8 @@ +1 +/var/lib/postgresql/data +1532050246 +5432 +/var/run/postgresql +* + 5432001 163840 +ready diff --git a/zbx_env/var/lib/zabbix/snmptraps/snmptraps.log b/zbx_env/var/lib/zabbix/snmptraps/snmptraps.log new file mode 100644 index 000000000..e69de29bb