diff --git a/agent/alpine/README.md b/agent/alpine/README.md index 15a48b244..60d596211 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 18.04 (bionic) 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 14.04 (trusty) 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 bd3a9ab50..b77cc0b57 100755 --- a/agent/alpine/docker-entrypoint.sh +++ b/agent/alpine/docker-entrypoint.sh @@ -593,7 +593,6 @@ 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() { @@ -846,10 +845,6 @@ 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 15a48b244..60d596211 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 18.04 (bionic) 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 14.04 (trusty) 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 bd3a9ab50..b77cc0b57 100755 --- a/agent/centos/docker-entrypoint.sh +++ b/agent/centos/docker-entrypoint.sh @@ -593,7 +593,6 @@ 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() { @@ -846,10 +845,6 @@ 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 d650c013f..1997cb5cd 100644 --- a/agent/ubuntu/Dockerfile +++ b/agent/ubuntu/Dockerfile @@ -1,4 +1,4 @@ -FROM ubuntu:bionic as builder +FROM ubuntu:trusty as builder ARG APT_FLAGS_COMMON="-y" ARG APT_FLAGS_DEV="${APT_FLAGS_COMMON} --no-install-recommends" @@ -9,9 +9,8 @@ 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 apt-get ${APT_FLAGS_COMMON} update && \ - apt-get ${APT_FLAGS_PERSISTENT} install locales && \ - locale-gen $LC_ALL && \ +RUN locale-gen $LC_ALL && \ + apt-get ${APT_FLAGS_COMMON} update && \ apt-get ${APT_FLAGS_DEV} install \ autoconf \ automake \ @@ -42,7 +41,7 @@ RUN apt-get ${APT_FLAGS_COMMON} update && \ --silent && \ make -j"$(nproc)" -s -FROM ubuntu:bionic +FROM ubuntu:trusty LABEL maintainer="Alexey Pustovalov " ARG BUILD_DATE @@ -78,9 +77,7 @@ 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 apt-get ${APT_FLAGS_COMMON} update && \ - apt-get ${APT_FLAGS_PERSISTENT} install locales && \ - locale-gen $LC_ALL && \ +RUN 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 15a48b244..60d596211 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 18.04 (bionic) 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 14.04 (trusty) 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 bd3a9ab50..b77cc0b57 100755 --- a/agent/ubuntu/docker-entrypoint.sh +++ b/agent/ubuntu/docker-entrypoint.sh @@ -593,7 +593,6 @@ 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() { @@ -846,10 +845,6 @@ 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 b89fc1899..ade7ac331 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 f7996aee1..0d7493875 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:bionic + - ubuntu:trusty 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:bionic + - ubuntu:trusty 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:bionic + - ubuntu:trusty 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:bionic + - ubuntu:trusty 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:bionic + - ubuntu:trusty 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:bionic + - ubuntu:trusty 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:bionic + - ubuntu:trusty image: zabbix-java-gateway:ubuntu-3.4-local ports: - "10052:10052" @@ -366,7 +366,7 @@ services: build: context: ./snmptraps/ubuntu cache_from: - - ubuntu:bionic + - ubuntu:trusty 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 b26e82331..d755e047f 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 975d9009a..7d8a634fc 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 f507be718..d04f7a9f3 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 18.04 (bionic) 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 14.04 (trusty) 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 bd3a9ab50..b77cc0b57 100755 --- a/java-gateway/alpine/docker-entrypoint.sh +++ b/java-gateway/alpine/docker-entrypoint.sh @@ -593,7 +593,6 @@ 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() { @@ -846,10 +845,6 @@ 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 f507be718..d04f7a9f3 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 18.04 (bionic) 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 14.04 (trusty) 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 bd3a9ab50..b77cc0b57 100755 --- a/java-gateway/centos/docker-entrypoint.sh +++ b/java-gateway/centos/docker-entrypoint.sh @@ -593,7 +593,6 @@ 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() { @@ -846,10 +845,6 @@ 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 f7e3a0598..c9366cff3 100644 --- a/java-gateway/ubuntu/Dockerfile +++ b/java-gateway/ubuntu/Dockerfile @@ -1,4 +1,4 @@ -FROM ubuntu:bionic +FROM ubuntu:trusty LABEL maintainer="Alexey Pustovalov " ARG BUILD_DATE @@ -21,9 +21,7 @@ LABEL org.label-schema.name="zabbix-${ZBX_TYPE}-ubuntu" \ STOPSIGNAL SIGTERM -RUN apt-get ${APT_FLAGS_COMMON} update && \ - apt-get ${APT_FLAGS_PERSISTENT} install locales && \ - locale-gen $LC_ALL && \ +RUN locale-gen $LC_ALL && \ echo "#!/bin/sh\nexit 0" > /usr/sbin/policy-rc.d && \ addgroup --system --quiet zabbix && \ adduser --quiet \ @@ -36,7 +34,7 @@ RUN apt-get ${APT_FLAGS_COMMON} update && \ chown --quiet -R zabbix:root /etc/zabbix && \ apt-get ${APT_FLAGS_COMMON} update && \ apt-get ${APT_FLAGS_PERSISTENT} install \ - openjdk-8-jre-headless && \ + openjdk-7-jre-headless && \ apt-get ${APT_FLAGS_COMMON} autoremove && \ apt-get ${APT_FLAGS_COMMON} clean && \ rm -rf /var/lib/apt/lists/* @@ -57,7 +55,7 @@ RUN apt-get ${APT_FLAGS_COMMON} update && \ automake \ libc6-dev \ make \ - openjdk-8-jdk \ + openjdk-7-jdk \ pkg-config \ subversion \ gcc && \ @@ -87,7 +85,7 @@ RUN apt-get ${APT_FLAGS_COMMON} update && \ automake \ libc6-dev \ make \ - openjdk-8-jdk \ + openjdk-7-jdk \ pkg-config \ subversion \ gcc && \ diff --git a/java-gateway/ubuntu/README.md b/java-gateway/ubuntu/README.md index f507be718..d04f7a9f3 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 18.04 (bionic) 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 14.04 (trusty) 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 bd3a9ab50..b77cc0b57 100755 --- a/java-gateway/ubuntu/docker-entrypoint.sh +++ b/java-gateway/ubuntu/docker-entrypoint.sh @@ -593,7 +593,6 @@ 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() { @@ -846,10 +845,6 @@ 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 2d0b754dc..a54e04d35 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 18.04 (bionic) 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 14.04 (trusty) 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 bd3a9ab50..b77cc0b57 100755 --- a/proxy-mysql/alpine/docker-entrypoint.sh +++ b/proxy-mysql/alpine/docker-entrypoint.sh @@ -593,7 +593,6 @@ 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() { @@ -846,10 +845,6 @@ 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 2d0b754dc..a54e04d35 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 18.04 (bionic) 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 14.04 (trusty) 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 bd3a9ab50..b77cc0b57 100755 --- a/proxy-mysql/centos/docker-entrypoint.sh +++ b/proxy-mysql/centos/docker-entrypoint.sh @@ -593,7 +593,6 @@ 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() { @@ -846,10 +845,6 @@ 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 49805a22f..41be51b60 100644 --- a/proxy-mysql/ubuntu/Dockerfile +++ b/proxy-mysql/ubuntu/Dockerfile @@ -1,4 +1,4 @@ -FROM ubuntu:bionic +FROM ubuntu:trusty 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 apt-get ${APT_FLAGS_COMMON} update && \ - apt-get ${APT_FLAGS_PERSISTENT} install locales && \ - locale-gen $LC_ALL && \ +RUN 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 apt-get ${APT_FLAGS_COMMON} update && \ apt-get ${APT_FLAGS_COMMON} update && \ apt-get ${APT_FLAGS_PERSISTENT} install \ fping \ - libcurl4 \ - libevent-2.1 \ - libmysqlclient20 \ + libcurl3 \ + libevent-2.0 \ + libmysqlclient18 \ libopenipmi0 \ libpcre3 \ libsnmp30 \ libssh2-1 \ - libssl1.1 \ + libssl1.0.0 \ libxml2 \ mysql-client \ snmp-mibs-downloader \ diff --git a/proxy-mysql/ubuntu/README.md b/proxy-mysql/ubuntu/README.md index 2d0b754dc..a54e04d35 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 18.04 (bionic) 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 14.04 (trusty) 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 bd3a9ab50..b77cc0b57 100755 --- a/proxy-mysql/ubuntu/docker-entrypoint.sh +++ b/proxy-mysql/ubuntu/docker-entrypoint.sh @@ -593,7 +593,6 @@ 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() { @@ -846,10 +845,6 @@ 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 0962e4ffc..a8dd8ead8 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 18.04 (bionic) 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 14.04 (trusty) 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 bd3a9ab50..b77cc0b57 100755 --- a/proxy-sqlite3/alpine/docker-entrypoint.sh +++ b/proxy-sqlite3/alpine/docker-entrypoint.sh @@ -593,7 +593,6 @@ 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() { @@ -846,10 +845,6 @@ 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 0962e4ffc..a8dd8ead8 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 18.04 (bionic) 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 14.04 (trusty) 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 bd3a9ab50..b77cc0b57 100755 --- a/proxy-sqlite3/centos/docker-entrypoint.sh +++ b/proxy-sqlite3/centos/docker-entrypoint.sh @@ -593,7 +593,6 @@ 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() { @@ -846,10 +845,6 @@ 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 894868c80..9164a18ec 100644 --- a/proxy-sqlite3/ubuntu/Dockerfile +++ b/proxy-sqlite3/ubuntu/Dockerfile @@ -1,4 +1,4 @@ -FROM ubuntu:bionic +FROM ubuntu:trusty 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 apt-get ${APT_FLAGS_COMMON} update && \ - apt-get ${APT_FLAGS_PERSISTENT} install locales && \ - locale-gen $LC_ALL && \ +RUN 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 apt-get ${APT_FLAGS_COMMON} update && \ apt-get ${APT_FLAGS_COMMON} update && \ apt-get ${APT_FLAGS_PERSISTENT} install \ fping \ - libcurl4 \ - libevent-2.1 \ + libcurl3 \ + libevent-2.0 \ libopenipmi0 \ libpcre3 \ libsnmp30 \ libsqlite3-0 \ libssh2-1 \ - libssl1.1 \ + libssl1.0.0 \ libxml2 \ snmp-mibs-downloader \ unixodbc && \ diff --git a/proxy-sqlite3/ubuntu/README.md b/proxy-sqlite3/ubuntu/README.md index 0962e4ffc..a8dd8ead8 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 18.04 (bionic) 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 14.04 (trusty) 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 bd3a9ab50..b77cc0b57 100755 --- a/proxy-sqlite3/ubuntu/docker-entrypoint.sh +++ b/proxy-sqlite3/ubuntu/docker-entrypoint.sh @@ -593,7 +593,6 @@ 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() { @@ -846,10 +845,6 @@ 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 0f0038e27..ddf26634b 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 18.04 (bionic) 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 14.04 (trusty) 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 bd3a9ab50..b77cc0b57 100755 --- a/server-mysql/alpine/docker-entrypoint.sh +++ b/server-mysql/alpine/docker-entrypoint.sh @@ -593,7 +593,6 @@ 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() { @@ -846,10 +845,6 @@ 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 0f0038e27..ddf26634b 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 18.04 (bionic) 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 14.04 (trusty) 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 bd3a9ab50..b77cc0b57 100755 --- a/server-mysql/centos/docker-entrypoint.sh +++ b/server-mysql/centos/docker-entrypoint.sh @@ -593,7 +593,6 @@ 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() { @@ -846,10 +845,6 @@ 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 9dec9a943..978c232fd 100644 --- a/server-mysql/ubuntu/Dockerfile +++ b/server-mysql/ubuntu/Dockerfile @@ -1,4 +1,4 @@ -FROM ubuntu:bionic +FROM ubuntu:trusty 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 apt-get ${APT_FLAGS_COMMON} update && \ - apt-get ${APT_FLAGS_PERSISTENT} install locales && \ - locale-gen $LC_ALL && \ +RUN 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 apt-get ${APT_FLAGS_COMMON} update && \ apt-get ${APT_FLAGS_COMMON} update && \ apt-get ${APT_FLAGS_PERSISTENT} install \ fping \ - libcurl4 \ - libevent-2.1 \ + libcurl3 \ + libevent-2.0 \ libiksemel3 \ - libmysqlclient20 \ + libmysqlclient18 \ libopenipmi0 \ libpcre3 \ libsnmp30 \ libssh2-1 \ - libssl1.1 \ + libssl1.0.0 \ libxml2 \ mysql-client \ snmp-mibs-downloader \ diff --git a/server-mysql/ubuntu/README.md b/server-mysql/ubuntu/README.md index 0f0038e27..ddf26634b 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 18.04 (bionic) 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 14.04 (trusty) 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 bd3a9ab50..b77cc0b57 100755 --- a/server-mysql/ubuntu/docker-entrypoint.sh +++ b/server-mysql/ubuntu/docker-entrypoint.sh @@ -593,7 +593,6 @@ 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() { @@ -846,10 +845,6 @@ 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 f9fbe8077..de99b700f 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 18.04 (bionic) 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 14.04 (trusty) 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 bd3a9ab50..b77cc0b57 100755 --- a/server-pgsql/alpine/docker-entrypoint.sh +++ b/server-pgsql/alpine/docker-entrypoint.sh @@ -593,7 +593,6 @@ 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() { @@ -846,10 +845,6 @@ 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 f9fbe8077..de99b700f 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 18.04 (bionic) 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 14.04 (trusty) 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 bd3a9ab50..b77cc0b57 100755 --- a/server-pgsql/centos/docker-entrypoint.sh +++ b/server-pgsql/centos/docker-entrypoint.sh @@ -593,7 +593,6 @@ 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() { @@ -846,10 +845,6 @@ 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 885a060a7..121526c7c 100644 --- a/server-pgsql/ubuntu/Dockerfile +++ b/server-pgsql/ubuntu/Dockerfile @@ -1,4 +1,4 @@ -FROM ubuntu:bionic +FROM ubuntu:trusty 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 apt-get ${APT_FLAGS_COMMON} update && \ - apt-get ${APT_FLAGS_PERSISTENT} install locales && \ - locale-gen $LC_ALL && \ +RUN 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 apt-get ${APT_FLAGS_COMMON} update && \ apt-get ${APT_FLAGS_COMMON} update && \ apt-get ${APT_FLAGS_PERSISTENT} install \ fping \ - libcurl4 \ - libevent-2.1 \ + libcurl3 \ + libevent-2.0 \ libiksemel3 \ libopenipmi0 \ libpcre3 \ libpq5 \ libsnmp30 \ libssh2-1 \ - libssl1.1 \ + libssl1.0.0 \ libxml2 \ postgresql-client \ snmp-mibs-downloader \ diff --git a/server-pgsql/ubuntu/README.md b/server-pgsql/ubuntu/README.md index f9fbe8077..de99b700f 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 18.04 (bionic) 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 14.04 (trusty) 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 bd3a9ab50..b77cc0b57 100755 --- a/server-pgsql/ubuntu/docker-entrypoint.sh +++ b/server-pgsql/ubuntu/docker-entrypoint.sh @@ -593,7 +593,6 @@ 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() { @@ -846,10 +845,6 @@ 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 59654efc4..51fa5bee2 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 18.04 (bionic) 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 14.04 (trusty) 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 59654efc4..51fa5bee2 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 18.04 (bionic) 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 14.04 (trusty) 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 39bd5a3ee..b9ae8fa20 100644 --- a/snmptraps/ubuntu/Dockerfile +++ b/snmptraps/ubuntu/Dockerfile @@ -1,4 +1,4 @@ -FROM ubuntu:bionic +FROM ubuntu:trusty LABEL maintainer "Alexey Pustovalov " ARG BUILD_DATE @@ -33,10 +33,10 @@ STOPSIGNAL SIGTERM COPY ["snmptrapfmt_1.14+nmu1ubuntu2_amd64.deb", "/tmp/"] -RUN apt-get ${APT_FLAGS_COMMON} update && \ - apt-get ${APT_FLAGS_PERSISTENT} install locales && \ - locale-gen $LC_ALL && \ +RUN 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 59654efc4..51fa5bee2 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 18.04 (bionic) 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 14.04 (trusty) 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 23bee9b96..976dea8eb 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 18.04 (bionic) 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 14.04 (trusty) 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 bd3a9ab50..b77cc0b57 100755 --- a/web-apache-mysql/alpine/docker-entrypoint.sh +++ b/web-apache-mysql/alpine/docker-entrypoint.sh @@ -593,7 +593,6 @@ 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() { @@ -846,10 +845,6 @@ 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 23bee9b96..976dea8eb 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 18.04 (bionic) 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 14.04 (trusty) 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 bd3a9ab50..b77cc0b57 100755 --- a/web-apache-mysql/centos/docker-entrypoint.sh +++ b/web-apache-mysql/centos/docker-entrypoint.sh @@ -593,7 +593,6 @@ 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() { @@ -846,10 +845,6 @@ 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 4bb3553e3..b203c95a9 100644 --- a/web-apache-mysql/ubuntu/Dockerfile +++ b/web-apache-mysql/ubuntu/Dockerfile @@ -1,4 +1,4 @@ -FROM ubuntu:bionic +FROM ubuntu:trusty LABEL maintainer="Alexey Pustovalov " ARG BUILD_DATE @@ -21,9 +21,7 @@ LABEL org.label-schema.name="zabbix-web-${ZBX_OPT_TYPE}-${DB_TYPE}-ubuntu" \ STOPSIGNAL SIGTERM -RUN apt-get ${APT_FLAGS_COMMON} update && \ - apt-get ${APT_FLAGS_PERSISTENT} install locales && \ - locale-gen $LC_ALL && \ +RUN locale-gen $LC_ALL && \ echo "#!/bin/sh\nexit 0" > /usr/sbin/policy-rc.d && \ addgroup --system --quiet zabbix && \ adduser --quiet \ @@ -39,15 +37,12 @@ RUN apt-get ${APT_FLAGS_COMMON} update && \ apt-get ${APT_FLAGS_PERSISTENT} install \ apache2 \ curl \ - libapache2-mod-php \ + libapache2-mod-php5 \ mysql-client \ - php7.2-bcmath \ - php7.2-gd \ - php7.2-json \ - php7.2-ldap \ - php7.2-mbstring \ - php7.2-mysql \ - php7.2-xml \ + php5-gd \ + php5-json \ + php5-ldap \ + php5-mysql \ ttf-dejavu-core && \ apt-get ${APT_FLAGS_COMMON} autoremove && \ apt-get ${APT_FLAGS_COMMON} clean && \ @@ -107,7 +102,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/php/7.2/apache2/conf.d/99-zabbix.ini", "/etc/php/7.2/apache2/conf.d/"] +COPY ["conf/etc/php5/apache2/conf.d/99-zabbix.ini", "/etc/php5/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 23bee9b96..976dea8eb 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 18.04 (bionic) 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 14.04 (trusty) 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/php/7.2/fpm/conf.d/99-zabbix.ini b/web-apache-mysql/ubuntu/conf/etc/php5/apache2/conf.d/99-zabbix.ini similarity index 100% rename from web-nginx-mysql/ubuntu/conf/etc/php/7.2/fpm/conf.d/99-zabbix.ini rename to web-apache-mysql/ubuntu/conf/etc/php5/apache2/conf.d/99-zabbix.ini diff --git a/web-apache-mysql/ubuntu/docker-entrypoint.sh b/web-apache-mysql/ubuntu/docker-entrypoint.sh index bd3a9ab50..b77cc0b57 100755 --- a/web-apache-mysql/ubuntu/docker-entrypoint.sh +++ b/web-apache-mysql/ubuntu/docker-entrypoint.sh @@ -593,7 +593,6 @@ 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() { @@ -846,10 +845,6 @@ 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 e9578b5e2..63d0e357a 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 18.04 (bionic) 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 14.04 (trusty) 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 bd3a9ab50..b77cc0b57 100755 --- a/web-apache-pgsql/alpine/docker-entrypoint.sh +++ b/web-apache-pgsql/alpine/docker-entrypoint.sh @@ -593,7 +593,6 @@ 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() { @@ -846,10 +845,6 @@ 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 e9578b5e2..63d0e357a 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 18.04 (bionic) 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 14.04 (trusty) 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 bd3a9ab50..b77cc0b57 100755 --- a/web-apache-pgsql/centos/docker-entrypoint.sh +++ b/web-apache-pgsql/centos/docker-entrypoint.sh @@ -593,7 +593,6 @@ 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() { @@ -846,10 +845,6 @@ 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 83d60da6a..fd35769d3 100644 --- a/web-apache-pgsql/ubuntu/Dockerfile +++ b/web-apache-pgsql/ubuntu/Dockerfile @@ -1,4 +1,4 @@ -FROM ubuntu:bionic +FROM ubuntu:trusty LABEL maintainer="Alexey Pustovalov " ARG BUILD_DATE @@ -21,9 +21,7 @@ LABEL org.label-schema.name="zabbix-web-${ZBX_OPT_TYPE}-${ZBX_DB_TYPE}-ubuntu" \ STOPSIGNAL SIGTERM -RUN apt-get ${APT_FLAGS_COMMON} update && \ - apt-get ${APT_FLAGS_PERSISTENT} install locales && \ - locale-gen $LC_ALL && \ +RUN locale-gen $LC_ALL && \ echo "#!/bin/sh\nexit 0" > /usr/sbin/policy-rc.d && \ addgroup --system --quiet zabbix && \ adduser --quiet \ @@ -39,14 +37,11 @@ RUN apt-get ${APT_FLAGS_COMMON} update && \ apt-get ${APT_FLAGS_PERSISTENT} install \ apache2 \ curl \ - libapache2-mod-php \ - php7.2-bcmath \ - php7.2-gd \ - php7.2-json \ - php7.2-ldap \ - php7.2-mbstring \ - php7.2-xml \ - php7.2-pgsql \ + libapache2-mod-php5 \ + php5-gd \ + php5-json \ + php5-ldap \ + php5-pgsql \ postgresql-client \ ttf-dejavu-core && \ apt-get ${APT_FLAGS_COMMON} autoremove && \ @@ -107,7 +102,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/php/7.2/apache2/conf.d/99-zabbix.ini", "/etc/php/7.2/apache2/conf.d/"] +COPY ["conf/etc/php5/apache2/conf.d/99-zabbix.ini", "/etc/php5/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 e9578b5e2..63d0e357a 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 18.04 (bionic) 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 14.04 (trusty) 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/php/7.2/fpm/conf.d/99-zabbix.ini b/web-apache-pgsql/ubuntu/conf/etc/php5/apache2/conf.d/99-zabbix.ini similarity index 100% rename from web-nginx-pgsql/ubuntu/conf/etc/php/7.2/fpm/conf.d/99-zabbix.ini rename to web-apache-pgsql/ubuntu/conf/etc/php5/apache2/conf.d/99-zabbix.ini diff --git a/web-apache-pgsql/ubuntu/docker-entrypoint.sh b/web-apache-pgsql/ubuntu/docker-entrypoint.sh index bd3a9ab50..b77cc0b57 100755 --- a/web-apache-pgsql/ubuntu/docker-entrypoint.sh +++ b/web-apache-pgsql/ubuntu/docker-entrypoint.sh @@ -593,7 +593,6 @@ 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() { @@ -846,10 +845,6 @@ 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 a035e68c6..76d08ae61 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 18.04 (bionic) 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 14.04 (trusty) 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 bd3a9ab50..b77cc0b57 100755 --- a/web-nginx-mysql/alpine/docker-entrypoint.sh +++ b/web-nginx-mysql/alpine/docker-entrypoint.sh @@ -593,7 +593,6 @@ 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() { @@ -846,10 +845,6 @@ 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 a035e68c6..76d08ae61 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 18.04 (bionic) 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 14.04 (trusty) 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 bd3a9ab50..b77cc0b57 100755 --- a/web-nginx-mysql/centos/docker-entrypoint.sh +++ b/web-nginx-mysql/centos/docker-entrypoint.sh @@ -593,7 +593,6 @@ 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() { @@ -846,10 +845,6 @@ 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 2e99dd693..361199cdb 100644 --- a/web-nginx-mysql/ubuntu/Dockerfile +++ b/web-nginx-mysql/ubuntu/Dockerfile @@ -1,4 +1,4 @@ -FROM ubuntu:bionic +FROM ubuntu:trusty LABEL maintainer="Alexey Pustovalov " ARG BUILD_DATE @@ -21,9 +21,7 @@ LABEL org.label-schema.name="zabbix-web-${ZBX_OPT_TYPE}-${ZBX_DB_TYPE}-ubuntu" \ STOPSIGNAL SIGTERM -RUN apt-get ${APT_FLAGS_COMMON} update && \ - apt-get ${APT_FLAGS_PERSISTENT} install locales gnupg2 && \ - locale-gen $LC_ALL && \ +RUN locale-gen $LC_ALL && \ echo "#!/bin/sh\nexit 0" > /usr/sbin/policy-rc.d && \ addgroup --system --quiet zabbix && \ adduser --quiet \ @@ -46,22 +44,19 @@ RUN apt-get ${APT_FLAGS_COMMON} update && \ curl \ mysql-client \ nginx \ - php7.2-bcmath \ - php7.2-fpm \ - php7.2-gd \ - php7.2-json \ - php7.2-ldap \ - php7.2-mbstring \ - php7.2-mysql \ - php7.2-xml \ + php5-fpm \ + php5-gd \ + php5-json \ + php5-ldap \ + php5-mysql \ 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/php7 && \ - chown --quiet -R www-data:www-data /var/lib/php7 && \ + mkdir -p /var/lib/php5 && \ + chown --quiet -R www-data:www-data /var/lib/php5 && \ rm -rf /var/cache/nginx/* && \ rm -rf /var/lib/apt/lists/* @@ -121,7 +116,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/php/7.2/fpm/conf.d/99-zabbix.ini", "/etc/php/7.2/fpm/conf.d/"] +COPY ["conf/etc/php5/fpm/conf.d/99-zabbix.ini", "/etc/php5/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 a035e68c6..76d08ae61 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 18.04 (bionic) 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 14.04 (trusty) 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 fe6ad67e0..b263fb42a 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/php/7.2/apache2/conf.d/99-zabbix.ini b/web-nginx-mysql/ubuntu/conf/etc/php5/fpm/conf.d/99-zabbix.ini similarity index 80% rename from web-apache-mysql/ubuntu/conf/etc/php/7.2/apache2/conf.d/99-zabbix.ini rename to web-nginx-mysql/ubuntu/conf/etc/php5/fpm/conf.d/99-zabbix.ini index a7a7c4c8b..2ceb8be41 100644 --- a/web-apache-mysql/ubuntu/conf/etc/php/7.2/apache2/conf.d/99-zabbix.ini +++ b/web-nginx-mysql/ubuntu/conf/etc/php5/fpm/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/php/sessions +session.save_path=/var/lib/php5 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 4055ea6d7..f1d5f297a 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:php-fpm7.2] -command = /usr/sbin/%(program_name)s -F -c /etc/php/7.2/fpm/php-fpm.conf +[program:php5-fpm] +command = /usr/sbin/%(program_name)s -F -c /etc/php5/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 e1331f0bf..3bde42701 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/php/php7.2-fpm.sock; + fastcgi_pass unix:/var/run/php5-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 2d68009ab..b38103186 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/php/php7.2-fpm.sock; + fastcgi_pass unix:/var/run/php5-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 bd3a9ab50..b77cc0b57 100755 --- a/web-nginx-mysql/ubuntu/docker-entrypoint.sh +++ b/web-nginx-mysql/ubuntu/docker-entrypoint.sh @@ -593,7 +593,6 @@ 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() { @@ -846,10 +845,6 @@ 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 82974d997..0bb924b66 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 18.04 (bionic) 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 14.04 (trusty) 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 bd3a9ab50..b77cc0b57 100755 --- a/web-nginx-pgsql/alpine/docker-entrypoint.sh +++ b/web-nginx-pgsql/alpine/docker-entrypoint.sh @@ -593,7 +593,6 @@ 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() { @@ -846,10 +845,6 @@ 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 82974d997..0bb924b66 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 18.04 (bionic) 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 14.04 (trusty) 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 bd3a9ab50..b77cc0b57 100755 --- a/web-nginx-pgsql/centos/docker-entrypoint.sh +++ b/web-nginx-pgsql/centos/docker-entrypoint.sh @@ -593,7 +593,6 @@ 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() { @@ -846,10 +845,6 @@ 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 952de52af..024d33a8f 100644 --- a/web-nginx-pgsql/ubuntu/Dockerfile +++ b/web-nginx-pgsql/ubuntu/Dockerfile @@ -1,4 +1,4 @@ -FROM ubuntu:bionic +FROM ubuntu:trusty LABEL maintainer="Alexey Pustovalov " ARG BUILD_DATE @@ -21,9 +21,7 @@ LABEL org.label-schema.name="zabbix-web-${ZBX_OPT_TYPE}-${ZBX_DB_TYPE}-ubuntu" \ STOPSIGNAL SIGTERM -RUN apt-get ${APT_FLAGS_COMMON} update && \ - apt-get ${APT_FLAGS_PERSISTENT} install locales gnupg2 && \ - locale-gen $LC_ALL && \ +RUN locale-gen $LC_ALL && \ echo "#!/bin/sh\nexit 0" > /usr/sbin/policy-rc.d && \ addgroup --system --quiet zabbix && \ adduser --quiet \ @@ -45,14 +43,11 @@ RUN apt-get ${APT_FLAGS_COMMON} update && \ apt-get ${APT_FLAGS_PERSISTENT} install \ curl \ nginx \ - php7.2-bcmath \ - php7.2-fpm \ - php7.2-gd \ - php7.2-json \ - php7.2-ldap \ - php7.2-mbstring \ - php7.2-xml \ - php7.2-pgsql \ + php5-fpm \ + php5-gd \ + php5-json \ + php5-ldap \ + php5-pgsql \ postgresql-client \ supervisor \ ttf-dejavu-core && \ @@ -121,7 +116,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/php/7.2/fpm/conf.d/99-zabbix.ini", "/etc/php/7.2/fpm/conf.d/"] +COPY ["conf/etc/php5/fpm/conf.d/99-zabbix.ini", "/etc/php5/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 82974d997..0bb924b66 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 18.04 (bionic) 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 14.04 (trusty) 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 fe6ad67e0..b263fb42a 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/php/7.2/apache2/conf.d/99-zabbix.ini b/web-nginx-pgsql/ubuntu/conf/etc/php5/fpm/conf.d/99-zabbix.ini similarity index 80% rename from web-apache-pgsql/ubuntu/conf/etc/php/7.2/apache2/conf.d/99-zabbix.ini rename to web-nginx-pgsql/ubuntu/conf/etc/php5/fpm/conf.d/99-zabbix.ini index a7a7c4c8b..2ceb8be41 100644 --- a/web-apache-pgsql/ubuntu/conf/etc/php/7.2/apache2/conf.d/99-zabbix.ini +++ b/web-nginx-pgsql/ubuntu/conf/etc/php5/fpm/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/php/sessions +session.save_path=/var/lib/php5 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 4055ea6d7..f1d5f297a 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:php-fpm7.2] -command = /usr/sbin/%(program_name)s -F -c /etc/php/7.2/fpm/php-fpm.conf +[program:php5-fpm] +command = /usr/sbin/%(program_name)s -F -c /etc/php5/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 e1331f0bf..3bde42701 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/php/php7.2-fpm.sock; + fastcgi_pass unix:/var/run/php5-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 2d68009ab..b38103186 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/php/php7.2-fpm.sock; + fastcgi_pass unix:/var/run/php5-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 bd3a9ab50..b77cc0b57 100755 --- a/web-nginx-pgsql/ubuntu/docker-entrypoint.sh +++ b/web-nginx-pgsql/ubuntu/docker-entrypoint.sh @@ -593,7 +593,6 @@ 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() { @@ -846,10 +845,6 @@ 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 d58373441..47e46daee 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 18.04 (bionic) 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 14.04 (trusty) 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 bd3a9ab50..b77cc0b57 100755 --- a/zabbix-appliance/alpine/docker-entrypoint.sh +++ b/zabbix-appliance/alpine/docker-entrypoint.sh @@ -593,7 +593,6 @@ 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() { @@ -846,10 +845,6 @@ 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 d58373441..47e46daee 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 18.04 (bionic) 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 14.04 (trusty) 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 bd3a9ab50..b77cc0b57 100755 --- a/zabbix-appliance/centos/docker-entrypoint.sh +++ b/zabbix-appliance/centos/docker-entrypoint.sh @@ -593,7 +593,6 @@ 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() { @@ -846,10 +845,6 @@ 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 5cf48dc6e..8399de4fd 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 18.04 (bionic), 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 14.04 (trusty), 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 a28fc38d4..b77cc0b57 100755 --- a/zabbix-appliance/rhel/docker-entrypoint.sh +++ b/zabbix-appliance/rhel/docker-entrypoint.sh @@ -593,7 +593,6 @@ 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() { @@ -662,6 +661,11 @@ 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" @@ -677,6 +681,11 @@ 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 @@ -696,8 +705,10 @@ 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"} @@ -834,10 +845,6 @@ 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 0ef2a32b5..3ee6fa817 100644 --- a/zabbix-appliance/ubuntu/Dockerfile +++ b/zabbix-appliance/ubuntu/Dockerfile @@ -1,4 +1,4 @@ -FROM ubuntu:bionic as builder +FROM ubuntu:trusty 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:bionic +FROM ubuntu:trusty LABEL maintainer="Alexey Pustovalov " ARG BUILD_DATE diff --git a/zabbix-appliance/ubuntu/README.md b/zabbix-appliance/ubuntu/README.md index d58373441..47e46daee 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 18.04 (bionic) 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 14.04 (trusty) 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 bd3a9ab50..b77cc0b57 100755 --- a/zabbix-appliance/ubuntu/docker-entrypoint.sh +++ b/zabbix-appliance/ubuntu/docker-entrypoint.sh @@ -593,7 +593,6 @@ 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() { @@ -846,10 +845,6 @@ 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 deleted file mode 100644 index cb24256b5..000000000 --- a/zbx_env/var/lib/mysql/auto.cnf +++ /dev/null @@ -1,2 +0,0 @@ -[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 deleted file mode 100644 index f955607a7..000000000 --- a/zbx_env/var/lib/mysql/ca-key.pem +++ /dev/null @@ -1,27 +0,0 @@ ------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 deleted file mode 100644 index 448a981f3..000000000 --- a/zbx_env/var/lib/mysql/ca.pem +++ /dev/null @@ -1,19 +0,0 @@ ------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 deleted file mode 100644 index 8fe10a615..000000000 --- a/zbx_env/var/lib/mysql/client-cert.pem +++ /dev/null @@ -1,19 +0,0 @@ ------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 deleted file mode 100644 index bc7a6c1bb..000000000 --- a/zbx_env/var/lib/mysql/client-key.pem +++ /dev/null @@ -1,27 +0,0 @@ ------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 deleted file mode 100644 index 183e31593..000000000 --- a/zbx_env/var/lib/mysql/ib_buffer_pool +++ /dev/null @@ -1,207 +0,0 @@ -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 deleted file mode 100644 index cc4ca8242..000000000 Binary files a/zbx_env/var/lib/mysql/ib_logfile0 and /dev/null differ diff --git a/zbx_env/var/lib/mysql/ib_logfile1 b/zbx_env/var/lib/mysql/ib_logfile1 deleted file mode 100644 index 274bba07c..000000000 Binary files a/zbx_env/var/lib/mysql/ib_logfile1 and /dev/null differ diff --git a/zbx_env/var/lib/mysql/ibdata1 b/zbx_env/var/lib/mysql/ibdata1 deleted file mode 100644 index 66105e7d3..000000000 Binary files a/zbx_env/var/lib/mysql/ibdata1 and /dev/null differ diff --git a/zbx_env/var/lib/mysql/ibtmp1 b/zbx_env/var/lib/mysql/ibtmp1 deleted file mode 100644 index 69075c212..000000000 Binary files a/zbx_env/var/lib/mysql/ibtmp1 and /dev/null differ diff --git a/zbx_env/var/lib/mysql/mysql/columns_priv.MYD b/zbx_env/var/lib/mysql/mysql/columns_priv.MYD deleted file mode 100644 index e69de29bb..000000000 diff --git a/zbx_env/var/lib/mysql/mysql/columns_priv.MYI b/zbx_env/var/lib/mysql/mysql/columns_priv.MYI deleted file mode 100644 index e94f34bdd..000000000 Binary files a/zbx_env/var/lib/mysql/mysql/columns_priv.MYI and /dev/null differ diff --git a/zbx_env/var/lib/mysql/mysql/columns_priv.frm b/zbx_env/var/lib/mysql/mysql/columns_priv.frm deleted file mode 100644 index 4d876d0cc..000000000 Binary files a/zbx_env/var/lib/mysql/mysql/columns_priv.frm and /dev/null differ diff --git a/zbx_env/var/lib/mysql/mysql/db.MYD b/zbx_env/var/lib/mysql/mysql/db.MYD deleted file mode 100644 index 0b15fac07..000000000 --- a/zbx_env/var/lib/mysql/mysql/db.MYD +++ /dev/null @@ -1 +0,0 @@ -ÿ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 deleted file mode 100644 index 2873ee76a..000000000 Binary files a/zbx_env/var/lib/mysql/mysql/db.MYI and /dev/null differ diff --git a/zbx_env/var/lib/mysql/mysql/db.frm b/zbx_env/var/lib/mysql/mysql/db.frm deleted file mode 100644 index b28787435..000000000 Binary files a/zbx_env/var/lib/mysql/mysql/db.frm and /dev/null differ diff --git a/zbx_env/var/lib/mysql/mysql/db.opt b/zbx_env/var/lib/mysql/mysql/db.opt deleted file mode 100644 index 16221b854..000000000 --- a/zbx_env/var/lib/mysql/mysql/db.opt +++ /dev/null @@ -1,2 +0,0 @@ -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 deleted file mode 100644 index 958ade30b..000000000 Binary files a/zbx_env/var/lib/mysql/mysql/engine_cost.frm and /dev/null differ diff --git a/zbx_env/var/lib/mysql/mysql/engine_cost.ibd b/zbx_env/var/lib/mysql/mysql/engine_cost.ibd deleted file mode 100644 index fed7c6562..000000000 Binary files a/zbx_env/var/lib/mysql/mysql/engine_cost.ibd and /dev/null differ diff --git a/zbx_env/var/lib/mysql/mysql/event.MYD b/zbx_env/var/lib/mysql/mysql/event.MYD deleted file mode 100644 index e69de29bb..000000000 diff --git a/zbx_env/var/lib/mysql/mysql/event.MYI b/zbx_env/var/lib/mysql/mysql/event.MYI deleted file mode 100644 index 4945fcb49..000000000 Binary files a/zbx_env/var/lib/mysql/mysql/event.MYI and /dev/null differ diff --git a/zbx_env/var/lib/mysql/mysql/event.frm b/zbx_env/var/lib/mysql/mysql/event.frm deleted file mode 100644 index 721c43ce7..000000000 Binary files a/zbx_env/var/lib/mysql/mysql/event.frm and /dev/null differ diff --git a/zbx_env/var/lib/mysql/mysql/func.MYD b/zbx_env/var/lib/mysql/mysql/func.MYD deleted file mode 100644 index e69de29bb..000000000 diff --git a/zbx_env/var/lib/mysql/mysql/func.MYI b/zbx_env/var/lib/mysql/mysql/func.MYI deleted file mode 100644 index a64a72ac9..000000000 Binary files a/zbx_env/var/lib/mysql/mysql/func.MYI and /dev/null differ diff --git a/zbx_env/var/lib/mysql/mysql/func.frm b/zbx_env/var/lib/mysql/mysql/func.frm deleted file mode 100644 index 2947eb076..000000000 Binary files a/zbx_env/var/lib/mysql/mysql/func.frm and /dev/null differ diff --git a/zbx_env/var/lib/mysql/mysql/general_log.CSM b/zbx_env/var/lib/mysql/mysql/general_log.CSM deleted file mode 100644 index 8d08b8db9..000000000 Binary files a/zbx_env/var/lib/mysql/mysql/general_log.CSM and /dev/null differ diff --git a/zbx_env/var/lib/mysql/mysql/general_log.CSV b/zbx_env/var/lib/mysql/mysql/general_log.CSV deleted file mode 100644 index e69de29bb..000000000 diff --git a/zbx_env/var/lib/mysql/mysql/general_log.frm b/zbx_env/var/lib/mysql/mysql/general_log.frm deleted file mode 100644 index 522353b76..000000000 Binary files a/zbx_env/var/lib/mysql/mysql/general_log.frm and /dev/null differ diff --git a/zbx_env/var/lib/mysql/mysql/gtid_executed.frm b/zbx_env/var/lib/mysql/mysql/gtid_executed.frm deleted file mode 100644 index f476407ca..000000000 Binary files a/zbx_env/var/lib/mysql/mysql/gtid_executed.frm and /dev/null differ diff --git a/zbx_env/var/lib/mysql/mysql/gtid_executed.ibd b/zbx_env/var/lib/mysql/mysql/gtid_executed.ibd deleted file mode 100644 index 4bbcddb9f..000000000 Binary files a/zbx_env/var/lib/mysql/mysql/gtid_executed.ibd and /dev/null differ diff --git a/zbx_env/var/lib/mysql/mysql/help_category.frm b/zbx_env/var/lib/mysql/mysql/help_category.frm deleted file mode 100644 index 09e5dda43..000000000 Binary files a/zbx_env/var/lib/mysql/mysql/help_category.frm and /dev/null differ diff --git a/zbx_env/var/lib/mysql/mysql/help_category.ibd b/zbx_env/var/lib/mysql/mysql/help_category.ibd deleted file mode 100644 index 4f1556327..000000000 Binary files a/zbx_env/var/lib/mysql/mysql/help_category.ibd and /dev/null differ diff --git a/zbx_env/var/lib/mysql/mysql/help_keyword.frm b/zbx_env/var/lib/mysql/mysql/help_keyword.frm deleted file mode 100644 index 7b2ca867b..000000000 Binary files a/zbx_env/var/lib/mysql/mysql/help_keyword.frm and /dev/null differ diff --git a/zbx_env/var/lib/mysql/mysql/help_keyword.ibd b/zbx_env/var/lib/mysql/mysql/help_keyword.ibd deleted file mode 100644 index 2bca58755..000000000 Binary files a/zbx_env/var/lib/mysql/mysql/help_keyword.ibd and /dev/null differ diff --git a/zbx_env/var/lib/mysql/mysql/help_relation.frm b/zbx_env/var/lib/mysql/mysql/help_relation.frm deleted file mode 100644 index 578f403ef..000000000 Binary files a/zbx_env/var/lib/mysql/mysql/help_relation.frm and /dev/null differ diff --git a/zbx_env/var/lib/mysql/mysql/help_relation.ibd b/zbx_env/var/lib/mysql/mysql/help_relation.ibd deleted file mode 100644 index 76a86347b..000000000 Binary files a/zbx_env/var/lib/mysql/mysql/help_relation.ibd and /dev/null differ diff --git a/zbx_env/var/lib/mysql/mysql/help_topic.frm b/zbx_env/var/lib/mysql/mysql/help_topic.frm deleted file mode 100644 index 3a08671d4..000000000 Binary files a/zbx_env/var/lib/mysql/mysql/help_topic.frm and /dev/null differ diff --git a/zbx_env/var/lib/mysql/mysql/help_topic.ibd b/zbx_env/var/lib/mysql/mysql/help_topic.ibd deleted file mode 100644 index 306a39899..000000000 Binary files a/zbx_env/var/lib/mysql/mysql/help_topic.ibd and /dev/null 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 deleted file mode 100644 index 8eff8c664..000000000 Binary files a/zbx_env/var/lib/mysql/mysql/innodb_index_stats.frm and /dev/null 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 deleted file mode 100644 index 6663ee2da..000000000 Binary files a/zbx_env/var/lib/mysql/mysql/innodb_index_stats.ibd and /dev/null 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 deleted file mode 100644 index 63512d91e..000000000 Binary files a/zbx_env/var/lib/mysql/mysql/innodb_table_stats.frm and /dev/null 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 deleted file mode 100644 index 8cb2e1525..000000000 Binary files a/zbx_env/var/lib/mysql/mysql/innodb_table_stats.ibd and /dev/null 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 deleted file mode 100644 index e69de29bb..000000000 diff --git a/zbx_env/var/lib/mysql/mysql/ndb_binlog_index.MYI b/zbx_env/var/lib/mysql/mysql/ndb_binlog_index.MYI deleted file mode 100644 index c11384ce7..000000000 Binary files a/zbx_env/var/lib/mysql/mysql/ndb_binlog_index.MYI and /dev/null 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 deleted file mode 100644 index 6640d9c43..000000000 Binary files a/zbx_env/var/lib/mysql/mysql/ndb_binlog_index.frm and /dev/null differ diff --git a/zbx_env/var/lib/mysql/mysql/plugin.frm b/zbx_env/var/lib/mysql/mysql/plugin.frm deleted file mode 100644 index d2d214725..000000000 Binary files a/zbx_env/var/lib/mysql/mysql/plugin.frm and /dev/null differ diff --git a/zbx_env/var/lib/mysql/mysql/plugin.ibd b/zbx_env/var/lib/mysql/mysql/plugin.ibd deleted file mode 100644 index b0fc04b21..000000000 Binary files a/zbx_env/var/lib/mysql/mysql/plugin.ibd and /dev/null differ diff --git a/zbx_env/var/lib/mysql/mysql/proc.MYD b/zbx_env/var/lib/mysql/mysql/proc.MYD deleted file mode 100644 index fc75d786d..000000000 Binary files a/zbx_env/var/lib/mysql/mysql/proc.MYD and /dev/null differ diff --git a/zbx_env/var/lib/mysql/mysql/proc.MYI b/zbx_env/var/lib/mysql/mysql/proc.MYI deleted file mode 100644 index 8f47aef2a..000000000 Binary files a/zbx_env/var/lib/mysql/mysql/proc.MYI and /dev/null differ diff --git a/zbx_env/var/lib/mysql/mysql/proc.frm b/zbx_env/var/lib/mysql/mysql/proc.frm deleted file mode 100644 index 29230237d..000000000 Binary files a/zbx_env/var/lib/mysql/mysql/proc.frm and /dev/null differ diff --git a/zbx_env/var/lib/mysql/mysql/procs_priv.MYD b/zbx_env/var/lib/mysql/mysql/procs_priv.MYD deleted file mode 100644 index e69de29bb..000000000 diff --git a/zbx_env/var/lib/mysql/mysql/procs_priv.MYI b/zbx_env/var/lib/mysql/mysql/procs_priv.MYI deleted file mode 100644 index 07aeb3492..000000000 Binary files a/zbx_env/var/lib/mysql/mysql/procs_priv.MYI and /dev/null differ diff --git a/zbx_env/var/lib/mysql/mysql/procs_priv.frm b/zbx_env/var/lib/mysql/mysql/procs_priv.frm deleted file mode 100644 index 6cbbca195..000000000 Binary files a/zbx_env/var/lib/mysql/mysql/procs_priv.frm and /dev/null differ diff --git a/zbx_env/var/lib/mysql/mysql/proxies_priv.MYD b/zbx_env/var/lib/mysql/mysql/proxies_priv.MYD deleted file mode 100644 index 0b64b53de..000000000 Binary files a/zbx_env/var/lib/mysql/mysql/proxies_priv.MYD and /dev/null differ diff --git a/zbx_env/var/lib/mysql/mysql/proxies_priv.MYI b/zbx_env/var/lib/mysql/mysql/proxies_priv.MYI deleted file mode 100644 index 7b5cfb6d6..000000000 Binary files a/zbx_env/var/lib/mysql/mysql/proxies_priv.MYI and /dev/null differ diff --git a/zbx_env/var/lib/mysql/mysql/proxies_priv.frm b/zbx_env/var/lib/mysql/mysql/proxies_priv.frm deleted file mode 100644 index e13b60937..000000000 Binary files a/zbx_env/var/lib/mysql/mysql/proxies_priv.frm and /dev/null differ diff --git a/zbx_env/var/lib/mysql/mysql/server_cost.frm b/zbx_env/var/lib/mysql/mysql/server_cost.frm deleted file mode 100644 index 719de6113..000000000 Binary files a/zbx_env/var/lib/mysql/mysql/server_cost.frm and /dev/null differ diff --git a/zbx_env/var/lib/mysql/mysql/server_cost.ibd b/zbx_env/var/lib/mysql/mysql/server_cost.ibd deleted file mode 100644 index b4b33bceb..000000000 Binary files a/zbx_env/var/lib/mysql/mysql/server_cost.ibd and /dev/null differ diff --git a/zbx_env/var/lib/mysql/mysql/servers.frm b/zbx_env/var/lib/mysql/mysql/servers.frm deleted file mode 100644 index cc9b33f55..000000000 Binary files a/zbx_env/var/lib/mysql/mysql/servers.frm and /dev/null differ diff --git a/zbx_env/var/lib/mysql/mysql/servers.ibd b/zbx_env/var/lib/mysql/mysql/servers.ibd deleted file mode 100644 index 9665c6fd7..000000000 Binary files a/zbx_env/var/lib/mysql/mysql/servers.ibd and /dev/null 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 deleted file mode 100644 index 1a17d724c..000000000 Binary files a/zbx_env/var/lib/mysql/mysql/slave_master_info.frm and /dev/null 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 deleted file mode 100644 index 11a48086c..000000000 Binary files a/zbx_env/var/lib/mysql/mysql/slave_master_info.ibd and /dev/null 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 deleted file mode 100644 index 37646f0c3..000000000 Binary files a/zbx_env/var/lib/mysql/mysql/slave_relay_log_info.frm and /dev/null 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 deleted file mode 100644 index bd308dd5f..000000000 Binary files a/zbx_env/var/lib/mysql/mysql/slave_relay_log_info.ibd and /dev/null 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 deleted file mode 100644 index c7908e1fe..000000000 Binary files a/zbx_env/var/lib/mysql/mysql/slave_worker_info.frm and /dev/null 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 deleted file mode 100644 index 987cf448a..000000000 Binary files a/zbx_env/var/lib/mysql/mysql/slave_worker_info.ibd and /dev/null differ diff --git a/zbx_env/var/lib/mysql/mysql/slow_log.CSM b/zbx_env/var/lib/mysql/mysql/slow_log.CSM deleted file mode 100644 index 8d08b8db9..000000000 Binary files a/zbx_env/var/lib/mysql/mysql/slow_log.CSM and /dev/null differ diff --git a/zbx_env/var/lib/mysql/mysql/slow_log.CSV b/zbx_env/var/lib/mysql/mysql/slow_log.CSV deleted file mode 100644 index e69de29bb..000000000 diff --git a/zbx_env/var/lib/mysql/mysql/slow_log.frm b/zbx_env/var/lib/mysql/mysql/slow_log.frm deleted file mode 100644 index 56e0c9b6e..000000000 Binary files a/zbx_env/var/lib/mysql/mysql/slow_log.frm and /dev/null differ diff --git a/zbx_env/var/lib/mysql/mysql/tables_priv.MYD b/zbx_env/var/lib/mysql/mysql/tables_priv.MYD deleted file mode 100644 index e083bd37d..000000000 Binary files a/zbx_env/var/lib/mysql/mysql/tables_priv.MYD and /dev/null differ diff --git a/zbx_env/var/lib/mysql/mysql/tables_priv.MYI b/zbx_env/var/lib/mysql/mysql/tables_priv.MYI deleted file mode 100644 index 9003fc687..000000000 Binary files a/zbx_env/var/lib/mysql/mysql/tables_priv.MYI and /dev/null differ diff --git a/zbx_env/var/lib/mysql/mysql/tables_priv.frm b/zbx_env/var/lib/mysql/mysql/tables_priv.frm deleted file mode 100644 index 443d01d04..000000000 Binary files a/zbx_env/var/lib/mysql/mysql/tables_priv.frm and /dev/null differ diff --git a/zbx_env/var/lib/mysql/mysql/time_zone.frm b/zbx_env/var/lib/mysql/mysql/time_zone.frm deleted file mode 100644 index 3fefe5d9b..000000000 Binary files a/zbx_env/var/lib/mysql/mysql/time_zone.frm and /dev/null differ diff --git a/zbx_env/var/lib/mysql/mysql/time_zone.ibd b/zbx_env/var/lib/mysql/mysql/time_zone.ibd deleted file mode 100644 index 6c88e7be1..000000000 Binary files a/zbx_env/var/lib/mysql/mysql/time_zone.ibd and /dev/null 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 deleted file mode 100644 index 9f29432b5..000000000 Binary files a/zbx_env/var/lib/mysql/mysql/time_zone_leap_second.frm and /dev/null 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 deleted file mode 100644 index ddc559c23..000000000 Binary files a/zbx_env/var/lib/mysql/mysql/time_zone_leap_second.ibd and /dev/null 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 deleted file mode 100644 index 9bab38580..000000000 Binary files a/zbx_env/var/lib/mysql/mysql/time_zone_name.frm and /dev/null 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 deleted file mode 100644 index cbaa6d4e4..000000000 Binary files a/zbx_env/var/lib/mysql/mysql/time_zone_name.ibd and /dev/null 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 deleted file mode 100644 index dba99054d..000000000 Binary files a/zbx_env/var/lib/mysql/mysql/time_zone_transition.frm and /dev/null 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 deleted file mode 100644 index 80de583a6..000000000 Binary files a/zbx_env/var/lib/mysql/mysql/time_zone_transition.ibd and /dev/null 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 deleted file mode 100644 index b0c1d5b29..000000000 Binary files a/zbx_env/var/lib/mysql/mysql/time_zone_transition_type.frm and /dev/null 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 deleted file mode 100644 index fd2006971..000000000 Binary files a/zbx_env/var/lib/mysql/mysql/time_zone_transition_type.ibd and /dev/null differ diff --git a/zbx_env/var/lib/mysql/mysql/user.MYD b/zbx_env/var/lib/mysql/mysql/user.MYD deleted file mode 100644 index 77b749366..000000000 Binary files a/zbx_env/var/lib/mysql/mysql/user.MYD and /dev/null differ diff --git a/zbx_env/var/lib/mysql/mysql/user.MYI b/zbx_env/var/lib/mysql/mysql/user.MYI deleted file mode 100644 index 720815504..000000000 Binary files a/zbx_env/var/lib/mysql/mysql/user.MYI and /dev/null differ diff --git a/zbx_env/var/lib/mysql/mysql/user.frm b/zbx_env/var/lib/mysql/mysql/user.frm deleted file mode 100644 index 9b0f821f1..000000000 Binary files a/zbx_env/var/lib/mysql/mysql/user.frm and /dev/null differ diff --git a/zbx_env/var/lib/mysql/performance_schema/accounts.frm b/zbx_env/var/lib/mysql/performance_schema/accounts.frm deleted file mode 100644 index b764693bc..000000000 Binary files a/zbx_env/var/lib/mysql/performance_schema/accounts.frm and /dev/null 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 deleted file mode 100644 index 70810c452..000000000 Binary files a/zbx_env/var/lib/mysql/performance_schema/cond_instances.frm and /dev/null differ diff --git a/zbx_env/var/lib/mysql/performance_schema/db.opt b/zbx_env/var/lib/mysql/performance_schema/db.opt deleted file mode 100644 index 4ed6015f9..000000000 --- a/zbx_env/var/lib/mysql/performance_schema/db.opt +++ /dev/null @@ -1,2 +0,0 @@ -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 deleted file mode 100644 index 04d8903e2..000000000 Binary files a/zbx_env/var/lib/mysql/performance_schema/events_stages_current.frm and /dev/null 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 deleted file mode 100644 index 04d8903e2..000000000 Binary files a/zbx_env/var/lib/mysql/performance_schema/events_stages_history.frm and /dev/null 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 deleted file mode 100644 index 04d8903e2..000000000 Binary files a/zbx_env/var/lib/mysql/performance_schema/events_stages_history_long.frm and /dev/null 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 deleted file mode 100644 index 8eb89874b..000000000 Binary files a/zbx_env/var/lib/mysql/performance_schema/events_stages_summary_by_account_by_event_name.frm and /dev/null 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 deleted file mode 100644 index e2aceca07..000000000 Binary files a/zbx_env/var/lib/mysql/performance_schema/events_stages_summary_by_host_by_event_name.frm and /dev/null 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 deleted file mode 100644 index fc6e9b848..000000000 Binary files a/zbx_env/var/lib/mysql/performance_schema/events_stages_summary_by_thread_by_event_name.frm and /dev/null 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 deleted file mode 100644 index 4557abf99..000000000 Binary files a/zbx_env/var/lib/mysql/performance_schema/events_stages_summary_by_user_by_event_name.frm and /dev/null 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 deleted file mode 100644 index 4590b336d..000000000 Binary files a/zbx_env/var/lib/mysql/performance_schema/events_stages_summary_global_by_event_name.frm and /dev/null 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 deleted file mode 100644 index 1d71ddbfa..000000000 Binary files a/zbx_env/var/lib/mysql/performance_schema/events_statements_current.frm and /dev/null 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 deleted file mode 100644 index 1d71ddbfa..000000000 Binary files a/zbx_env/var/lib/mysql/performance_schema/events_statements_history.frm and /dev/null 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 deleted file mode 100644 index 1d71ddbfa..000000000 Binary files a/zbx_env/var/lib/mysql/performance_schema/events_statements_history_long.frm and /dev/null 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 deleted file mode 100644 index 8d634b78c..000000000 Binary files a/zbx_env/var/lib/mysql/performance_schema/events_statements_summary_by_account_by_event_name.frm and /dev/null 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 deleted file mode 100644 index 743e7bd3e..000000000 Binary files a/zbx_env/var/lib/mysql/performance_schema/events_statements_summary_by_digest.frm and /dev/null 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 deleted file mode 100644 index 0caa8eacf..000000000 Binary files a/zbx_env/var/lib/mysql/performance_schema/events_statements_summary_by_host_by_event_name.frm and /dev/null 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 deleted file mode 100644 index 53a1aa192..000000000 Binary files a/zbx_env/var/lib/mysql/performance_schema/events_statements_summary_by_program.frm and /dev/null 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 deleted file mode 100644 index e3dc7000e..000000000 Binary files a/zbx_env/var/lib/mysql/performance_schema/events_statements_summary_by_thread_by_event_name.frm and /dev/null 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 deleted file mode 100644 index 2f15b9b31..000000000 Binary files a/zbx_env/var/lib/mysql/performance_schema/events_statements_summary_by_user_by_event_name.frm and /dev/null 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 deleted file mode 100644 index 5e0e3ef66..000000000 Binary files a/zbx_env/var/lib/mysql/performance_schema/events_statements_summary_global_by_event_name.frm and /dev/null 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 deleted file mode 100644 index 84c0e5da6..000000000 Binary files a/zbx_env/var/lib/mysql/performance_schema/events_transactions_current.frm and /dev/null 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 deleted file mode 100644 index 84c0e5da6..000000000 Binary files a/zbx_env/var/lib/mysql/performance_schema/events_transactions_history.frm and /dev/null 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 deleted file mode 100644 index 84c0e5da6..000000000 Binary files a/zbx_env/var/lib/mysql/performance_schema/events_transactions_history_long.frm and /dev/null 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 deleted file mode 100644 index c9eaf76c7..000000000 Binary files a/zbx_env/var/lib/mysql/performance_schema/events_transactions_summary_by_account_by_event_name.frm and /dev/null 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 deleted file mode 100644 index d15d7e0dd..000000000 Binary files a/zbx_env/var/lib/mysql/performance_schema/events_transactions_summary_by_host_by_event_name.frm and /dev/null 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 deleted file mode 100644 index 77836308c..000000000 Binary files a/zbx_env/var/lib/mysql/performance_schema/events_transactions_summary_by_thread_by_event_name.frm and /dev/null 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 deleted file mode 100644 index 383637ec9..000000000 Binary files a/zbx_env/var/lib/mysql/performance_schema/events_transactions_summary_by_user_by_event_name.frm and /dev/null 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 deleted file mode 100644 index 573bd23a2..000000000 Binary files a/zbx_env/var/lib/mysql/performance_schema/events_transactions_summary_global_by_event_name.frm and /dev/null 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 deleted file mode 100644 index cd6f43dbe..000000000 Binary files a/zbx_env/var/lib/mysql/performance_schema/events_waits_current.frm and /dev/null 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 deleted file mode 100644 index cd6f43dbe..000000000 Binary files a/zbx_env/var/lib/mysql/performance_schema/events_waits_history.frm and /dev/null 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 deleted file mode 100644 index cd6f43dbe..000000000 Binary files a/zbx_env/var/lib/mysql/performance_schema/events_waits_history_long.frm and /dev/null 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 deleted file mode 100644 index 8eb89874b..000000000 Binary files a/zbx_env/var/lib/mysql/performance_schema/events_waits_summary_by_account_by_event_name.frm and /dev/null 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 deleted file mode 100644 index e2aceca07..000000000 Binary files a/zbx_env/var/lib/mysql/performance_schema/events_waits_summary_by_host_by_event_name.frm and /dev/null 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 deleted file mode 100644 index f75021cbc..000000000 Binary files a/zbx_env/var/lib/mysql/performance_schema/events_waits_summary_by_instance.frm and /dev/null 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 deleted file mode 100644 index fc6e9b848..000000000 Binary files a/zbx_env/var/lib/mysql/performance_schema/events_waits_summary_by_thread_by_event_name.frm and /dev/null 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 deleted file mode 100644 index 4557abf99..000000000 Binary files a/zbx_env/var/lib/mysql/performance_schema/events_waits_summary_by_user_by_event_name.frm and /dev/null 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 deleted file mode 100644 index 4590b336d..000000000 Binary files a/zbx_env/var/lib/mysql/performance_schema/events_waits_summary_global_by_event_name.frm and /dev/null 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 deleted file mode 100644 index 4a9c5b849..000000000 Binary files a/zbx_env/var/lib/mysql/performance_schema/file_instances.frm and /dev/null 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 deleted file mode 100644 index ca62527bc..000000000 Binary files a/zbx_env/var/lib/mysql/performance_schema/file_summary_by_event_name.frm and /dev/null 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 deleted file mode 100644 index 8dd32bd1e..000000000 Binary files a/zbx_env/var/lib/mysql/performance_schema/file_summary_by_instance.frm and /dev/null 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 deleted file mode 100644 index d79108310..000000000 Binary files a/zbx_env/var/lib/mysql/performance_schema/global_status.frm and /dev/null 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 deleted file mode 100644 index d79108310..000000000 Binary files a/zbx_env/var/lib/mysql/performance_schema/global_variables.frm and /dev/null 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 deleted file mode 100644 index 5b23adba1..000000000 Binary files a/zbx_env/var/lib/mysql/performance_schema/host_cache.frm and /dev/null differ diff --git a/zbx_env/var/lib/mysql/performance_schema/hosts.frm b/zbx_env/var/lib/mysql/performance_schema/hosts.frm deleted file mode 100644 index 5b626d79c..000000000 Binary files a/zbx_env/var/lib/mysql/performance_schema/hosts.frm and /dev/null 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 deleted file mode 100644 index 5add1935b..000000000 Binary files a/zbx_env/var/lib/mysql/performance_schema/memory_summary_by_account_by_event_name.frm and /dev/null 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 deleted file mode 100644 index 7b4ed4987..000000000 Binary files a/zbx_env/var/lib/mysql/performance_schema/memory_summary_by_host_by_event_name.frm and /dev/null 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 deleted file mode 100644 index 1b6a5acbf..000000000 Binary files a/zbx_env/var/lib/mysql/performance_schema/memory_summary_by_thread_by_event_name.frm and /dev/null 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 deleted file mode 100644 index be066479a..000000000 Binary files a/zbx_env/var/lib/mysql/performance_schema/memory_summary_by_user_by_event_name.frm and /dev/null 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 deleted file mode 100644 index fb6b5a290..000000000 Binary files a/zbx_env/var/lib/mysql/performance_schema/memory_summary_global_by_event_name.frm and /dev/null 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 deleted file mode 100644 index 21931ab4e..000000000 Binary files a/zbx_env/var/lib/mysql/performance_schema/metadata_locks.frm and /dev/null 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 deleted file mode 100644 index 0e0d6a6c1..000000000 Binary files a/zbx_env/var/lib/mysql/performance_schema/mutex_instances.frm and /dev/null 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 deleted file mode 100644 index 5534e4921..000000000 Binary files a/zbx_env/var/lib/mysql/performance_schema/objects_summary_global_by_type.frm and /dev/null 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 deleted file mode 100644 index 4808b2940..000000000 Binary files a/zbx_env/var/lib/mysql/performance_schema/performance_timers.frm and /dev/null 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 deleted file mode 100644 index 1ae11ca9a..000000000 Binary files a/zbx_env/var/lib/mysql/performance_schema/prepared_statements_instances.frm and /dev/null 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 deleted file mode 100644 index 95e85eb9c..000000000 Binary files a/zbx_env/var/lib/mysql/performance_schema/replication_applier_configuration.frm and /dev/null 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 deleted file mode 100644 index 0596b33ec..000000000 Binary files a/zbx_env/var/lib/mysql/performance_schema/replication_applier_status.frm and /dev/null 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 deleted file mode 100644 index a7b5e4b32..000000000 Binary files a/zbx_env/var/lib/mysql/performance_schema/replication_applier_status_by_coordinator.frm and /dev/null 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 deleted file mode 100644 index 874102d44..000000000 Binary files a/zbx_env/var/lib/mysql/performance_schema/replication_applier_status_by_worker.frm and /dev/null 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 deleted file mode 100644 index b1a729f23..000000000 Binary files a/zbx_env/var/lib/mysql/performance_schema/replication_connection_configuration.frm and /dev/null 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 deleted file mode 100644 index e63cbdd40..000000000 Binary files a/zbx_env/var/lib/mysql/performance_schema/replication_connection_status.frm and /dev/null 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 deleted file mode 100644 index 3870ba4a5..000000000 Binary files a/zbx_env/var/lib/mysql/performance_schema/replication_group_member_stats.frm and /dev/null 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 deleted file mode 100644 index 9f3cdb4ae..000000000 Binary files a/zbx_env/var/lib/mysql/performance_schema/replication_group_members.frm and /dev/null 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 deleted file mode 100644 index 5d1abda99..000000000 Binary files a/zbx_env/var/lib/mysql/performance_schema/rwlock_instances.frm and /dev/null 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 deleted file mode 100644 index 63a00e56a..000000000 Binary files a/zbx_env/var/lib/mysql/performance_schema/session_account_connect_attrs.frm and /dev/null 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 deleted file mode 100644 index 0d72020c0..000000000 Binary files a/zbx_env/var/lib/mysql/performance_schema/session_connect_attrs.frm and /dev/null 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 deleted file mode 100644 index d79108310..000000000 Binary files a/zbx_env/var/lib/mysql/performance_schema/session_status.frm and /dev/null 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 deleted file mode 100644 index d79108310..000000000 Binary files a/zbx_env/var/lib/mysql/performance_schema/session_variables.frm and /dev/null 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 deleted file mode 100644 index dbb9d5053..000000000 Binary files a/zbx_env/var/lib/mysql/performance_schema/setup_actors.frm and /dev/null 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 deleted file mode 100644 index 3b2ce2b74..000000000 Binary files a/zbx_env/var/lib/mysql/performance_schema/setup_consumers.frm and /dev/null 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 deleted file mode 100644 index 7c846d8ca..000000000 Binary files a/zbx_env/var/lib/mysql/performance_schema/setup_instruments.frm and /dev/null 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 deleted file mode 100644 index 0de1b28d1..000000000 Binary files a/zbx_env/var/lib/mysql/performance_schema/setup_objects.frm and /dev/null 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 deleted file mode 100644 index 6212b5c4f..000000000 Binary files a/zbx_env/var/lib/mysql/performance_schema/setup_timers.frm and /dev/null 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 deleted file mode 100644 index eecdad3cf..000000000 Binary files a/zbx_env/var/lib/mysql/performance_schema/socket_instances.frm and /dev/null 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 deleted file mode 100644 index d0ad49ad1..000000000 Binary files a/zbx_env/var/lib/mysql/performance_schema/socket_summary_by_event_name.frm and /dev/null 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 deleted file mode 100644 index 260d39c84..000000000 Binary files a/zbx_env/var/lib/mysql/performance_schema/socket_summary_by_instance.frm and /dev/null 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 deleted file mode 100644 index 145bcce7f..000000000 Binary files a/zbx_env/var/lib/mysql/performance_schema/status_by_account.frm and /dev/null 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 deleted file mode 100644 index 5104b752c..000000000 Binary files a/zbx_env/var/lib/mysql/performance_schema/status_by_host.frm and /dev/null 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 deleted file mode 100644 index 797caa229..000000000 Binary files a/zbx_env/var/lib/mysql/performance_schema/status_by_thread.frm and /dev/null 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 deleted file mode 100644 index c043c0883..000000000 Binary files a/zbx_env/var/lib/mysql/performance_schema/status_by_user.frm and /dev/null 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 deleted file mode 100644 index e9471b2f8..000000000 Binary files a/zbx_env/var/lib/mysql/performance_schema/table_handles.frm and /dev/null 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 deleted file mode 100644 index eb3ba8e7b..000000000 Binary files a/zbx_env/var/lib/mysql/performance_schema/table_io_waits_summary_by_index_usage.frm and /dev/null 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 deleted file mode 100644 index 17d32cd60..000000000 Binary files a/zbx_env/var/lib/mysql/performance_schema/table_io_waits_summary_by_table.frm and /dev/null 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 deleted file mode 100644 index 54e329bc8..000000000 Binary files a/zbx_env/var/lib/mysql/performance_schema/table_lock_waits_summary_by_table.frm and /dev/null differ diff --git a/zbx_env/var/lib/mysql/performance_schema/threads.frm b/zbx_env/var/lib/mysql/performance_schema/threads.frm deleted file mode 100644 index 7ecda9d25..000000000 Binary files a/zbx_env/var/lib/mysql/performance_schema/threads.frm and /dev/null 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 deleted file mode 100644 index ee3b96130..000000000 Binary files a/zbx_env/var/lib/mysql/performance_schema/user_variables_by_thread.frm and /dev/null differ diff --git a/zbx_env/var/lib/mysql/performance_schema/users.frm b/zbx_env/var/lib/mysql/performance_schema/users.frm deleted file mode 100644 index d35041bf4..000000000 Binary files a/zbx_env/var/lib/mysql/performance_schema/users.frm and /dev/null 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 deleted file mode 100644 index 797caa229..000000000 Binary files a/zbx_env/var/lib/mysql/performance_schema/variables_by_thread.frm and /dev/null differ diff --git a/zbx_env/var/lib/mysql/private_key.pem b/zbx_env/var/lib/mysql/private_key.pem deleted file mode 100644 index 34e5a28c9..000000000 --- a/zbx_env/var/lib/mysql/private_key.pem +++ /dev/null @@ -1,27 +0,0 @@ ------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 deleted file mode 100644 index 22bb8a741..000000000 --- a/zbx_env/var/lib/mysql/public_key.pem +++ /dev/null @@ -1,9 +0,0 @@ ------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 deleted file mode 100644 index a10776e8a..000000000 --- a/zbx_env/var/lib/mysql/server-cert.pem +++ /dev/null @@ -1,19 +0,0 @@ ------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 deleted file mode 100644 index f5bf8d740..000000000 --- a/zbx_env/var/lib/mysql/server-key.pem +++ /dev/null @@ -1,27 +0,0 @@ ------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 deleted file mode 100644 index 4ed6015f9..000000000 --- a/zbx_env/var/lib/mysql/sys/db.opt +++ /dev/null @@ -1,2 +0,0 @@ -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 deleted file mode 100644 index 62c818aa5..000000000 --- a/zbx_env/var/lib/mysql/sys/host_summary.frm +++ /dev/null @@ -1,15 +0,0 @@ -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 deleted file mode 100644 index b287c10f6..000000000 --- a/zbx_env/var/lib/mysql/sys/host_summary_by_file_io.frm +++ /dev/null @@ -1,15 +0,0 @@ -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 deleted file mode 100644 index 87f8597f7..000000000 --- a/zbx_env/var/lib/mysql/sys/host_summary_by_file_io_type.frm +++ /dev/null @@ -1,15 +0,0 @@ -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 deleted file mode 100644 index b056e34b4..000000000 --- a/zbx_env/var/lib/mysql/sys/host_summary_by_stages.frm +++ /dev/null @@ -1,15 +0,0 @@ -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 deleted file mode 100644 index 80f0c5468..000000000 --- a/zbx_env/var/lib/mysql/sys/host_summary_by_statement_latency.frm +++ /dev/null @@ -1,15 +0,0 @@ -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 deleted file mode 100644 index 952c43fb9..000000000 --- a/zbx_env/var/lib/mysql/sys/host_summary_by_statement_type.frm +++ /dev/null @@ -1,15 +0,0 @@ -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 deleted file mode 100644 index b58c109a0..000000000 --- a/zbx_env/var/lib/mysql/sys/innodb_buffer_stats_by_schema.frm +++ /dev/null @@ -1,15 +0,0 @@ -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 deleted file mode 100644 index 536e1fa74..000000000 --- a/zbx_env/var/lib/mysql/sys/innodb_buffer_stats_by_table.frm +++ /dev/null @@ -1,15 +0,0 @@ -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 deleted file mode 100644 index f4c736d73..000000000 --- a/zbx_env/var/lib/mysql/sys/innodb_lock_waits.frm +++ /dev/null @@ -1,15 +0,0 @@ -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 deleted file mode 100644 index c41471175..000000000 --- a/zbx_env/var/lib/mysql/sys/io_by_thread_by_latency.frm +++ /dev/null @@ -1,15 +0,0 @@ -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 deleted file mode 100644 index f720f7730..000000000 --- a/zbx_env/var/lib/mysql/sys/io_global_by_file_by_bytes.frm +++ /dev/null @@ -1,15 +0,0 @@ -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 deleted file mode 100644 index 4f97293db..000000000 --- a/zbx_env/var/lib/mysql/sys/io_global_by_file_by_latency.frm +++ /dev/null @@ -1,15 +0,0 @@ -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 deleted file mode 100644 index 5def1e8ea..000000000 --- a/zbx_env/var/lib/mysql/sys/io_global_by_wait_by_bytes.frm +++ /dev/null @@ -1,15 +0,0 @@ -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 deleted file mode 100644 index f99ca50ea..000000000 --- a/zbx_env/var/lib/mysql/sys/io_global_by_wait_by_latency.frm +++ /dev/null @@ -1,15 +0,0 @@ -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 deleted file mode 100644 index 82bd676cf..000000000 --- a/zbx_env/var/lib/mysql/sys/latest_file_io.frm +++ /dev/null @@ -1,15 +0,0 @@ -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 deleted file mode 100644 index eac5dad59..000000000 --- a/zbx_env/var/lib/mysql/sys/memory_by_host_by_current_bytes.frm +++ /dev/null @@ -1,15 +0,0 @@ -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 deleted file mode 100644 index ab0797f12..000000000 --- a/zbx_env/var/lib/mysql/sys/memory_by_thread_by_current_bytes.frm +++ /dev/null @@ -1,15 +0,0 @@ -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 deleted file mode 100644 index 1bac8323d..000000000 --- a/zbx_env/var/lib/mysql/sys/memory_by_user_by_current_bytes.frm +++ /dev/null @@ -1,15 +0,0 @@ -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 deleted file mode 100644 index 593155601..000000000 --- a/zbx_env/var/lib/mysql/sys/memory_global_by_current_bytes.frm +++ /dev/null @@ -1,15 +0,0 @@ -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 deleted file mode 100644 index 329d38220..000000000 --- a/zbx_env/var/lib/mysql/sys/memory_global_total.frm +++ /dev/null @@ -1,15 +0,0 @@ -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 deleted file mode 100644 index 30007904c..000000000 --- a/zbx_env/var/lib/mysql/sys/metrics.frm +++ /dev/null @@ -1,15 +0,0 @@ -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 deleted file mode 100644 index 0deb0a193..000000000 --- a/zbx_env/var/lib/mysql/sys/processlist.frm +++ /dev/null @@ -1,15 +0,0 @@ -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 deleted file mode 100644 index 92960a014..000000000 --- a/zbx_env/var/lib/mysql/sys/ps_check_lost_instrumentation.frm +++ /dev/null @@ -1,15 +0,0 @@ -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 deleted file mode 100644 index 4f0a37ed6..000000000 --- a/zbx_env/var/lib/mysql/sys/schema_auto_increment_columns.frm +++ /dev/null @@ -1,15 +0,0 @@ -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 deleted file mode 100644 index 775eba371..000000000 --- a/zbx_env/var/lib/mysql/sys/schema_index_statistics.frm +++ /dev/null @@ -1,15 +0,0 @@ -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 deleted file mode 100644 index 0bd82b3d2..000000000 --- a/zbx_env/var/lib/mysql/sys/schema_object_overview.frm +++ /dev/null @@ -1,15 +0,0 @@ -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 deleted file mode 100644 index c129196c6..000000000 --- a/zbx_env/var/lib/mysql/sys/schema_redundant_indexes.frm +++ /dev/null @@ -1,15 +0,0 @@ -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 deleted file mode 100644 index 7b64c7fe9..000000000 --- a/zbx_env/var/lib/mysql/sys/schema_table_lock_waits.frm +++ /dev/null @@ -1,15 +0,0 @@ -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 deleted file mode 100644 index 818a5ea80..000000000 --- a/zbx_env/var/lib/mysql/sys/schema_table_statistics.frm +++ /dev/null @@ -1,15 +0,0 @@ -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 deleted file mode 100644 index 93980150f..000000000 --- a/zbx_env/var/lib/mysql/sys/schema_table_statistics_with_buffer.frm +++ /dev/null @@ -1,15 +0,0 @@ -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 deleted file mode 100644 index 11150b11a..000000000 --- a/zbx_env/var/lib/mysql/sys/schema_tables_with_full_table_scans.frm +++ /dev/null @@ -1,15 +0,0 @@ -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 deleted file mode 100644 index ecb60d58c..000000000 --- a/zbx_env/var/lib/mysql/sys/schema_unused_indexes.frm +++ /dev/null @@ -1,15 +0,0 @@ -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 deleted file mode 100644 index c07b5172f..000000000 --- a/zbx_env/var/lib/mysql/sys/session.frm +++ /dev/null @@ -1,15 +0,0 @@ -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 deleted file mode 100644 index bca907f81..000000000 --- a/zbx_env/var/lib/mysql/sys/session_ssl_status.frm +++ /dev/null @@ -1,15 +0,0 @@ -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 deleted file mode 100644 index f25704c52..000000000 --- a/zbx_env/var/lib/mysql/sys/statement_analysis.frm +++ /dev/null @@ -1,15 +0,0 @@ -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 deleted file mode 100644 index 282dfc7c4..000000000 --- a/zbx_env/var/lib/mysql/sys/statements_with_errors_or_warnings.frm +++ /dev/null @@ -1,15 +0,0 @@ -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 deleted file mode 100644 index aecbbd38f..000000000 --- a/zbx_env/var/lib/mysql/sys/statements_with_full_table_scans.frm +++ /dev/null @@ -1,15 +0,0 @@ -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 deleted file mode 100644 index aba14fccc..000000000 --- a/zbx_env/var/lib/mysql/sys/statements_with_runtimes_in_95th_percentile.frm +++ /dev/null @@ -1,15 +0,0 @@ -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 deleted file mode 100644 index 10570807e..000000000 --- a/zbx_env/var/lib/mysql/sys/statements_with_sorting.frm +++ /dev/null @@ -1,15 +0,0 @@ -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 deleted file mode 100644 index ba1f27d37..000000000 --- a/zbx_env/var/lib/mysql/sys/statements_with_temp_tables.frm +++ /dev/null @@ -1,15 +0,0 @@ -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 deleted file mode 100644 index 4683346ef..000000000 --- a/zbx_env/var/lib/mysql/sys/sys_config.TRG +++ /dev/null @@ -1,8 +0,0 @@ -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 deleted file mode 100644 index 0e6244abc..000000000 Binary files a/zbx_env/var/lib/mysql/sys/sys_config.frm and /dev/null differ diff --git a/zbx_env/var/lib/mysql/sys/sys_config.ibd b/zbx_env/var/lib/mysql/sys/sys_config.ibd deleted file mode 100644 index a796eb8fc..000000000 Binary files a/zbx_env/var/lib/mysql/sys/sys_config.ibd and /dev/null 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 deleted file mode 100644 index 5f6be00fd..000000000 --- a/zbx_env/var/lib/mysql/sys/sys_config_insert_set_user.TRN +++ /dev/null @@ -1,2 +0,0 @@ -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 deleted file mode 100644 index 5f6be00fd..000000000 --- a/zbx_env/var/lib/mysql/sys/sys_config_update_set_user.TRN +++ /dev/null @@ -1,2 +0,0 @@ -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 deleted file mode 100644 index aa93553ab..000000000 --- a/zbx_env/var/lib/mysql/sys/user_summary.frm +++ /dev/null @@ -1,15 +0,0 @@ -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 deleted file mode 100644 index 5e8d83709..000000000 --- a/zbx_env/var/lib/mysql/sys/user_summary_by_file_io.frm +++ /dev/null @@ -1,15 +0,0 @@ -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 deleted file mode 100644 index 49f2b2334..000000000 --- a/zbx_env/var/lib/mysql/sys/user_summary_by_file_io_type.frm +++ /dev/null @@ -1,15 +0,0 @@ -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 deleted file mode 100644 index 62f01d4cb..000000000 --- a/zbx_env/var/lib/mysql/sys/user_summary_by_stages.frm +++ /dev/null @@ -1,15 +0,0 @@ -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 deleted file mode 100644 index 38df2b8e5..000000000 --- a/zbx_env/var/lib/mysql/sys/user_summary_by_statement_latency.frm +++ /dev/null @@ -1,15 +0,0 @@ -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 deleted file mode 100644 index 780d028f0..000000000 --- a/zbx_env/var/lib/mysql/sys/user_summary_by_statement_type.frm +++ /dev/null @@ -1,15 +0,0 @@ -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 deleted file mode 100644 index 026d1363c..000000000 --- a/zbx_env/var/lib/mysql/sys/version.frm +++ /dev/null @@ -1,15 +0,0 @@ -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 deleted file mode 100644 index 271208268..000000000 --- a/zbx_env/var/lib/mysql/sys/wait_classes_global_by_avg_latency.frm +++ /dev/null @@ -1,15 +0,0 @@ -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 deleted file mode 100644 index 017825691..000000000 --- a/zbx_env/var/lib/mysql/sys/wait_classes_global_by_latency.frm +++ /dev/null @@ -1,15 +0,0 @@ -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 deleted file mode 100644 index ac311803a..000000000 --- a/zbx_env/var/lib/mysql/sys/waits_by_host_by_latency.frm +++ /dev/null @@ -1,15 +0,0 @@ -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 deleted file mode 100644 index 914e79f57..000000000 --- a/zbx_env/var/lib/mysql/sys/waits_by_user_by_latency.frm +++ /dev/null @@ -1,15 +0,0 @@ -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 deleted file mode 100644 index f6396e4a2..000000000 --- a/zbx_env/var/lib/mysql/sys/waits_global_by_latency.frm +++ /dev/null @@ -1,15 +0,0 @@ -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 deleted file mode 100644 index 7931c677f..000000000 --- a/zbx_env/var/lib/mysql/sys/x@0024host_summary.frm +++ /dev/null @@ -1,15 +0,0 @@ -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 deleted file mode 100644 index 274d62432..000000000 --- a/zbx_env/var/lib/mysql/sys/x@0024host_summary_by_file_io.frm +++ /dev/null @@ -1,15 +0,0 @@ -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 deleted file mode 100644 index 71a6133a0..000000000 --- a/zbx_env/var/lib/mysql/sys/x@0024host_summary_by_file_io_type.frm +++ /dev/null @@ -1,15 +0,0 @@ -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 deleted file mode 100644 index 6671b8efa..000000000 --- a/zbx_env/var/lib/mysql/sys/x@0024host_summary_by_stages.frm +++ /dev/null @@ -1,15 +0,0 @@ -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 deleted file mode 100644 index bef43a0d7..000000000 --- a/zbx_env/var/lib/mysql/sys/x@0024host_summary_by_statement_latency.frm +++ /dev/null @@ -1,15 +0,0 @@ -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 deleted file mode 100644 index e76c4dcd9..000000000 --- a/zbx_env/var/lib/mysql/sys/x@0024host_summary_by_statement_type.frm +++ /dev/null @@ -1,15 +0,0 @@ -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 deleted file mode 100644 index 0beed245f..000000000 --- a/zbx_env/var/lib/mysql/sys/x@0024innodb_buffer_stats_by_schema.frm +++ /dev/null @@ -1,15 +0,0 @@ -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 deleted file mode 100644 index a6d0f4cf6..000000000 --- a/zbx_env/var/lib/mysql/sys/x@0024innodb_buffer_stats_by_table.frm +++ /dev/null @@ -1,15 +0,0 @@ -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 deleted file mode 100644 index 5216b70ac..000000000 --- a/zbx_env/var/lib/mysql/sys/x@0024innodb_lock_waits.frm +++ /dev/null @@ -1,15 +0,0 @@ -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 deleted file mode 100644 index 7d01f914a..000000000 --- a/zbx_env/var/lib/mysql/sys/x@0024io_by_thread_by_latency.frm +++ /dev/null @@ -1,15 +0,0 @@ -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 deleted file mode 100644 index 8c722629e..000000000 --- a/zbx_env/var/lib/mysql/sys/x@0024io_global_by_file_by_bytes.frm +++ /dev/null @@ -1,15 +0,0 @@ -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 deleted file mode 100644 index 98963866c..000000000 --- a/zbx_env/var/lib/mysql/sys/x@0024io_global_by_file_by_latency.frm +++ /dev/null @@ -1,15 +0,0 @@ -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 deleted file mode 100644 index 937c8af70..000000000 --- a/zbx_env/var/lib/mysql/sys/x@0024io_global_by_wait_by_bytes.frm +++ /dev/null @@ -1,15 +0,0 @@ -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 deleted file mode 100644 index 1cf550f07..000000000 --- a/zbx_env/var/lib/mysql/sys/x@0024io_global_by_wait_by_latency.frm +++ /dev/null @@ -1,15 +0,0 @@ -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 deleted file mode 100644 index 23399be71..000000000 --- a/zbx_env/var/lib/mysql/sys/x@0024latest_file_io.frm +++ /dev/null @@ -1,15 +0,0 @@ -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 deleted file mode 100644 index 453262d5e..000000000 --- a/zbx_env/var/lib/mysql/sys/x@0024memory_by_host_by_current_bytes.frm +++ /dev/null @@ -1,15 +0,0 @@ -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 deleted file mode 100644 index b75cb1985..000000000 --- a/zbx_env/var/lib/mysql/sys/x@0024memory_by_thread_by_current_bytes.frm +++ /dev/null @@ -1,15 +0,0 @@ -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 deleted file mode 100644 index 1d88062bd..000000000 --- a/zbx_env/var/lib/mysql/sys/x@0024memory_by_user_by_current_bytes.frm +++ /dev/null @@ -1,15 +0,0 @@ -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 deleted file mode 100644 index 18a8b1299..000000000 --- a/zbx_env/var/lib/mysql/sys/x@0024memory_global_by_current_bytes.frm +++ /dev/null @@ -1,15 +0,0 @@ -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 deleted file mode 100644 index dbda9ad22..000000000 --- a/zbx_env/var/lib/mysql/sys/x@0024memory_global_total.frm +++ /dev/null @@ -1,15 +0,0 @@ -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 deleted file mode 100644 index 78ca25b75..000000000 --- a/zbx_env/var/lib/mysql/sys/x@0024processlist.frm +++ /dev/null @@ -1,15 +0,0 @@ -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 deleted file mode 100644 index a8bf921a0..000000000 --- a/zbx_env/var/lib/mysql/sys/x@0024ps_digest_95th_percentile_by_avg_us.frm +++ /dev/null @@ -1,15 +0,0 @@ -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 deleted file mode 100644 index 16531b3e5..000000000 --- a/zbx_env/var/lib/mysql/sys/x@0024ps_digest_avg_latency_distribution.frm +++ /dev/null @@ -1,15 +0,0 @@ -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 deleted file mode 100644 index edf88a4c5..000000000 --- a/zbx_env/var/lib/mysql/sys/x@0024ps_schema_table_statistics_io.frm +++ /dev/null @@ -1,15 +0,0 @@ -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 deleted file mode 100644 index 2b256bdff..000000000 --- a/zbx_env/var/lib/mysql/sys/x@0024schema_flattened_keys.frm +++ /dev/null @@ -1,15 +0,0 @@ -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 deleted file mode 100644 index c138237de..000000000 --- a/zbx_env/var/lib/mysql/sys/x@0024schema_index_statistics.frm +++ /dev/null @@ -1,15 +0,0 @@ -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 deleted file mode 100644 index 9f0f62189..000000000 --- a/zbx_env/var/lib/mysql/sys/x@0024schema_table_lock_waits.frm +++ /dev/null @@ -1,15 +0,0 @@ -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 deleted file mode 100644 index a9f5cb226..000000000 --- a/zbx_env/var/lib/mysql/sys/x@0024schema_table_statistics.frm +++ /dev/null @@ -1,15 +0,0 @@ -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 deleted file mode 100644 index c6de0427a..000000000 --- a/zbx_env/var/lib/mysql/sys/x@0024schema_table_statistics_with_buffer.frm +++ /dev/null @@ -1,15 +0,0 @@ -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 deleted file mode 100644 index f899ce72d..000000000 --- a/zbx_env/var/lib/mysql/sys/x@0024schema_tables_with_full_table_scans.frm +++ /dev/null @@ -1,15 +0,0 @@ -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 deleted file mode 100644 index e743a0001..000000000 --- a/zbx_env/var/lib/mysql/sys/x@0024session.frm +++ /dev/null @@ -1,15 +0,0 @@ -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 deleted file mode 100644 index 15071f5bf..000000000 --- a/zbx_env/var/lib/mysql/sys/x@0024statement_analysis.frm +++ /dev/null @@ -1,15 +0,0 @@ -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 deleted file mode 100644 index f669c231c..000000000 --- a/zbx_env/var/lib/mysql/sys/x@0024statements_with_errors_or_warnings.frm +++ /dev/null @@ -1,15 +0,0 @@ -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 deleted file mode 100644 index 872601430..000000000 --- a/zbx_env/var/lib/mysql/sys/x@0024statements_with_full_table_scans.frm +++ /dev/null @@ -1,15 +0,0 @@ -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 deleted file mode 100644 index ad9ea8781..000000000 --- a/zbx_env/var/lib/mysql/sys/x@0024statements_with_runtimes_in_95th_percentile.frm +++ /dev/null @@ -1,15 +0,0 @@ -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 deleted file mode 100644 index 1890ceae5..000000000 --- a/zbx_env/var/lib/mysql/sys/x@0024statements_with_sorting.frm +++ /dev/null @@ -1,15 +0,0 @@ -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 deleted file mode 100644 index cd05c49f5..000000000 --- a/zbx_env/var/lib/mysql/sys/x@0024statements_with_temp_tables.frm +++ /dev/null @@ -1,15 +0,0 @@ -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 deleted file mode 100644 index f7ca57e3c..000000000 --- a/zbx_env/var/lib/mysql/sys/x@0024user_summary.frm +++ /dev/null @@ -1,15 +0,0 @@ -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 deleted file mode 100644 index 6fadc27de..000000000 --- a/zbx_env/var/lib/mysql/sys/x@0024user_summary_by_file_io.frm +++ /dev/null @@ -1,15 +0,0 @@ -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 deleted file mode 100644 index 4c82a9961..000000000 --- a/zbx_env/var/lib/mysql/sys/x@0024user_summary_by_file_io_type.frm +++ /dev/null @@ -1,15 +0,0 @@ -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 deleted file mode 100644 index b4fef0a02..000000000 --- a/zbx_env/var/lib/mysql/sys/x@0024user_summary_by_stages.frm +++ /dev/null @@ -1,15 +0,0 @@ -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 deleted file mode 100644 index cbedd5a3c..000000000 --- a/zbx_env/var/lib/mysql/sys/x@0024user_summary_by_statement_latency.frm +++ /dev/null @@ -1,15 +0,0 @@ -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 deleted file mode 100644 index 8347d8b86..000000000 --- a/zbx_env/var/lib/mysql/sys/x@0024user_summary_by_statement_type.frm +++ /dev/null @@ -1,15 +0,0 @@ -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 deleted file mode 100644 index d3ee5bff8..000000000 --- a/zbx_env/var/lib/mysql/sys/x@0024wait_classes_global_by_avg_latency.frm +++ /dev/null @@ -1,15 +0,0 @@ -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 deleted file mode 100644 index 4a5cd5cc0..000000000 --- a/zbx_env/var/lib/mysql/sys/x@0024wait_classes_global_by_latency.frm +++ /dev/null @@ -1,15 +0,0 @@ -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 deleted file mode 100644 index e1abf0e0d..000000000 --- a/zbx_env/var/lib/mysql/sys/x@0024waits_by_host_by_latency.frm +++ /dev/null @@ -1,15 +0,0 @@ -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 deleted file mode 100644 index 4b3505f81..000000000 --- a/zbx_env/var/lib/mysql/sys/x@0024waits_by_user_by_latency.frm +++ /dev/null @@ -1,15 +0,0 @@ -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 deleted file mode 100644 index b112e5938..000000000 --- a/zbx_env/var/lib/mysql/sys/x@0024waits_global_by_latency.frm +++ /dev/null @@ -1,15 +0,0 @@ -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 deleted file mode 100644 index c5b8e135a..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix/acknowledges.frm and /dev/null differ diff --git a/zbx_env/var/lib/mysql/zabbix/acknowledges.ibd b/zbx_env/var/lib/mysql/zabbix/acknowledges.ibd deleted file mode 100644 index 24e3f0434..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix/acknowledges.ibd and /dev/null differ diff --git a/zbx_env/var/lib/mysql/zabbix/actions.frm b/zbx_env/var/lib/mysql/zabbix/actions.frm deleted file mode 100644 index a142836db..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix/actions.frm and /dev/null differ diff --git a/zbx_env/var/lib/mysql/zabbix/actions.ibd b/zbx_env/var/lib/mysql/zabbix/actions.ibd deleted file mode 100644 index 4f9e3e4a3..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix/actions.ibd and /dev/null differ diff --git a/zbx_env/var/lib/mysql/zabbix/alerts.frm b/zbx_env/var/lib/mysql/zabbix/alerts.frm deleted file mode 100644 index 4b7a6d4e8..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix/alerts.frm and /dev/null differ diff --git a/zbx_env/var/lib/mysql/zabbix/alerts.ibd b/zbx_env/var/lib/mysql/zabbix/alerts.ibd deleted file mode 100644 index ccc3bb63f..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix/alerts.ibd and /dev/null differ diff --git a/zbx_env/var/lib/mysql/zabbix/application_discovery.frm b/zbx_env/var/lib/mysql/zabbix/application_discovery.frm deleted file mode 100644 index 8119fb87d..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix/application_discovery.frm and /dev/null differ diff --git a/zbx_env/var/lib/mysql/zabbix/application_discovery.ibd b/zbx_env/var/lib/mysql/zabbix/application_discovery.ibd deleted file mode 100644 index 6a26851c2..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix/application_discovery.ibd and /dev/null differ diff --git a/zbx_env/var/lib/mysql/zabbix/application_prototype.frm b/zbx_env/var/lib/mysql/zabbix/application_prototype.frm deleted file mode 100644 index 7aaa6120d..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix/application_prototype.frm and /dev/null differ diff --git a/zbx_env/var/lib/mysql/zabbix/application_prototype.ibd b/zbx_env/var/lib/mysql/zabbix/application_prototype.ibd deleted file mode 100644 index 72dc50e5a..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix/application_prototype.ibd and /dev/null differ diff --git a/zbx_env/var/lib/mysql/zabbix/application_template.frm b/zbx_env/var/lib/mysql/zabbix/application_template.frm deleted file mode 100644 index 522fb09aa..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix/application_template.frm and /dev/null differ diff --git a/zbx_env/var/lib/mysql/zabbix/application_template.ibd b/zbx_env/var/lib/mysql/zabbix/application_template.ibd deleted file mode 100644 index 0caba1bc4..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix/application_template.ibd and /dev/null differ diff --git a/zbx_env/var/lib/mysql/zabbix/applications.frm b/zbx_env/var/lib/mysql/zabbix/applications.frm deleted file mode 100644 index 5d3b6f6d8..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix/applications.frm and /dev/null differ diff --git a/zbx_env/var/lib/mysql/zabbix/applications.ibd b/zbx_env/var/lib/mysql/zabbix/applications.ibd deleted file mode 100644 index 5602cf946..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix/applications.ibd and /dev/null differ diff --git a/zbx_env/var/lib/mysql/zabbix/auditlog.frm b/zbx_env/var/lib/mysql/zabbix/auditlog.frm deleted file mode 100644 index 57401b52d..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix/auditlog.frm and /dev/null differ diff --git a/zbx_env/var/lib/mysql/zabbix/auditlog.ibd b/zbx_env/var/lib/mysql/zabbix/auditlog.ibd deleted file mode 100644 index 595cfc2a1..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix/auditlog.ibd and /dev/null differ diff --git a/zbx_env/var/lib/mysql/zabbix/auditlog_details.frm b/zbx_env/var/lib/mysql/zabbix/auditlog_details.frm deleted file mode 100644 index bc7fe4340..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix/auditlog_details.frm and /dev/null differ diff --git a/zbx_env/var/lib/mysql/zabbix/auditlog_details.ibd b/zbx_env/var/lib/mysql/zabbix/auditlog_details.ibd deleted file mode 100644 index a744a9fa6..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix/auditlog_details.ibd and /dev/null differ diff --git a/zbx_env/var/lib/mysql/zabbix/autoreg_host.frm b/zbx_env/var/lib/mysql/zabbix/autoreg_host.frm deleted file mode 100644 index 26284c058..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix/autoreg_host.frm and /dev/null differ diff --git a/zbx_env/var/lib/mysql/zabbix/autoreg_host.ibd b/zbx_env/var/lib/mysql/zabbix/autoreg_host.ibd deleted file mode 100644 index d2af3caed..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix/autoreg_host.ibd and /dev/null differ diff --git a/zbx_env/var/lib/mysql/zabbix/conditions.frm b/zbx_env/var/lib/mysql/zabbix/conditions.frm deleted file mode 100644 index 7a65cea80..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix/conditions.frm and /dev/null differ diff --git a/zbx_env/var/lib/mysql/zabbix/conditions.ibd b/zbx_env/var/lib/mysql/zabbix/conditions.ibd deleted file mode 100644 index 828fd18b1..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix/conditions.ibd and /dev/null differ diff --git a/zbx_env/var/lib/mysql/zabbix/config.frm b/zbx_env/var/lib/mysql/zabbix/config.frm deleted file mode 100644 index e36fce231..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix/config.frm and /dev/null differ diff --git a/zbx_env/var/lib/mysql/zabbix/config.ibd b/zbx_env/var/lib/mysql/zabbix/config.ibd deleted file mode 100644 index 606cae359..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix/config.ibd and /dev/null differ diff --git a/zbx_env/var/lib/mysql/zabbix/corr_condition.frm b/zbx_env/var/lib/mysql/zabbix/corr_condition.frm deleted file mode 100644 index 09fc24a25..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix/corr_condition.frm and /dev/null differ diff --git a/zbx_env/var/lib/mysql/zabbix/corr_condition.ibd b/zbx_env/var/lib/mysql/zabbix/corr_condition.ibd deleted file mode 100644 index fde48e968..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix/corr_condition.ibd and /dev/null 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 deleted file mode 100644 index c4ad95846..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix/corr_condition_group.frm and /dev/null 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 deleted file mode 100644 index ff140d124..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix/corr_condition_group.ibd and /dev/null 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 deleted file mode 100644 index e1f537fa5..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix/corr_condition_tag.frm and /dev/null 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 deleted file mode 100644 index b3818ed1f..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix/corr_condition_tag.ibd and /dev/null 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 deleted file mode 100644 index ff6e1572d..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix/corr_condition_tagpair.frm and /dev/null 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 deleted file mode 100644 index 5dad1f443..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix/corr_condition_tagpair.ibd and /dev/null 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 deleted file mode 100644 index 50cf41843..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix/corr_condition_tagvalue.frm and /dev/null 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 deleted file mode 100644 index 46ea22697..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix/corr_condition_tagvalue.ibd and /dev/null differ diff --git a/zbx_env/var/lib/mysql/zabbix/corr_operation.frm b/zbx_env/var/lib/mysql/zabbix/corr_operation.frm deleted file mode 100644 index 1fbee8077..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix/corr_operation.frm and /dev/null differ diff --git a/zbx_env/var/lib/mysql/zabbix/corr_operation.ibd b/zbx_env/var/lib/mysql/zabbix/corr_operation.ibd deleted file mode 100644 index fa91e6549..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix/corr_operation.ibd and /dev/null differ diff --git a/zbx_env/var/lib/mysql/zabbix/correlation.frm b/zbx_env/var/lib/mysql/zabbix/correlation.frm deleted file mode 100644 index 79a1fd3ea..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix/correlation.frm and /dev/null differ diff --git a/zbx_env/var/lib/mysql/zabbix/correlation.ibd b/zbx_env/var/lib/mysql/zabbix/correlation.ibd deleted file mode 100644 index 7e445090d..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix/correlation.ibd and /dev/null differ diff --git a/zbx_env/var/lib/mysql/zabbix/dashboard.frm b/zbx_env/var/lib/mysql/zabbix/dashboard.frm deleted file mode 100644 index 7976176ec..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix/dashboard.frm and /dev/null differ diff --git a/zbx_env/var/lib/mysql/zabbix/dashboard.ibd b/zbx_env/var/lib/mysql/zabbix/dashboard.ibd deleted file mode 100644 index 2ce0dec5d..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix/dashboard.ibd and /dev/null differ diff --git a/zbx_env/var/lib/mysql/zabbix/dashboard_user.frm b/zbx_env/var/lib/mysql/zabbix/dashboard_user.frm deleted file mode 100644 index ea19f07db..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix/dashboard_user.frm and /dev/null differ diff --git a/zbx_env/var/lib/mysql/zabbix/dashboard_user.ibd b/zbx_env/var/lib/mysql/zabbix/dashboard_user.ibd deleted file mode 100644 index d1e74137c..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix/dashboard_user.ibd and /dev/null differ diff --git a/zbx_env/var/lib/mysql/zabbix/dashboard_usrgrp.frm b/zbx_env/var/lib/mysql/zabbix/dashboard_usrgrp.frm deleted file mode 100644 index ae81309bc..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix/dashboard_usrgrp.frm and /dev/null differ diff --git a/zbx_env/var/lib/mysql/zabbix/dashboard_usrgrp.ibd b/zbx_env/var/lib/mysql/zabbix/dashboard_usrgrp.ibd deleted file mode 100644 index 8572f5b05..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix/dashboard_usrgrp.ibd and /dev/null differ diff --git a/zbx_env/var/lib/mysql/zabbix/db.opt b/zbx_env/var/lib/mysql/zabbix/db.opt deleted file mode 100644 index 16221b854..000000000 --- a/zbx_env/var/lib/mysql/zabbix/db.opt +++ /dev/null @@ -1,2 +0,0 @@ -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 deleted file mode 100644 index 1c10b5f1b..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix/dbversion.frm and /dev/null differ diff --git a/zbx_env/var/lib/mysql/zabbix/dbversion.ibd b/zbx_env/var/lib/mysql/zabbix/dbversion.ibd deleted file mode 100644 index d408596bd..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix/dbversion.ibd and /dev/null differ diff --git a/zbx_env/var/lib/mysql/zabbix/dchecks.frm b/zbx_env/var/lib/mysql/zabbix/dchecks.frm deleted file mode 100644 index 2df0b492a..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix/dchecks.frm and /dev/null differ diff --git a/zbx_env/var/lib/mysql/zabbix/dchecks.ibd b/zbx_env/var/lib/mysql/zabbix/dchecks.ibd deleted file mode 100644 index b3a1ba95f..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix/dchecks.ibd and /dev/null differ diff --git a/zbx_env/var/lib/mysql/zabbix/dhosts.frm b/zbx_env/var/lib/mysql/zabbix/dhosts.frm deleted file mode 100644 index 597ad03f3..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix/dhosts.frm and /dev/null differ diff --git a/zbx_env/var/lib/mysql/zabbix/dhosts.ibd b/zbx_env/var/lib/mysql/zabbix/dhosts.ibd deleted file mode 100644 index 78c429ef6..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix/dhosts.ibd and /dev/null differ diff --git a/zbx_env/var/lib/mysql/zabbix/drules.frm b/zbx_env/var/lib/mysql/zabbix/drules.frm deleted file mode 100644 index 3b182c724..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix/drules.frm and /dev/null differ diff --git a/zbx_env/var/lib/mysql/zabbix/drules.ibd b/zbx_env/var/lib/mysql/zabbix/drules.ibd deleted file mode 100644 index cf0896a6c..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix/drules.ibd and /dev/null differ diff --git a/zbx_env/var/lib/mysql/zabbix/dservices.frm b/zbx_env/var/lib/mysql/zabbix/dservices.frm deleted file mode 100644 index d2d28adda..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix/dservices.frm and /dev/null differ diff --git a/zbx_env/var/lib/mysql/zabbix/dservices.ibd b/zbx_env/var/lib/mysql/zabbix/dservices.ibd deleted file mode 100644 index 2ae6d38d9..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix/dservices.ibd and /dev/null differ diff --git a/zbx_env/var/lib/mysql/zabbix/escalations.frm b/zbx_env/var/lib/mysql/zabbix/escalations.frm deleted file mode 100644 index d00891aa8..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix/escalations.frm and /dev/null differ diff --git a/zbx_env/var/lib/mysql/zabbix/escalations.ibd b/zbx_env/var/lib/mysql/zabbix/escalations.ibd deleted file mode 100644 index ae93d5156..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix/escalations.ibd and /dev/null differ diff --git a/zbx_env/var/lib/mysql/zabbix/event_recovery.frm b/zbx_env/var/lib/mysql/zabbix/event_recovery.frm deleted file mode 100644 index 41cac11b1..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix/event_recovery.frm and /dev/null differ diff --git a/zbx_env/var/lib/mysql/zabbix/event_recovery.ibd b/zbx_env/var/lib/mysql/zabbix/event_recovery.ibd deleted file mode 100644 index 2a67f4233..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix/event_recovery.ibd and /dev/null differ diff --git a/zbx_env/var/lib/mysql/zabbix/event_tag.frm b/zbx_env/var/lib/mysql/zabbix/event_tag.frm deleted file mode 100644 index b4baa866d..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix/event_tag.frm and /dev/null differ diff --git a/zbx_env/var/lib/mysql/zabbix/event_tag.ibd b/zbx_env/var/lib/mysql/zabbix/event_tag.ibd deleted file mode 100644 index b4c2b7312..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix/event_tag.ibd and /dev/null differ diff --git a/zbx_env/var/lib/mysql/zabbix/events.frm b/zbx_env/var/lib/mysql/zabbix/events.frm deleted file mode 100644 index 39fcecd26..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix/events.frm and /dev/null differ diff --git a/zbx_env/var/lib/mysql/zabbix/events.ibd b/zbx_env/var/lib/mysql/zabbix/events.ibd deleted file mode 100644 index ee3d24c64..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix/events.ibd and /dev/null differ diff --git a/zbx_env/var/lib/mysql/zabbix/expressions.frm b/zbx_env/var/lib/mysql/zabbix/expressions.frm deleted file mode 100644 index b57613b8a..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix/expressions.frm and /dev/null differ diff --git a/zbx_env/var/lib/mysql/zabbix/expressions.ibd b/zbx_env/var/lib/mysql/zabbix/expressions.ibd deleted file mode 100644 index b03a1c9ff..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix/expressions.ibd and /dev/null differ diff --git a/zbx_env/var/lib/mysql/zabbix/functions.frm b/zbx_env/var/lib/mysql/zabbix/functions.frm deleted file mode 100644 index 2e32cc9d3..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix/functions.frm and /dev/null differ diff --git a/zbx_env/var/lib/mysql/zabbix/functions.ibd b/zbx_env/var/lib/mysql/zabbix/functions.ibd deleted file mode 100644 index 84c447be8..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix/functions.ibd and /dev/null differ diff --git a/zbx_env/var/lib/mysql/zabbix/globalmacro.frm b/zbx_env/var/lib/mysql/zabbix/globalmacro.frm deleted file mode 100644 index 8e9d9a135..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix/globalmacro.frm and /dev/null differ diff --git a/zbx_env/var/lib/mysql/zabbix/globalmacro.ibd b/zbx_env/var/lib/mysql/zabbix/globalmacro.ibd deleted file mode 100644 index f23d3c550..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix/globalmacro.ibd and /dev/null differ diff --git a/zbx_env/var/lib/mysql/zabbix/globalvars.frm b/zbx_env/var/lib/mysql/zabbix/globalvars.frm deleted file mode 100644 index 2d0781c8a..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix/globalvars.frm and /dev/null differ diff --git a/zbx_env/var/lib/mysql/zabbix/globalvars.ibd b/zbx_env/var/lib/mysql/zabbix/globalvars.ibd deleted file mode 100644 index 626f6f289..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix/globalvars.ibd and /dev/null differ diff --git a/zbx_env/var/lib/mysql/zabbix/graph_discovery.frm b/zbx_env/var/lib/mysql/zabbix/graph_discovery.frm deleted file mode 100644 index b6da0fbd3..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix/graph_discovery.frm and /dev/null differ diff --git a/zbx_env/var/lib/mysql/zabbix/graph_discovery.ibd b/zbx_env/var/lib/mysql/zabbix/graph_discovery.ibd deleted file mode 100644 index 5c39c7ae7..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix/graph_discovery.ibd and /dev/null differ diff --git a/zbx_env/var/lib/mysql/zabbix/graph_theme.frm b/zbx_env/var/lib/mysql/zabbix/graph_theme.frm deleted file mode 100644 index d690d6c3e..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix/graph_theme.frm and /dev/null differ diff --git a/zbx_env/var/lib/mysql/zabbix/graph_theme.ibd b/zbx_env/var/lib/mysql/zabbix/graph_theme.ibd deleted file mode 100644 index 8a07a043a..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix/graph_theme.ibd and /dev/null differ diff --git a/zbx_env/var/lib/mysql/zabbix/graphs.frm b/zbx_env/var/lib/mysql/zabbix/graphs.frm deleted file mode 100644 index 22132fefb..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix/graphs.frm and /dev/null differ diff --git a/zbx_env/var/lib/mysql/zabbix/graphs.ibd b/zbx_env/var/lib/mysql/zabbix/graphs.ibd deleted file mode 100644 index 3a0f172b8..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix/graphs.ibd and /dev/null differ diff --git a/zbx_env/var/lib/mysql/zabbix/graphs_items.frm b/zbx_env/var/lib/mysql/zabbix/graphs_items.frm deleted file mode 100644 index 7ba123a9d..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix/graphs_items.frm and /dev/null differ diff --git a/zbx_env/var/lib/mysql/zabbix/graphs_items.ibd b/zbx_env/var/lib/mysql/zabbix/graphs_items.ibd deleted file mode 100644 index 1d9f902c9..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix/graphs_items.ibd and /dev/null differ diff --git a/zbx_env/var/lib/mysql/zabbix/group_discovery.frm b/zbx_env/var/lib/mysql/zabbix/group_discovery.frm deleted file mode 100644 index 195502ca4..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix/group_discovery.frm and /dev/null differ diff --git a/zbx_env/var/lib/mysql/zabbix/group_discovery.ibd b/zbx_env/var/lib/mysql/zabbix/group_discovery.ibd deleted file mode 100644 index 72cdc4eb3..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix/group_discovery.ibd and /dev/null differ diff --git a/zbx_env/var/lib/mysql/zabbix/group_prototype.frm b/zbx_env/var/lib/mysql/zabbix/group_prototype.frm deleted file mode 100644 index 2967441dc..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix/group_prototype.frm and /dev/null differ diff --git a/zbx_env/var/lib/mysql/zabbix/group_prototype.ibd b/zbx_env/var/lib/mysql/zabbix/group_prototype.ibd deleted file mode 100644 index b7347d3b9..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix/group_prototype.ibd and /dev/null differ diff --git a/zbx_env/var/lib/mysql/zabbix/groups.frm b/zbx_env/var/lib/mysql/zabbix/groups.frm deleted file mode 100644 index 80c0cb495..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix/groups.frm and /dev/null differ diff --git a/zbx_env/var/lib/mysql/zabbix/groups.ibd b/zbx_env/var/lib/mysql/zabbix/groups.ibd deleted file mode 100644 index c4fc27bc6..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix/groups.ibd and /dev/null differ diff --git a/zbx_env/var/lib/mysql/zabbix/history.frm b/zbx_env/var/lib/mysql/zabbix/history.frm deleted file mode 100644 index 534e43828..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix/history.frm and /dev/null differ diff --git a/zbx_env/var/lib/mysql/zabbix/history.ibd b/zbx_env/var/lib/mysql/zabbix/history.ibd deleted file mode 100644 index b6d19f666..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix/history.ibd and /dev/null differ diff --git a/zbx_env/var/lib/mysql/zabbix/history_log.frm b/zbx_env/var/lib/mysql/zabbix/history_log.frm deleted file mode 100644 index 2d53aaae2..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix/history_log.frm and /dev/null differ diff --git a/zbx_env/var/lib/mysql/zabbix/history_log.ibd b/zbx_env/var/lib/mysql/zabbix/history_log.ibd deleted file mode 100644 index 0f34aa209..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix/history_log.ibd and /dev/null differ diff --git a/zbx_env/var/lib/mysql/zabbix/history_str.frm b/zbx_env/var/lib/mysql/zabbix/history_str.frm deleted file mode 100644 index 5f8d8e771..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix/history_str.frm and /dev/null differ diff --git a/zbx_env/var/lib/mysql/zabbix/history_str.ibd b/zbx_env/var/lib/mysql/zabbix/history_str.ibd deleted file mode 100644 index cdbb9adc9..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix/history_str.ibd and /dev/null differ diff --git a/zbx_env/var/lib/mysql/zabbix/history_text.frm b/zbx_env/var/lib/mysql/zabbix/history_text.frm deleted file mode 100644 index 254fdf531..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix/history_text.frm and /dev/null differ diff --git a/zbx_env/var/lib/mysql/zabbix/history_text.ibd b/zbx_env/var/lib/mysql/zabbix/history_text.ibd deleted file mode 100644 index 797449b36..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix/history_text.ibd and /dev/null differ diff --git a/zbx_env/var/lib/mysql/zabbix/history_uint.frm b/zbx_env/var/lib/mysql/zabbix/history_uint.frm deleted file mode 100644 index 863d9bac6..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix/history_uint.frm and /dev/null differ diff --git a/zbx_env/var/lib/mysql/zabbix/history_uint.ibd b/zbx_env/var/lib/mysql/zabbix/history_uint.ibd deleted file mode 100644 index e03bd9cf6..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix/history_uint.ibd and /dev/null differ diff --git a/zbx_env/var/lib/mysql/zabbix/host_discovery.frm b/zbx_env/var/lib/mysql/zabbix/host_discovery.frm deleted file mode 100644 index eca892c47..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix/host_discovery.frm and /dev/null differ diff --git a/zbx_env/var/lib/mysql/zabbix/host_discovery.ibd b/zbx_env/var/lib/mysql/zabbix/host_discovery.ibd deleted file mode 100644 index ee519b856..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix/host_discovery.ibd and /dev/null differ diff --git a/zbx_env/var/lib/mysql/zabbix/host_inventory.frm b/zbx_env/var/lib/mysql/zabbix/host_inventory.frm deleted file mode 100644 index cda32745c..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix/host_inventory.frm and /dev/null differ diff --git a/zbx_env/var/lib/mysql/zabbix/host_inventory.ibd b/zbx_env/var/lib/mysql/zabbix/host_inventory.ibd deleted file mode 100644 index 0af19526a..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix/host_inventory.ibd and /dev/null differ diff --git a/zbx_env/var/lib/mysql/zabbix/hostmacro.frm b/zbx_env/var/lib/mysql/zabbix/hostmacro.frm deleted file mode 100644 index 57d203591..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix/hostmacro.frm and /dev/null differ diff --git a/zbx_env/var/lib/mysql/zabbix/hostmacro.ibd b/zbx_env/var/lib/mysql/zabbix/hostmacro.ibd deleted file mode 100644 index 99f0c17b5..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix/hostmacro.ibd and /dev/null differ diff --git a/zbx_env/var/lib/mysql/zabbix/hosts.frm b/zbx_env/var/lib/mysql/zabbix/hosts.frm deleted file mode 100644 index ec25fcf4e..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix/hosts.frm and /dev/null differ diff --git a/zbx_env/var/lib/mysql/zabbix/hosts.ibd b/zbx_env/var/lib/mysql/zabbix/hosts.ibd deleted file mode 100644 index 3f2dab5b3..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix/hosts.ibd and /dev/null differ diff --git a/zbx_env/var/lib/mysql/zabbix/hosts_groups.frm b/zbx_env/var/lib/mysql/zabbix/hosts_groups.frm deleted file mode 100644 index c228f2c10..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix/hosts_groups.frm and /dev/null differ diff --git a/zbx_env/var/lib/mysql/zabbix/hosts_groups.ibd b/zbx_env/var/lib/mysql/zabbix/hosts_groups.ibd deleted file mode 100644 index bd8238e41..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix/hosts_groups.ibd and /dev/null differ diff --git a/zbx_env/var/lib/mysql/zabbix/hosts_templates.frm b/zbx_env/var/lib/mysql/zabbix/hosts_templates.frm deleted file mode 100644 index 50882b739..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix/hosts_templates.frm and /dev/null differ diff --git a/zbx_env/var/lib/mysql/zabbix/hosts_templates.ibd b/zbx_env/var/lib/mysql/zabbix/hosts_templates.ibd deleted file mode 100644 index 55f7dbbef..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix/hosts_templates.ibd and /dev/null differ diff --git a/zbx_env/var/lib/mysql/zabbix/housekeeper.frm b/zbx_env/var/lib/mysql/zabbix/housekeeper.frm deleted file mode 100644 index 81b4ad785..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix/housekeeper.frm and /dev/null differ diff --git a/zbx_env/var/lib/mysql/zabbix/housekeeper.ibd b/zbx_env/var/lib/mysql/zabbix/housekeeper.ibd deleted file mode 100644 index 26ca1984c..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix/housekeeper.ibd and /dev/null differ diff --git a/zbx_env/var/lib/mysql/zabbix/httpstep.frm b/zbx_env/var/lib/mysql/zabbix/httpstep.frm deleted file mode 100644 index fa8844842..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix/httpstep.frm and /dev/null differ diff --git a/zbx_env/var/lib/mysql/zabbix/httpstep.ibd b/zbx_env/var/lib/mysql/zabbix/httpstep.ibd deleted file mode 100644 index 9c2715ed4..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix/httpstep.ibd and /dev/null differ diff --git a/zbx_env/var/lib/mysql/zabbix/httpstep_field.frm b/zbx_env/var/lib/mysql/zabbix/httpstep_field.frm deleted file mode 100644 index a65aa7c70..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix/httpstep_field.frm and /dev/null differ diff --git a/zbx_env/var/lib/mysql/zabbix/httpstep_field.ibd b/zbx_env/var/lib/mysql/zabbix/httpstep_field.ibd deleted file mode 100644 index ce3075ad9..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix/httpstep_field.ibd and /dev/null differ diff --git a/zbx_env/var/lib/mysql/zabbix/httpstepitem.frm b/zbx_env/var/lib/mysql/zabbix/httpstepitem.frm deleted file mode 100644 index 60778d500..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix/httpstepitem.frm and /dev/null differ diff --git a/zbx_env/var/lib/mysql/zabbix/httpstepitem.ibd b/zbx_env/var/lib/mysql/zabbix/httpstepitem.ibd deleted file mode 100644 index 0e6e49d35..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix/httpstepitem.ibd and /dev/null differ diff --git a/zbx_env/var/lib/mysql/zabbix/httptest.frm b/zbx_env/var/lib/mysql/zabbix/httptest.frm deleted file mode 100644 index 5b680daf5..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix/httptest.frm and /dev/null differ diff --git a/zbx_env/var/lib/mysql/zabbix/httptest.ibd b/zbx_env/var/lib/mysql/zabbix/httptest.ibd deleted file mode 100644 index b4f0b8528..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix/httptest.ibd and /dev/null differ diff --git a/zbx_env/var/lib/mysql/zabbix/httptest_field.frm b/zbx_env/var/lib/mysql/zabbix/httptest_field.frm deleted file mode 100644 index ca5a61a2c..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix/httptest_field.frm and /dev/null differ diff --git a/zbx_env/var/lib/mysql/zabbix/httptest_field.ibd b/zbx_env/var/lib/mysql/zabbix/httptest_field.ibd deleted file mode 100644 index ad38c1860..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix/httptest_field.ibd and /dev/null differ diff --git a/zbx_env/var/lib/mysql/zabbix/httptestitem.frm b/zbx_env/var/lib/mysql/zabbix/httptestitem.frm deleted file mode 100644 index f437b657c..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix/httptestitem.frm and /dev/null differ diff --git a/zbx_env/var/lib/mysql/zabbix/httptestitem.ibd b/zbx_env/var/lib/mysql/zabbix/httptestitem.ibd deleted file mode 100644 index 03c81ab80..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix/httptestitem.ibd and /dev/null differ diff --git a/zbx_env/var/lib/mysql/zabbix/icon_map.frm b/zbx_env/var/lib/mysql/zabbix/icon_map.frm deleted file mode 100644 index d7f8e2350..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix/icon_map.frm and /dev/null differ diff --git a/zbx_env/var/lib/mysql/zabbix/icon_map.ibd b/zbx_env/var/lib/mysql/zabbix/icon_map.ibd deleted file mode 100644 index 4cccba205..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix/icon_map.ibd and /dev/null differ diff --git a/zbx_env/var/lib/mysql/zabbix/icon_mapping.frm b/zbx_env/var/lib/mysql/zabbix/icon_mapping.frm deleted file mode 100644 index 41029fc46..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix/icon_mapping.frm and /dev/null differ diff --git a/zbx_env/var/lib/mysql/zabbix/icon_mapping.ibd b/zbx_env/var/lib/mysql/zabbix/icon_mapping.ibd deleted file mode 100644 index 946ed3e9c..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix/icon_mapping.ibd and /dev/null differ diff --git a/zbx_env/var/lib/mysql/zabbix/ids.frm b/zbx_env/var/lib/mysql/zabbix/ids.frm deleted file mode 100644 index ca0dda6c7..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix/ids.frm and /dev/null differ diff --git a/zbx_env/var/lib/mysql/zabbix/ids.ibd b/zbx_env/var/lib/mysql/zabbix/ids.ibd deleted file mode 100644 index 7c23719f9..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix/ids.ibd and /dev/null differ diff --git a/zbx_env/var/lib/mysql/zabbix/images.frm b/zbx_env/var/lib/mysql/zabbix/images.frm deleted file mode 100644 index 05d0bc5a2..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix/images.frm and /dev/null differ diff --git a/zbx_env/var/lib/mysql/zabbix/images.ibd b/zbx_env/var/lib/mysql/zabbix/images.ibd deleted file mode 100644 index 8532c81bd..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix/images.ibd and /dev/null differ diff --git a/zbx_env/var/lib/mysql/zabbix/interface.frm b/zbx_env/var/lib/mysql/zabbix/interface.frm deleted file mode 100644 index f7fa852f3..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix/interface.frm and /dev/null differ diff --git a/zbx_env/var/lib/mysql/zabbix/interface.ibd b/zbx_env/var/lib/mysql/zabbix/interface.ibd deleted file mode 100644 index acf6cc94d..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix/interface.ibd and /dev/null differ diff --git a/zbx_env/var/lib/mysql/zabbix/interface_discovery.frm b/zbx_env/var/lib/mysql/zabbix/interface_discovery.frm deleted file mode 100644 index 2b28473f4..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix/interface_discovery.frm and /dev/null differ diff --git a/zbx_env/var/lib/mysql/zabbix/interface_discovery.ibd b/zbx_env/var/lib/mysql/zabbix/interface_discovery.ibd deleted file mode 100644 index dc4e22740..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix/interface_discovery.ibd and /dev/null 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 deleted file mode 100644 index b7a40c466..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix/item_application_prototype.frm and /dev/null 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 deleted file mode 100644 index d49645489..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix/item_application_prototype.ibd and /dev/null differ diff --git a/zbx_env/var/lib/mysql/zabbix/item_condition.frm b/zbx_env/var/lib/mysql/zabbix/item_condition.frm deleted file mode 100644 index 2f8722750..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix/item_condition.frm and /dev/null differ diff --git a/zbx_env/var/lib/mysql/zabbix/item_condition.ibd b/zbx_env/var/lib/mysql/zabbix/item_condition.ibd deleted file mode 100644 index a831379bf..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix/item_condition.ibd and /dev/null differ diff --git a/zbx_env/var/lib/mysql/zabbix/item_discovery.frm b/zbx_env/var/lib/mysql/zabbix/item_discovery.frm deleted file mode 100644 index d23367005..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix/item_discovery.frm and /dev/null differ diff --git a/zbx_env/var/lib/mysql/zabbix/item_discovery.ibd b/zbx_env/var/lib/mysql/zabbix/item_discovery.ibd deleted file mode 100644 index de169cf22..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix/item_discovery.ibd and /dev/null differ diff --git a/zbx_env/var/lib/mysql/zabbix/item_preproc.frm b/zbx_env/var/lib/mysql/zabbix/item_preproc.frm deleted file mode 100644 index 04571a452..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix/item_preproc.frm and /dev/null differ diff --git a/zbx_env/var/lib/mysql/zabbix/item_preproc.ibd b/zbx_env/var/lib/mysql/zabbix/item_preproc.ibd deleted file mode 100644 index 2dd9c69dc..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix/item_preproc.ibd and /dev/null differ diff --git a/zbx_env/var/lib/mysql/zabbix/items.frm b/zbx_env/var/lib/mysql/zabbix/items.frm deleted file mode 100644 index ea0608687..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix/items.frm and /dev/null differ diff --git a/zbx_env/var/lib/mysql/zabbix/items.ibd b/zbx_env/var/lib/mysql/zabbix/items.ibd deleted file mode 100644 index c3d668ec0..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix/items.ibd and /dev/null differ diff --git a/zbx_env/var/lib/mysql/zabbix/items_applications.frm b/zbx_env/var/lib/mysql/zabbix/items_applications.frm deleted file mode 100644 index 4b6148ba0..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix/items_applications.frm and /dev/null differ diff --git a/zbx_env/var/lib/mysql/zabbix/items_applications.ibd b/zbx_env/var/lib/mysql/zabbix/items_applications.ibd deleted file mode 100644 index 58656d17c..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix/items_applications.ibd and /dev/null differ diff --git a/zbx_env/var/lib/mysql/zabbix/maintenances.frm b/zbx_env/var/lib/mysql/zabbix/maintenances.frm deleted file mode 100644 index 1135d58c9..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix/maintenances.frm and /dev/null differ diff --git a/zbx_env/var/lib/mysql/zabbix/maintenances.ibd b/zbx_env/var/lib/mysql/zabbix/maintenances.ibd deleted file mode 100644 index bd82f0d4b..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix/maintenances.ibd and /dev/null differ diff --git a/zbx_env/var/lib/mysql/zabbix/maintenances_groups.frm b/zbx_env/var/lib/mysql/zabbix/maintenances_groups.frm deleted file mode 100644 index 692016143..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix/maintenances_groups.frm and /dev/null differ diff --git a/zbx_env/var/lib/mysql/zabbix/maintenances_groups.ibd b/zbx_env/var/lib/mysql/zabbix/maintenances_groups.ibd deleted file mode 100644 index abacc2d16..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix/maintenances_groups.ibd and /dev/null differ diff --git a/zbx_env/var/lib/mysql/zabbix/maintenances_hosts.frm b/zbx_env/var/lib/mysql/zabbix/maintenances_hosts.frm deleted file mode 100644 index cbbdcd472..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix/maintenances_hosts.frm and /dev/null differ diff --git a/zbx_env/var/lib/mysql/zabbix/maintenances_hosts.ibd b/zbx_env/var/lib/mysql/zabbix/maintenances_hosts.ibd deleted file mode 100644 index 9ac4a311a..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix/maintenances_hosts.ibd and /dev/null differ diff --git a/zbx_env/var/lib/mysql/zabbix/maintenances_windows.frm b/zbx_env/var/lib/mysql/zabbix/maintenances_windows.frm deleted file mode 100644 index c59f2c441..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix/maintenances_windows.frm and /dev/null differ diff --git a/zbx_env/var/lib/mysql/zabbix/maintenances_windows.ibd b/zbx_env/var/lib/mysql/zabbix/maintenances_windows.ibd deleted file mode 100644 index 527afc613..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix/maintenances_windows.ibd and /dev/null differ diff --git a/zbx_env/var/lib/mysql/zabbix/mappings.frm b/zbx_env/var/lib/mysql/zabbix/mappings.frm deleted file mode 100644 index d844e77ca..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix/mappings.frm and /dev/null differ diff --git a/zbx_env/var/lib/mysql/zabbix/mappings.ibd b/zbx_env/var/lib/mysql/zabbix/mappings.ibd deleted file mode 100644 index 67be29d9c..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix/mappings.ibd and /dev/null differ diff --git a/zbx_env/var/lib/mysql/zabbix/media.frm b/zbx_env/var/lib/mysql/zabbix/media.frm deleted file mode 100644 index 5258f2055..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix/media.frm and /dev/null differ diff --git a/zbx_env/var/lib/mysql/zabbix/media.ibd b/zbx_env/var/lib/mysql/zabbix/media.ibd deleted file mode 100644 index 86cdb9a7c..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix/media.ibd and /dev/null differ diff --git a/zbx_env/var/lib/mysql/zabbix/media_type.frm b/zbx_env/var/lib/mysql/zabbix/media_type.frm deleted file mode 100644 index 22ef591e8..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix/media_type.frm and /dev/null differ diff --git a/zbx_env/var/lib/mysql/zabbix/media_type.ibd b/zbx_env/var/lib/mysql/zabbix/media_type.ibd deleted file mode 100644 index 834159a18..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix/media_type.ibd and /dev/null differ diff --git a/zbx_env/var/lib/mysql/zabbix/opcommand.frm b/zbx_env/var/lib/mysql/zabbix/opcommand.frm deleted file mode 100644 index 2d3baf6a5..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix/opcommand.frm and /dev/null differ diff --git a/zbx_env/var/lib/mysql/zabbix/opcommand.ibd b/zbx_env/var/lib/mysql/zabbix/opcommand.ibd deleted file mode 100644 index 4900aef1c..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix/opcommand.ibd and /dev/null differ diff --git a/zbx_env/var/lib/mysql/zabbix/opcommand_grp.frm b/zbx_env/var/lib/mysql/zabbix/opcommand_grp.frm deleted file mode 100644 index b9f0b8e62..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix/opcommand_grp.frm and /dev/null differ diff --git a/zbx_env/var/lib/mysql/zabbix/opcommand_grp.ibd b/zbx_env/var/lib/mysql/zabbix/opcommand_grp.ibd deleted file mode 100644 index c34db1ee9..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix/opcommand_grp.ibd and /dev/null differ diff --git a/zbx_env/var/lib/mysql/zabbix/opcommand_hst.frm b/zbx_env/var/lib/mysql/zabbix/opcommand_hst.frm deleted file mode 100644 index 78823dd9e..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix/opcommand_hst.frm and /dev/null differ diff --git a/zbx_env/var/lib/mysql/zabbix/opcommand_hst.ibd b/zbx_env/var/lib/mysql/zabbix/opcommand_hst.ibd deleted file mode 100644 index 8bc9732fe..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix/opcommand_hst.ibd and /dev/null differ diff --git a/zbx_env/var/lib/mysql/zabbix/opconditions.frm b/zbx_env/var/lib/mysql/zabbix/opconditions.frm deleted file mode 100644 index 0918d04bb..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix/opconditions.frm and /dev/null differ diff --git a/zbx_env/var/lib/mysql/zabbix/opconditions.ibd b/zbx_env/var/lib/mysql/zabbix/opconditions.ibd deleted file mode 100644 index 666581416..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix/opconditions.ibd and /dev/null differ diff --git a/zbx_env/var/lib/mysql/zabbix/operations.frm b/zbx_env/var/lib/mysql/zabbix/operations.frm deleted file mode 100644 index 756f03b53..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix/operations.frm and /dev/null differ diff --git a/zbx_env/var/lib/mysql/zabbix/operations.ibd b/zbx_env/var/lib/mysql/zabbix/operations.ibd deleted file mode 100644 index 998c4fa90..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix/operations.ibd and /dev/null differ diff --git a/zbx_env/var/lib/mysql/zabbix/opgroup.frm b/zbx_env/var/lib/mysql/zabbix/opgroup.frm deleted file mode 100644 index 1301eb59e..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix/opgroup.frm and /dev/null differ diff --git a/zbx_env/var/lib/mysql/zabbix/opgroup.ibd b/zbx_env/var/lib/mysql/zabbix/opgroup.ibd deleted file mode 100644 index 2bb9027d2..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix/opgroup.ibd and /dev/null differ diff --git a/zbx_env/var/lib/mysql/zabbix/opinventory.frm b/zbx_env/var/lib/mysql/zabbix/opinventory.frm deleted file mode 100644 index a94f06852..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix/opinventory.frm and /dev/null differ diff --git a/zbx_env/var/lib/mysql/zabbix/opinventory.ibd b/zbx_env/var/lib/mysql/zabbix/opinventory.ibd deleted file mode 100644 index eb1144cb6..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix/opinventory.ibd and /dev/null differ diff --git a/zbx_env/var/lib/mysql/zabbix/opmessage.frm b/zbx_env/var/lib/mysql/zabbix/opmessage.frm deleted file mode 100644 index 395e0b78e..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix/opmessage.frm and /dev/null differ diff --git a/zbx_env/var/lib/mysql/zabbix/opmessage.ibd b/zbx_env/var/lib/mysql/zabbix/opmessage.ibd deleted file mode 100644 index 832e2a393..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix/opmessage.ibd and /dev/null differ diff --git a/zbx_env/var/lib/mysql/zabbix/opmessage_grp.frm b/zbx_env/var/lib/mysql/zabbix/opmessage_grp.frm deleted file mode 100644 index f4e00d05e..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix/opmessage_grp.frm and /dev/null differ diff --git a/zbx_env/var/lib/mysql/zabbix/opmessage_grp.ibd b/zbx_env/var/lib/mysql/zabbix/opmessage_grp.ibd deleted file mode 100644 index 967d631bc..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix/opmessage_grp.ibd and /dev/null differ diff --git a/zbx_env/var/lib/mysql/zabbix/opmessage_usr.frm b/zbx_env/var/lib/mysql/zabbix/opmessage_usr.frm deleted file mode 100644 index 7431d847b..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix/opmessage_usr.frm and /dev/null differ diff --git a/zbx_env/var/lib/mysql/zabbix/opmessage_usr.ibd b/zbx_env/var/lib/mysql/zabbix/opmessage_usr.ibd deleted file mode 100644 index a19a150e7..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix/opmessage_usr.ibd and /dev/null differ diff --git a/zbx_env/var/lib/mysql/zabbix/optemplate.frm b/zbx_env/var/lib/mysql/zabbix/optemplate.frm deleted file mode 100644 index 46d852a44..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix/optemplate.frm and /dev/null differ diff --git a/zbx_env/var/lib/mysql/zabbix/optemplate.ibd b/zbx_env/var/lib/mysql/zabbix/optemplate.ibd deleted file mode 100644 index baa4a5ee1..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix/optemplate.ibd and /dev/null differ diff --git a/zbx_env/var/lib/mysql/zabbix/problem.frm b/zbx_env/var/lib/mysql/zabbix/problem.frm deleted file mode 100644 index 2aeea5ccd..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix/problem.frm and /dev/null differ diff --git a/zbx_env/var/lib/mysql/zabbix/problem.ibd b/zbx_env/var/lib/mysql/zabbix/problem.ibd deleted file mode 100644 index 0eefb8be2..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix/problem.ibd and /dev/null differ diff --git a/zbx_env/var/lib/mysql/zabbix/problem_tag.frm b/zbx_env/var/lib/mysql/zabbix/problem_tag.frm deleted file mode 100644 index 7b954e04b..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix/problem_tag.frm and /dev/null differ diff --git a/zbx_env/var/lib/mysql/zabbix/problem_tag.ibd b/zbx_env/var/lib/mysql/zabbix/problem_tag.ibd deleted file mode 100644 index 7645103d2..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix/problem_tag.ibd and /dev/null differ diff --git a/zbx_env/var/lib/mysql/zabbix/profiles.frm b/zbx_env/var/lib/mysql/zabbix/profiles.frm deleted file mode 100644 index dab2b5098..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix/profiles.frm and /dev/null differ diff --git a/zbx_env/var/lib/mysql/zabbix/profiles.ibd b/zbx_env/var/lib/mysql/zabbix/profiles.ibd deleted file mode 100644 index 31344649c..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix/profiles.ibd and /dev/null 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 deleted file mode 100644 index 75383a91f..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix/proxy_autoreg_host.frm and /dev/null 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 deleted file mode 100644 index a55ec068f..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix/proxy_autoreg_host.ibd and /dev/null differ diff --git a/zbx_env/var/lib/mysql/zabbix/proxy_dhistory.frm b/zbx_env/var/lib/mysql/zabbix/proxy_dhistory.frm deleted file mode 100644 index 882ed8457..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix/proxy_dhistory.frm and /dev/null differ diff --git a/zbx_env/var/lib/mysql/zabbix/proxy_dhistory.ibd b/zbx_env/var/lib/mysql/zabbix/proxy_dhistory.ibd deleted file mode 100644 index afef6dfad..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix/proxy_dhistory.ibd and /dev/null differ diff --git a/zbx_env/var/lib/mysql/zabbix/proxy_history.frm b/zbx_env/var/lib/mysql/zabbix/proxy_history.frm deleted file mode 100644 index 351a6bdb4..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix/proxy_history.frm and /dev/null differ diff --git a/zbx_env/var/lib/mysql/zabbix/proxy_history.ibd b/zbx_env/var/lib/mysql/zabbix/proxy_history.ibd deleted file mode 100644 index f5774ed9d..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix/proxy_history.ibd and /dev/null differ diff --git a/zbx_env/var/lib/mysql/zabbix/regexps.frm b/zbx_env/var/lib/mysql/zabbix/regexps.frm deleted file mode 100644 index 45ccfea8f..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix/regexps.frm and /dev/null differ diff --git a/zbx_env/var/lib/mysql/zabbix/regexps.ibd b/zbx_env/var/lib/mysql/zabbix/regexps.ibd deleted file mode 100644 index 84d5c4aa7..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix/regexps.ibd and /dev/null differ diff --git a/zbx_env/var/lib/mysql/zabbix/rights.frm b/zbx_env/var/lib/mysql/zabbix/rights.frm deleted file mode 100644 index 6859e8ca7..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix/rights.frm and /dev/null differ diff --git a/zbx_env/var/lib/mysql/zabbix/rights.ibd b/zbx_env/var/lib/mysql/zabbix/rights.ibd deleted file mode 100644 index a67e6d8a5..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix/rights.ibd and /dev/null differ diff --git a/zbx_env/var/lib/mysql/zabbix/screen_user.frm b/zbx_env/var/lib/mysql/zabbix/screen_user.frm deleted file mode 100644 index d66ae0053..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix/screen_user.frm and /dev/null differ diff --git a/zbx_env/var/lib/mysql/zabbix/screen_user.ibd b/zbx_env/var/lib/mysql/zabbix/screen_user.ibd deleted file mode 100644 index aa16bfa34..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix/screen_user.ibd and /dev/null differ diff --git a/zbx_env/var/lib/mysql/zabbix/screen_usrgrp.frm b/zbx_env/var/lib/mysql/zabbix/screen_usrgrp.frm deleted file mode 100644 index 0fb351b59..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix/screen_usrgrp.frm and /dev/null differ diff --git a/zbx_env/var/lib/mysql/zabbix/screen_usrgrp.ibd b/zbx_env/var/lib/mysql/zabbix/screen_usrgrp.ibd deleted file mode 100644 index b73d48ecd..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix/screen_usrgrp.ibd and /dev/null differ diff --git a/zbx_env/var/lib/mysql/zabbix/screens.frm b/zbx_env/var/lib/mysql/zabbix/screens.frm deleted file mode 100644 index cc3b03ac5..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix/screens.frm and /dev/null differ diff --git a/zbx_env/var/lib/mysql/zabbix/screens.ibd b/zbx_env/var/lib/mysql/zabbix/screens.ibd deleted file mode 100644 index 96173cb8d..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix/screens.ibd and /dev/null differ diff --git a/zbx_env/var/lib/mysql/zabbix/screens_items.frm b/zbx_env/var/lib/mysql/zabbix/screens_items.frm deleted file mode 100644 index 187a0a848..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix/screens_items.frm and /dev/null differ diff --git a/zbx_env/var/lib/mysql/zabbix/screens_items.ibd b/zbx_env/var/lib/mysql/zabbix/screens_items.ibd deleted file mode 100644 index 0ebff7b1e..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix/screens_items.ibd and /dev/null differ diff --git a/zbx_env/var/lib/mysql/zabbix/scripts.frm b/zbx_env/var/lib/mysql/zabbix/scripts.frm deleted file mode 100644 index fd1b91462..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix/scripts.frm and /dev/null differ diff --git a/zbx_env/var/lib/mysql/zabbix/scripts.ibd b/zbx_env/var/lib/mysql/zabbix/scripts.ibd deleted file mode 100644 index 4c13b183b..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix/scripts.ibd and /dev/null differ diff --git a/zbx_env/var/lib/mysql/zabbix/service_alarms.frm b/zbx_env/var/lib/mysql/zabbix/service_alarms.frm deleted file mode 100644 index f8df08d93..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix/service_alarms.frm and /dev/null differ diff --git a/zbx_env/var/lib/mysql/zabbix/service_alarms.ibd b/zbx_env/var/lib/mysql/zabbix/service_alarms.ibd deleted file mode 100644 index c631f11bf..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix/service_alarms.ibd and /dev/null differ diff --git a/zbx_env/var/lib/mysql/zabbix/services.frm b/zbx_env/var/lib/mysql/zabbix/services.frm deleted file mode 100644 index 3c1557f96..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix/services.frm and /dev/null differ diff --git a/zbx_env/var/lib/mysql/zabbix/services.ibd b/zbx_env/var/lib/mysql/zabbix/services.ibd deleted file mode 100644 index 8e33d8e97..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix/services.ibd and /dev/null differ diff --git a/zbx_env/var/lib/mysql/zabbix/services_links.frm b/zbx_env/var/lib/mysql/zabbix/services_links.frm deleted file mode 100644 index 545a5e11d..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix/services_links.frm and /dev/null differ diff --git a/zbx_env/var/lib/mysql/zabbix/services_links.ibd b/zbx_env/var/lib/mysql/zabbix/services_links.ibd deleted file mode 100644 index 91f3208b5..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix/services_links.ibd and /dev/null differ diff --git a/zbx_env/var/lib/mysql/zabbix/services_times.frm b/zbx_env/var/lib/mysql/zabbix/services_times.frm deleted file mode 100644 index ad95e20dd..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix/services_times.frm and /dev/null differ diff --git a/zbx_env/var/lib/mysql/zabbix/services_times.ibd b/zbx_env/var/lib/mysql/zabbix/services_times.ibd deleted file mode 100644 index 662052b3a..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix/services_times.ibd and /dev/null differ diff --git a/zbx_env/var/lib/mysql/zabbix/sessions.frm b/zbx_env/var/lib/mysql/zabbix/sessions.frm deleted file mode 100644 index 2b0ce84e8..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix/sessions.frm and /dev/null differ diff --git a/zbx_env/var/lib/mysql/zabbix/sessions.ibd b/zbx_env/var/lib/mysql/zabbix/sessions.ibd deleted file mode 100644 index 6a323aca7..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix/sessions.ibd and /dev/null differ diff --git a/zbx_env/var/lib/mysql/zabbix/slides.frm b/zbx_env/var/lib/mysql/zabbix/slides.frm deleted file mode 100644 index 8d4d92ae8..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix/slides.frm and /dev/null differ diff --git a/zbx_env/var/lib/mysql/zabbix/slides.ibd b/zbx_env/var/lib/mysql/zabbix/slides.ibd deleted file mode 100644 index 81f1121ac..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix/slides.ibd and /dev/null differ diff --git a/zbx_env/var/lib/mysql/zabbix/slideshow_user.frm b/zbx_env/var/lib/mysql/zabbix/slideshow_user.frm deleted file mode 100644 index e83471b22..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix/slideshow_user.frm and /dev/null differ diff --git a/zbx_env/var/lib/mysql/zabbix/slideshow_user.ibd b/zbx_env/var/lib/mysql/zabbix/slideshow_user.ibd deleted file mode 100644 index 6aab2f050..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix/slideshow_user.ibd and /dev/null differ diff --git a/zbx_env/var/lib/mysql/zabbix/slideshow_usrgrp.frm b/zbx_env/var/lib/mysql/zabbix/slideshow_usrgrp.frm deleted file mode 100644 index 2fabf1b54..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix/slideshow_usrgrp.frm and /dev/null differ diff --git a/zbx_env/var/lib/mysql/zabbix/slideshow_usrgrp.ibd b/zbx_env/var/lib/mysql/zabbix/slideshow_usrgrp.ibd deleted file mode 100644 index d0b8c39a9..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix/slideshow_usrgrp.ibd and /dev/null differ diff --git a/zbx_env/var/lib/mysql/zabbix/slideshows.frm b/zbx_env/var/lib/mysql/zabbix/slideshows.frm deleted file mode 100644 index 0c41ff127..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix/slideshows.frm and /dev/null differ diff --git a/zbx_env/var/lib/mysql/zabbix/slideshows.ibd b/zbx_env/var/lib/mysql/zabbix/slideshows.ibd deleted file mode 100644 index bbba95330..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix/slideshows.ibd and /dev/null 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 deleted file mode 100644 index 1746d9fc4..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix/sysmap_element_trigger.frm and /dev/null 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 deleted file mode 100644 index 0544946a7..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix/sysmap_element_trigger.ibd and /dev/null 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 deleted file mode 100644 index 13c5140e6..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix/sysmap_element_url.frm and /dev/null 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 deleted file mode 100644 index 949a11c3c..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix/sysmap_element_url.ibd and /dev/null differ diff --git a/zbx_env/var/lib/mysql/zabbix/sysmap_shape.frm b/zbx_env/var/lib/mysql/zabbix/sysmap_shape.frm deleted file mode 100644 index 131c38301..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix/sysmap_shape.frm and /dev/null differ diff --git a/zbx_env/var/lib/mysql/zabbix/sysmap_shape.ibd b/zbx_env/var/lib/mysql/zabbix/sysmap_shape.ibd deleted file mode 100644 index 00206ba12..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix/sysmap_shape.ibd and /dev/null differ diff --git a/zbx_env/var/lib/mysql/zabbix/sysmap_url.frm b/zbx_env/var/lib/mysql/zabbix/sysmap_url.frm deleted file mode 100644 index 5e8b1ee7a..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix/sysmap_url.frm and /dev/null differ diff --git a/zbx_env/var/lib/mysql/zabbix/sysmap_url.ibd b/zbx_env/var/lib/mysql/zabbix/sysmap_url.ibd deleted file mode 100644 index 15d41c8dc..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix/sysmap_url.ibd and /dev/null differ diff --git a/zbx_env/var/lib/mysql/zabbix/sysmap_user.frm b/zbx_env/var/lib/mysql/zabbix/sysmap_user.frm deleted file mode 100644 index cfc595c2a..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix/sysmap_user.frm and /dev/null differ diff --git a/zbx_env/var/lib/mysql/zabbix/sysmap_user.ibd b/zbx_env/var/lib/mysql/zabbix/sysmap_user.ibd deleted file mode 100644 index 90545b442..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix/sysmap_user.ibd and /dev/null differ diff --git a/zbx_env/var/lib/mysql/zabbix/sysmap_usrgrp.frm b/zbx_env/var/lib/mysql/zabbix/sysmap_usrgrp.frm deleted file mode 100644 index 00826c18b..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix/sysmap_usrgrp.frm and /dev/null differ diff --git a/zbx_env/var/lib/mysql/zabbix/sysmap_usrgrp.ibd b/zbx_env/var/lib/mysql/zabbix/sysmap_usrgrp.ibd deleted file mode 100644 index 2b26395f6..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix/sysmap_usrgrp.ibd and /dev/null differ diff --git a/zbx_env/var/lib/mysql/zabbix/sysmaps.frm b/zbx_env/var/lib/mysql/zabbix/sysmaps.frm deleted file mode 100644 index 9c36b3ecd..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix/sysmaps.frm and /dev/null differ diff --git a/zbx_env/var/lib/mysql/zabbix/sysmaps.ibd b/zbx_env/var/lib/mysql/zabbix/sysmaps.ibd deleted file mode 100644 index d3dda23d7..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix/sysmaps.ibd and /dev/null differ diff --git a/zbx_env/var/lib/mysql/zabbix/sysmaps_elements.frm b/zbx_env/var/lib/mysql/zabbix/sysmaps_elements.frm deleted file mode 100644 index b2686a1f3..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix/sysmaps_elements.frm and /dev/null differ diff --git a/zbx_env/var/lib/mysql/zabbix/sysmaps_elements.ibd b/zbx_env/var/lib/mysql/zabbix/sysmaps_elements.ibd deleted file mode 100644 index 2543c0b0a..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix/sysmaps_elements.ibd and /dev/null 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 deleted file mode 100644 index 905584921..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix/sysmaps_link_triggers.frm and /dev/null 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 deleted file mode 100644 index beb373b93..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix/sysmaps_link_triggers.ibd and /dev/null differ diff --git a/zbx_env/var/lib/mysql/zabbix/sysmaps_links.frm b/zbx_env/var/lib/mysql/zabbix/sysmaps_links.frm deleted file mode 100644 index 86aca93c4..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix/sysmaps_links.frm and /dev/null differ diff --git a/zbx_env/var/lib/mysql/zabbix/sysmaps_links.ibd b/zbx_env/var/lib/mysql/zabbix/sysmaps_links.ibd deleted file mode 100644 index 98a76f148..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix/sysmaps_links.ibd and /dev/null differ diff --git a/zbx_env/var/lib/mysql/zabbix/task.frm b/zbx_env/var/lib/mysql/zabbix/task.frm deleted file mode 100644 index 842ca3669..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix/task.frm and /dev/null differ diff --git a/zbx_env/var/lib/mysql/zabbix/task.ibd b/zbx_env/var/lib/mysql/zabbix/task.ibd deleted file mode 100644 index 600dceb56..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix/task.ibd and /dev/null differ diff --git a/zbx_env/var/lib/mysql/zabbix/task_acknowledge.frm b/zbx_env/var/lib/mysql/zabbix/task_acknowledge.frm deleted file mode 100644 index 74789a704..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix/task_acknowledge.frm and /dev/null differ diff --git a/zbx_env/var/lib/mysql/zabbix/task_acknowledge.ibd b/zbx_env/var/lib/mysql/zabbix/task_acknowledge.ibd deleted file mode 100644 index b6ab99555..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix/task_acknowledge.ibd and /dev/null 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 deleted file mode 100644 index 74789a704..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix/task_close_problem.frm and /dev/null 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 deleted file mode 100644 index 7d17037d5..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix/task_close_problem.ibd and /dev/null 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 deleted file mode 100644 index c8eb91b46..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix/task_remote_command.frm and /dev/null 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 deleted file mode 100644 index 900c66f24..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix/task_remote_command.ibd and /dev/null 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 deleted file mode 100644 index f0c91868c..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix/task_remote_command_result.frm and /dev/null 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 deleted file mode 100644 index c125d54b6..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix/task_remote_command_result.ibd and /dev/null differ diff --git a/zbx_env/var/lib/mysql/zabbix/timeperiods.frm b/zbx_env/var/lib/mysql/zabbix/timeperiods.frm deleted file mode 100644 index a1997196e..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix/timeperiods.frm and /dev/null differ diff --git a/zbx_env/var/lib/mysql/zabbix/timeperiods.ibd b/zbx_env/var/lib/mysql/zabbix/timeperiods.ibd deleted file mode 100644 index bf580112d..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix/timeperiods.ibd and /dev/null differ diff --git a/zbx_env/var/lib/mysql/zabbix/trends.frm b/zbx_env/var/lib/mysql/zabbix/trends.frm deleted file mode 100644 index 340bf5966..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix/trends.frm and /dev/null differ diff --git a/zbx_env/var/lib/mysql/zabbix/trends.ibd b/zbx_env/var/lib/mysql/zabbix/trends.ibd deleted file mode 100644 index e15bef3bc..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix/trends.ibd and /dev/null differ diff --git a/zbx_env/var/lib/mysql/zabbix/trends_uint.frm b/zbx_env/var/lib/mysql/zabbix/trends_uint.frm deleted file mode 100644 index e9755a5f5..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix/trends_uint.frm and /dev/null differ diff --git a/zbx_env/var/lib/mysql/zabbix/trends_uint.ibd b/zbx_env/var/lib/mysql/zabbix/trends_uint.ibd deleted file mode 100644 index 582703272..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix/trends_uint.ibd and /dev/null differ diff --git a/zbx_env/var/lib/mysql/zabbix/trigger_depends.frm b/zbx_env/var/lib/mysql/zabbix/trigger_depends.frm deleted file mode 100644 index 6eba7c509..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix/trigger_depends.frm and /dev/null differ diff --git a/zbx_env/var/lib/mysql/zabbix/trigger_depends.ibd b/zbx_env/var/lib/mysql/zabbix/trigger_depends.ibd deleted file mode 100644 index 2b7dc8729..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix/trigger_depends.ibd and /dev/null differ diff --git a/zbx_env/var/lib/mysql/zabbix/trigger_discovery.frm b/zbx_env/var/lib/mysql/zabbix/trigger_discovery.frm deleted file mode 100644 index 6308c846b..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix/trigger_discovery.frm and /dev/null differ diff --git a/zbx_env/var/lib/mysql/zabbix/trigger_discovery.ibd b/zbx_env/var/lib/mysql/zabbix/trigger_discovery.ibd deleted file mode 100644 index 0b0e75677..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix/trigger_discovery.ibd and /dev/null differ diff --git a/zbx_env/var/lib/mysql/zabbix/trigger_tag.frm b/zbx_env/var/lib/mysql/zabbix/trigger_tag.frm deleted file mode 100644 index 458d7e3a4..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix/trigger_tag.frm and /dev/null differ diff --git a/zbx_env/var/lib/mysql/zabbix/trigger_tag.ibd b/zbx_env/var/lib/mysql/zabbix/trigger_tag.ibd deleted file mode 100644 index 00a5c3f3d..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix/trigger_tag.ibd and /dev/null differ diff --git a/zbx_env/var/lib/mysql/zabbix/triggers.frm b/zbx_env/var/lib/mysql/zabbix/triggers.frm deleted file mode 100644 index 948860d2c..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix/triggers.frm and /dev/null differ diff --git a/zbx_env/var/lib/mysql/zabbix/triggers.ibd b/zbx_env/var/lib/mysql/zabbix/triggers.ibd deleted file mode 100644 index bdcc5174a..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix/triggers.ibd and /dev/null differ diff --git a/zbx_env/var/lib/mysql/zabbix/users.frm b/zbx_env/var/lib/mysql/zabbix/users.frm deleted file mode 100644 index e10628880..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix/users.frm and /dev/null differ diff --git a/zbx_env/var/lib/mysql/zabbix/users.ibd b/zbx_env/var/lib/mysql/zabbix/users.ibd deleted file mode 100644 index 5ec64fe1a..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix/users.ibd and /dev/null differ diff --git a/zbx_env/var/lib/mysql/zabbix/users_groups.frm b/zbx_env/var/lib/mysql/zabbix/users_groups.frm deleted file mode 100644 index 582b315f8..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix/users_groups.frm and /dev/null differ diff --git a/zbx_env/var/lib/mysql/zabbix/users_groups.ibd b/zbx_env/var/lib/mysql/zabbix/users_groups.ibd deleted file mode 100644 index ac972c763..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix/users_groups.ibd and /dev/null differ diff --git a/zbx_env/var/lib/mysql/zabbix/usrgrp.frm b/zbx_env/var/lib/mysql/zabbix/usrgrp.frm deleted file mode 100644 index 14593fb7c..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix/usrgrp.frm and /dev/null differ diff --git a/zbx_env/var/lib/mysql/zabbix/usrgrp.ibd b/zbx_env/var/lib/mysql/zabbix/usrgrp.ibd deleted file mode 100644 index 8decdd1d3..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix/usrgrp.ibd and /dev/null differ diff --git a/zbx_env/var/lib/mysql/zabbix/valuemaps.frm b/zbx_env/var/lib/mysql/zabbix/valuemaps.frm deleted file mode 100644 index e4be79379..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix/valuemaps.frm and /dev/null differ diff --git a/zbx_env/var/lib/mysql/zabbix/valuemaps.ibd b/zbx_env/var/lib/mysql/zabbix/valuemaps.ibd deleted file mode 100644 index 3da960c1e..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix/valuemaps.ibd and /dev/null differ diff --git a/zbx_env/var/lib/mysql/zabbix/widget.frm b/zbx_env/var/lib/mysql/zabbix/widget.frm deleted file mode 100644 index 4a3317548..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix/widget.frm and /dev/null differ diff --git a/zbx_env/var/lib/mysql/zabbix/widget.ibd b/zbx_env/var/lib/mysql/zabbix/widget.ibd deleted file mode 100644 index 4b245cc2f..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix/widget.ibd and /dev/null differ diff --git a/zbx_env/var/lib/mysql/zabbix/widget_field.frm b/zbx_env/var/lib/mysql/zabbix/widget_field.frm deleted file mode 100644 index a63d03cdf..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix/widget_field.frm and /dev/null differ diff --git a/zbx_env/var/lib/mysql/zabbix/widget_field.ibd b/zbx_env/var/lib/mysql/zabbix/widget_field.ibd deleted file mode 100644 index 17e1bb0fc..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix/widget_field.ibd and /dev/null differ diff --git a/zbx_env/var/lib/mysql/zabbix_proxy/acknowledges.frm b/zbx_env/var/lib/mysql/zabbix_proxy/acknowledges.frm deleted file mode 100644 index c5b8e135a..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix_proxy/acknowledges.frm and /dev/null differ diff --git a/zbx_env/var/lib/mysql/zabbix_proxy/acknowledges.ibd b/zbx_env/var/lib/mysql/zabbix_proxy/acknowledges.ibd deleted file mode 100644 index 4511fdb80..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix_proxy/acknowledges.ibd and /dev/null differ diff --git a/zbx_env/var/lib/mysql/zabbix_proxy/actions.frm b/zbx_env/var/lib/mysql/zabbix_proxy/actions.frm deleted file mode 100644 index a142836db..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix_proxy/actions.frm and /dev/null differ diff --git a/zbx_env/var/lib/mysql/zabbix_proxy/actions.ibd b/zbx_env/var/lib/mysql/zabbix_proxy/actions.ibd deleted file mode 100644 index 008b5be0b..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix_proxy/actions.ibd and /dev/null differ diff --git a/zbx_env/var/lib/mysql/zabbix_proxy/alerts.frm b/zbx_env/var/lib/mysql/zabbix_proxy/alerts.frm deleted file mode 100644 index 4b7a6d4e8..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix_proxy/alerts.frm and /dev/null differ diff --git a/zbx_env/var/lib/mysql/zabbix_proxy/alerts.ibd b/zbx_env/var/lib/mysql/zabbix_proxy/alerts.ibd deleted file mode 100644 index ae5e64e8b..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix_proxy/alerts.ibd and /dev/null 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 deleted file mode 100644 index 8119fb87d..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix_proxy/application_discovery.frm and /dev/null 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 deleted file mode 100644 index d26c324b0..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix_proxy/application_discovery.ibd and /dev/null 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 deleted file mode 100644 index 7aaa6120d..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix_proxy/application_prototype.frm and /dev/null 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 deleted file mode 100644 index 9c04429eb..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix_proxy/application_prototype.ibd and /dev/null 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 deleted file mode 100644 index 522fb09aa..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix_proxy/application_template.frm and /dev/null 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 deleted file mode 100644 index bffc17a74..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix_proxy/application_template.ibd and /dev/null differ diff --git a/zbx_env/var/lib/mysql/zabbix_proxy/applications.frm b/zbx_env/var/lib/mysql/zabbix_proxy/applications.frm deleted file mode 100644 index 5d3b6f6d8..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix_proxy/applications.frm and /dev/null differ diff --git a/zbx_env/var/lib/mysql/zabbix_proxy/applications.ibd b/zbx_env/var/lib/mysql/zabbix_proxy/applications.ibd deleted file mode 100644 index 234d2d978..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix_proxy/applications.ibd and /dev/null differ diff --git a/zbx_env/var/lib/mysql/zabbix_proxy/auditlog.frm b/zbx_env/var/lib/mysql/zabbix_proxy/auditlog.frm deleted file mode 100644 index 57401b52d..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix_proxy/auditlog.frm and /dev/null differ diff --git a/zbx_env/var/lib/mysql/zabbix_proxy/auditlog.ibd b/zbx_env/var/lib/mysql/zabbix_proxy/auditlog.ibd deleted file mode 100644 index 0fc922107..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix_proxy/auditlog.ibd and /dev/null 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 deleted file mode 100644 index bc7fe4340..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix_proxy/auditlog_details.frm and /dev/null 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 deleted file mode 100644 index adb6e2307..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix_proxy/auditlog_details.ibd and /dev/null 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 deleted file mode 100644 index 26284c058..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix_proxy/autoreg_host.frm and /dev/null 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 deleted file mode 100644 index e83df1bbe..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix_proxy/autoreg_host.ibd and /dev/null differ diff --git a/zbx_env/var/lib/mysql/zabbix_proxy/conditions.frm b/zbx_env/var/lib/mysql/zabbix_proxy/conditions.frm deleted file mode 100644 index 7a65cea80..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix_proxy/conditions.frm and /dev/null differ diff --git a/zbx_env/var/lib/mysql/zabbix_proxy/conditions.ibd b/zbx_env/var/lib/mysql/zabbix_proxy/conditions.ibd deleted file mode 100644 index f53b53214..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix_proxy/conditions.ibd and /dev/null differ diff --git a/zbx_env/var/lib/mysql/zabbix_proxy/config.frm b/zbx_env/var/lib/mysql/zabbix_proxy/config.frm deleted file mode 100644 index e36fce231..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix_proxy/config.frm and /dev/null differ diff --git a/zbx_env/var/lib/mysql/zabbix_proxy/config.ibd b/zbx_env/var/lib/mysql/zabbix_proxy/config.ibd deleted file mode 100644 index ba5774149..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix_proxy/config.ibd and /dev/null 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 deleted file mode 100644 index 09fc24a25..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix_proxy/corr_condition.frm and /dev/null 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 deleted file mode 100644 index 6be6586c8..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix_proxy/corr_condition.ibd and /dev/null 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 deleted file mode 100644 index c4ad95846..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix_proxy/corr_condition_group.frm and /dev/null 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 deleted file mode 100644 index 4fdb7c5a6..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix_proxy/corr_condition_group.ibd and /dev/null 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 deleted file mode 100644 index e1f537fa5..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix_proxy/corr_condition_tag.frm and /dev/null 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 deleted file mode 100644 index 3484c8ffd..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix_proxy/corr_condition_tag.ibd and /dev/null 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 deleted file mode 100644 index ff6e1572d..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix_proxy/corr_condition_tagpair.frm and /dev/null 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 deleted file mode 100644 index f0712d8dd..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix_proxy/corr_condition_tagpair.ibd and /dev/null 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 deleted file mode 100644 index 50cf41843..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix_proxy/corr_condition_tagvalue.frm and /dev/null 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 deleted file mode 100644 index 8268e5494..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix_proxy/corr_condition_tagvalue.ibd and /dev/null 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 deleted file mode 100644 index 1fbee8077..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix_proxy/corr_operation.frm and /dev/null 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 deleted file mode 100644 index 39ae271b4..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix_proxy/corr_operation.ibd and /dev/null differ diff --git a/zbx_env/var/lib/mysql/zabbix_proxy/correlation.frm b/zbx_env/var/lib/mysql/zabbix_proxy/correlation.frm deleted file mode 100644 index 79a1fd3ea..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix_proxy/correlation.frm and /dev/null differ diff --git a/zbx_env/var/lib/mysql/zabbix_proxy/correlation.ibd b/zbx_env/var/lib/mysql/zabbix_proxy/correlation.ibd deleted file mode 100644 index f8a454a41..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix_proxy/correlation.ibd and /dev/null differ diff --git a/zbx_env/var/lib/mysql/zabbix_proxy/dashboard.frm b/zbx_env/var/lib/mysql/zabbix_proxy/dashboard.frm deleted file mode 100644 index 7976176ec..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix_proxy/dashboard.frm and /dev/null differ diff --git a/zbx_env/var/lib/mysql/zabbix_proxy/dashboard.ibd b/zbx_env/var/lib/mysql/zabbix_proxy/dashboard.ibd deleted file mode 100644 index 190ffeac8..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix_proxy/dashboard.ibd and /dev/null 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 deleted file mode 100644 index ea19f07db..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix_proxy/dashboard_user.frm and /dev/null 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 deleted file mode 100644 index 8c36c4da1..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix_proxy/dashboard_user.ibd and /dev/null 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 deleted file mode 100644 index ae81309bc..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix_proxy/dashboard_usrgrp.frm and /dev/null 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 deleted file mode 100644 index e3c058772..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix_proxy/dashboard_usrgrp.ibd and /dev/null differ diff --git a/zbx_env/var/lib/mysql/zabbix_proxy/db.opt b/zbx_env/var/lib/mysql/zabbix_proxy/db.opt deleted file mode 100644 index 16221b854..000000000 --- a/zbx_env/var/lib/mysql/zabbix_proxy/db.opt +++ /dev/null @@ -1,2 +0,0 @@ -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 deleted file mode 100644 index 1c10b5f1b..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix_proxy/dbversion.frm and /dev/null differ diff --git a/zbx_env/var/lib/mysql/zabbix_proxy/dbversion.ibd b/zbx_env/var/lib/mysql/zabbix_proxy/dbversion.ibd deleted file mode 100644 index c19d612bd..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix_proxy/dbversion.ibd and /dev/null differ diff --git a/zbx_env/var/lib/mysql/zabbix_proxy/dchecks.frm b/zbx_env/var/lib/mysql/zabbix_proxy/dchecks.frm deleted file mode 100644 index 2df0b492a..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix_proxy/dchecks.frm and /dev/null differ diff --git a/zbx_env/var/lib/mysql/zabbix_proxy/dchecks.ibd b/zbx_env/var/lib/mysql/zabbix_proxy/dchecks.ibd deleted file mode 100644 index 43ad935b5..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix_proxy/dchecks.ibd and /dev/null differ diff --git a/zbx_env/var/lib/mysql/zabbix_proxy/dhosts.frm b/zbx_env/var/lib/mysql/zabbix_proxy/dhosts.frm deleted file mode 100644 index 597ad03f3..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix_proxy/dhosts.frm and /dev/null differ diff --git a/zbx_env/var/lib/mysql/zabbix_proxy/dhosts.ibd b/zbx_env/var/lib/mysql/zabbix_proxy/dhosts.ibd deleted file mode 100644 index aa1f44e56..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix_proxy/dhosts.ibd and /dev/null differ diff --git a/zbx_env/var/lib/mysql/zabbix_proxy/drules.frm b/zbx_env/var/lib/mysql/zabbix_proxy/drules.frm deleted file mode 100644 index 3b182c724..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix_proxy/drules.frm and /dev/null differ diff --git a/zbx_env/var/lib/mysql/zabbix_proxy/drules.ibd b/zbx_env/var/lib/mysql/zabbix_proxy/drules.ibd deleted file mode 100644 index c5fc62756..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix_proxy/drules.ibd and /dev/null differ diff --git a/zbx_env/var/lib/mysql/zabbix_proxy/dservices.frm b/zbx_env/var/lib/mysql/zabbix_proxy/dservices.frm deleted file mode 100644 index d2d28adda..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix_proxy/dservices.frm and /dev/null differ diff --git a/zbx_env/var/lib/mysql/zabbix_proxy/dservices.ibd b/zbx_env/var/lib/mysql/zabbix_proxy/dservices.ibd deleted file mode 100644 index 942716d86..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix_proxy/dservices.ibd and /dev/null differ diff --git a/zbx_env/var/lib/mysql/zabbix_proxy/escalations.frm b/zbx_env/var/lib/mysql/zabbix_proxy/escalations.frm deleted file mode 100644 index d00891aa8..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix_proxy/escalations.frm and /dev/null differ diff --git a/zbx_env/var/lib/mysql/zabbix_proxy/escalations.ibd b/zbx_env/var/lib/mysql/zabbix_proxy/escalations.ibd deleted file mode 100644 index 32e6616e3..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix_proxy/escalations.ibd and /dev/null 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 deleted file mode 100644 index 41cac11b1..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix_proxy/event_recovery.frm and /dev/null 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 deleted file mode 100644 index e4da4e4b9..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix_proxy/event_recovery.ibd and /dev/null 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 deleted file mode 100644 index b4baa866d..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix_proxy/event_tag.frm and /dev/null 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 deleted file mode 100644 index 048919adf..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix_proxy/event_tag.ibd and /dev/null differ diff --git a/zbx_env/var/lib/mysql/zabbix_proxy/events.frm b/zbx_env/var/lib/mysql/zabbix_proxy/events.frm deleted file mode 100644 index 39fcecd26..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix_proxy/events.frm and /dev/null differ diff --git a/zbx_env/var/lib/mysql/zabbix_proxy/events.ibd b/zbx_env/var/lib/mysql/zabbix_proxy/events.ibd deleted file mode 100644 index 96046f551..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix_proxy/events.ibd and /dev/null differ diff --git a/zbx_env/var/lib/mysql/zabbix_proxy/expressions.frm b/zbx_env/var/lib/mysql/zabbix_proxy/expressions.frm deleted file mode 100644 index b57613b8a..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix_proxy/expressions.frm and /dev/null differ diff --git a/zbx_env/var/lib/mysql/zabbix_proxy/expressions.ibd b/zbx_env/var/lib/mysql/zabbix_proxy/expressions.ibd deleted file mode 100644 index 8d8ee6f1b..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix_proxy/expressions.ibd and /dev/null differ diff --git a/zbx_env/var/lib/mysql/zabbix_proxy/functions.frm b/zbx_env/var/lib/mysql/zabbix_proxy/functions.frm deleted file mode 100644 index 2e32cc9d3..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix_proxy/functions.frm and /dev/null differ diff --git a/zbx_env/var/lib/mysql/zabbix_proxy/functions.ibd b/zbx_env/var/lib/mysql/zabbix_proxy/functions.ibd deleted file mode 100644 index d42279b90..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix_proxy/functions.ibd and /dev/null differ diff --git a/zbx_env/var/lib/mysql/zabbix_proxy/globalmacro.frm b/zbx_env/var/lib/mysql/zabbix_proxy/globalmacro.frm deleted file mode 100644 index 8e9d9a135..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix_proxy/globalmacro.frm and /dev/null differ diff --git a/zbx_env/var/lib/mysql/zabbix_proxy/globalmacro.ibd b/zbx_env/var/lib/mysql/zabbix_proxy/globalmacro.ibd deleted file mode 100644 index c0801f309..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix_proxy/globalmacro.ibd and /dev/null differ diff --git a/zbx_env/var/lib/mysql/zabbix_proxy/globalvars.frm b/zbx_env/var/lib/mysql/zabbix_proxy/globalvars.frm deleted file mode 100644 index 2d0781c8a..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix_proxy/globalvars.frm and /dev/null differ diff --git a/zbx_env/var/lib/mysql/zabbix_proxy/globalvars.ibd b/zbx_env/var/lib/mysql/zabbix_proxy/globalvars.ibd deleted file mode 100644 index 0ebfece26..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix_proxy/globalvars.ibd and /dev/null 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 deleted file mode 100644 index b6da0fbd3..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix_proxy/graph_discovery.frm and /dev/null 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 deleted file mode 100644 index e644ccbdc..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix_proxy/graph_discovery.ibd and /dev/null 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 deleted file mode 100644 index d690d6c3e..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix_proxy/graph_theme.frm and /dev/null 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 deleted file mode 100644 index 40134f41a..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix_proxy/graph_theme.ibd and /dev/null differ diff --git a/zbx_env/var/lib/mysql/zabbix_proxy/graphs.frm b/zbx_env/var/lib/mysql/zabbix_proxy/graphs.frm deleted file mode 100644 index 22132fefb..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix_proxy/graphs.frm and /dev/null differ diff --git a/zbx_env/var/lib/mysql/zabbix_proxy/graphs.ibd b/zbx_env/var/lib/mysql/zabbix_proxy/graphs.ibd deleted file mode 100644 index be3131deb..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix_proxy/graphs.ibd and /dev/null 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 deleted file mode 100644 index 7ba123a9d..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix_proxy/graphs_items.frm and /dev/null 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 deleted file mode 100644 index bcfd71f25..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix_proxy/graphs_items.ibd and /dev/null 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 deleted file mode 100644 index 195502ca4..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix_proxy/group_discovery.frm and /dev/null 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 deleted file mode 100644 index 090771ad7..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix_proxy/group_discovery.ibd and /dev/null 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 deleted file mode 100644 index 2967441dc..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix_proxy/group_prototype.frm and /dev/null 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 deleted file mode 100644 index 58a001f7b..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix_proxy/group_prototype.ibd and /dev/null differ diff --git a/zbx_env/var/lib/mysql/zabbix_proxy/groups.frm b/zbx_env/var/lib/mysql/zabbix_proxy/groups.frm deleted file mode 100644 index 80c0cb495..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix_proxy/groups.frm and /dev/null differ diff --git a/zbx_env/var/lib/mysql/zabbix_proxy/groups.ibd b/zbx_env/var/lib/mysql/zabbix_proxy/groups.ibd deleted file mode 100644 index 4d44f8df0..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix_proxy/groups.ibd and /dev/null differ diff --git a/zbx_env/var/lib/mysql/zabbix_proxy/history.frm b/zbx_env/var/lib/mysql/zabbix_proxy/history.frm deleted file mode 100644 index 534e43828..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix_proxy/history.frm and /dev/null differ diff --git a/zbx_env/var/lib/mysql/zabbix_proxy/history.ibd b/zbx_env/var/lib/mysql/zabbix_proxy/history.ibd deleted file mode 100644 index 255bee9e1..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix_proxy/history.ibd and /dev/null 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 deleted file mode 100644 index 2d53aaae2..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix_proxy/history_log.frm and /dev/null 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 deleted file mode 100644 index 7a1f036d2..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix_proxy/history_log.ibd and /dev/null 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 deleted file mode 100644 index 5f8d8e771..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix_proxy/history_str.frm and /dev/null 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 deleted file mode 100644 index b8439fb06..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix_proxy/history_str.ibd and /dev/null 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 deleted file mode 100644 index 254fdf531..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix_proxy/history_text.frm and /dev/null 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 deleted file mode 100644 index 2818942ed..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix_proxy/history_text.ibd and /dev/null 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 deleted file mode 100644 index 863d9bac6..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix_proxy/history_uint.frm and /dev/null 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 deleted file mode 100644 index 612a70bb7..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix_proxy/history_uint.ibd and /dev/null 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 deleted file mode 100644 index eca892c47..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix_proxy/host_discovery.frm and /dev/null 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 deleted file mode 100644 index 5813c6563..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix_proxy/host_discovery.ibd and /dev/null 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 deleted file mode 100644 index cda32745c..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix_proxy/host_inventory.frm and /dev/null 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 deleted file mode 100644 index 907e0168b..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix_proxy/host_inventory.ibd and /dev/null differ diff --git a/zbx_env/var/lib/mysql/zabbix_proxy/hostmacro.frm b/zbx_env/var/lib/mysql/zabbix_proxy/hostmacro.frm deleted file mode 100644 index 57d203591..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix_proxy/hostmacro.frm and /dev/null differ diff --git a/zbx_env/var/lib/mysql/zabbix_proxy/hostmacro.ibd b/zbx_env/var/lib/mysql/zabbix_proxy/hostmacro.ibd deleted file mode 100644 index 7be7aa214..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix_proxy/hostmacro.ibd and /dev/null differ diff --git a/zbx_env/var/lib/mysql/zabbix_proxy/hosts.frm b/zbx_env/var/lib/mysql/zabbix_proxy/hosts.frm deleted file mode 100644 index ec25fcf4e..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix_proxy/hosts.frm and /dev/null differ diff --git a/zbx_env/var/lib/mysql/zabbix_proxy/hosts.ibd b/zbx_env/var/lib/mysql/zabbix_proxy/hosts.ibd deleted file mode 100644 index 8e7204756..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix_proxy/hosts.ibd and /dev/null 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 deleted file mode 100644 index c228f2c10..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix_proxy/hosts_groups.frm and /dev/null 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 deleted file mode 100644 index be448cf59..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix_proxy/hosts_groups.ibd and /dev/null 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 deleted file mode 100644 index 50882b739..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix_proxy/hosts_templates.frm and /dev/null 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 deleted file mode 100644 index b814f5378..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix_proxy/hosts_templates.ibd and /dev/null differ diff --git a/zbx_env/var/lib/mysql/zabbix_proxy/housekeeper.frm b/zbx_env/var/lib/mysql/zabbix_proxy/housekeeper.frm deleted file mode 100644 index 81b4ad785..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix_proxy/housekeeper.frm and /dev/null differ diff --git a/zbx_env/var/lib/mysql/zabbix_proxy/housekeeper.ibd b/zbx_env/var/lib/mysql/zabbix_proxy/housekeeper.ibd deleted file mode 100644 index bbfae027c..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix_proxy/housekeeper.ibd and /dev/null differ diff --git a/zbx_env/var/lib/mysql/zabbix_proxy/httpstep.frm b/zbx_env/var/lib/mysql/zabbix_proxy/httpstep.frm deleted file mode 100644 index fa8844842..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix_proxy/httpstep.frm and /dev/null differ diff --git a/zbx_env/var/lib/mysql/zabbix_proxy/httpstep.ibd b/zbx_env/var/lib/mysql/zabbix_proxy/httpstep.ibd deleted file mode 100644 index ba0fd86eb..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix_proxy/httpstep.ibd and /dev/null 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 deleted file mode 100644 index a65aa7c70..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix_proxy/httpstep_field.frm and /dev/null 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 deleted file mode 100644 index 817ab1482..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix_proxy/httpstep_field.ibd and /dev/null differ diff --git a/zbx_env/var/lib/mysql/zabbix_proxy/httpstepitem.frm b/zbx_env/var/lib/mysql/zabbix_proxy/httpstepitem.frm deleted file mode 100644 index 60778d500..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix_proxy/httpstepitem.frm and /dev/null differ diff --git a/zbx_env/var/lib/mysql/zabbix_proxy/httpstepitem.ibd b/zbx_env/var/lib/mysql/zabbix_proxy/httpstepitem.ibd deleted file mode 100644 index 52d93f74a..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix_proxy/httpstepitem.ibd and /dev/null differ diff --git a/zbx_env/var/lib/mysql/zabbix_proxy/httptest.frm b/zbx_env/var/lib/mysql/zabbix_proxy/httptest.frm deleted file mode 100644 index 5b680daf5..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix_proxy/httptest.frm and /dev/null differ diff --git a/zbx_env/var/lib/mysql/zabbix_proxy/httptest.ibd b/zbx_env/var/lib/mysql/zabbix_proxy/httptest.ibd deleted file mode 100644 index c4a390af7..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix_proxy/httptest.ibd and /dev/null 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 deleted file mode 100644 index ca5a61a2c..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix_proxy/httptest_field.frm and /dev/null 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 deleted file mode 100644 index c952ac05f..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix_proxy/httptest_field.ibd and /dev/null differ diff --git a/zbx_env/var/lib/mysql/zabbix_proxy/httptestitem.frm b/zbx_env/var/lib/mysql/zabbix_proxy/httptestitem.frm deleted file mode 100644 index f437b657c..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix_proxy/httptestitem.frm and /dev/null differ diff --git a/zbx_env/var/lib/mysql/zabbix_proxy/httptestitem.ibd b/zbx_env/var/lib/mysql/zabbix_proxy/httptestitem.ibd deleted file mode 100644 index af262dea3..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix_proxy/httptestitem.ibd and /dev/null 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 deleted file mode 100644 index d7f8e2350..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix_proxy/icon_map.frm and /dev/null 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 deleted file mode 100644 index 80c374691..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix_proxy/icon_map.ibd and /dev/null 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 deleted file mode 100644 index 41029fc46..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix_proxy/icon_mapping.frm and /dev/null 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 deleted file mode 100644 index 01be81c1a..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix_proxy/icon_mapping.ibd and /dev/null differ diff --git a/zbx_env/var/lib/mysql/zabbix_proxy/ids.frm b/zbx_env/var/lib/mysql/zabbix_proxy/ids.frm deleted file mode 100644 index ca0dda6c7..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix_proxy/ids.frm and /dev/null differ diff --git a/zbx_env/var/lib/mysql/zabbix_proxy/ids.ibd b/zbx_env/var/lib/mysql/zabbix_proxy/ids.ibd deleted file mode 100644 index 78955b30b..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix_proxy/ids.ibd and /dev/null differ diff --git a/zbx_env/var/lib/mysql/zabbix_proxy/images.frm b/zbx_env/var/lib/mysql/zabbix_proxy/images.frm deleted file mode 100644 index 05d0bc5a2..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix_proxy/images.frm and /dev/null differ diff --git a/zbx_env/var/lib/mysql/zabbix_proxy/images.ibd b/zbx_env/var/lib/mysql/zabbix_proxy/images.ibd deleted file mode 100644 index 236a0b360..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix_proxy/images.ibd and /dev/null differ diff --git a/zbx_env/var/lib/mysql/zabbix_proxy/interface.frm b/zbx_env/var/lib/mysql/zabbix_proxy/interface.frm deleted file mode 100644 index f7fa852f3..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix_proxy/interface.frm and /dev/null differ diff --git a/zbx_env/var/lib/mysql/zabbix_proxy/interface.ibd b/zbx_env/var/lib/mysql/zabbix_proxy/interface.ibd deleted file mode 100644 index 3f706cb92..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix_proxy/interface.ibd and /dev/null 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 deleted file mode 100644 index 2b28473f4..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix_proxy/interface_discovery.frm and /dev/null 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 deleted file mode 100644 index 38643d1c2..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix_proxy/interface_discovery.ibd and /dev/null 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 deleted file mode 100644 index b7a40c466..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix_proxy/item_application_prototype.frm and /dev/null 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 deleted file mode 100644 index 3b8cbc5a9..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix_proxy/item_application_prototype.ibd and /dev/null 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 deleted file mode 100644 index 2f8722750..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix_proxy/item_condition.frm and /dev/null 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 deleted file mode 100644 index fd1702143..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix_proxy/item_condition.ibd and /dev/null 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 deleted file mode 100644 index d23367005..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix_proxy/item_discovery.frm and /dev/null 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 deleted file mode 100644 index e494558ce..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix_proxy/item_discovery.ibd and /dev/null 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 deleted file mode 100644 index 04571a452..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix_proxy/item_preproc.frm and /dev/null 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 deleted file mode 100644 index 17298274d..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix_proxy/item_preproc.ibd and /dev/null differ diff --git a/zbx_env/var/lib/mysql/zabbix_proxy/items.frm b/zbx_env/var/lib/mysql/zabbix_proxy/items.frm deleted file mode 100644 index ea0608687..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix_proxy/items.frm and /dev/null differ diff --git a/zbx_env/var/lib/mysql/zabbix_proxy/items.ibd b/zbx_env/var/lib/mysql/zabbix_proxy/items.ibd deleted file mode 100644 index 90cd1a088..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix_proxy/items.ibd and /dev/null 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 deleted file mode 100644 index 4b6148ba0..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix_proxy/items_applications.frm and /dev/null 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 deleted file mode 100644 index 87adb50fd..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix_proxy/items_applications.ibd and /dev/null differ diff --git a/zbx_env/var/lib/mysql/zabbix_proxy/maintenances.frm b/zbx_env/var/lib/mysql/zabbix_proxy/maintenances.frm deleted file mode 100644 index 1135d58c9..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix_proxy/maintenances.frm and /dev/null differ diff --git a/zbx_env/var/lib/mysql/zabbix_proxy/maintenances.ibd b/zbx_env/var/lib/mysql/zabbix_proxy/maintenances.ibd deleted file mode 100644 index 19414154d..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix_proxy/maintenances.ibd and /dev/null 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 deleted file mode 100644 index 692016143..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix_proxy/maintenances_groups.frm and /dev/null 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 deleted file mode 100644 index d30b2bffd..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix_proxy/maintenances_groups.ibd and /dev/null 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 deleted file mode 100644 index cbbdcd472..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix_proxy/maintenances_hosts.frm and /dev/null 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 deleted file mode 100644 index 3e8ea3770..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix_proxy/maintenances_hosts.ibd and /dev/null 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 deleted file mode 100644 index c59f2c441..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix_proxy/maintenances_windows.frm and /dev/null 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 deleted file mode 100644 index e7d6b8787..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix_proxy/maintenances_windows.ibd and /dev/null differ diff --git a/zbx_env/var/lib/mysql/zabbix_proxy/mappings.frm b/zbx_env/var/lib/mysql/zabbix_proxy/mappings.frm deleted file mode 100644 index d844e77ca..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix_proxy/mappings.frm and /dev/null differ diff --git a/zbx_env/var/lib/mysql/zabbix_proxy/mappings.ibd b/zbx_env/var/lib/mysql/zabbix_proxy/mappings.ibd deleted file mode 100644 index f070cace9..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix_proxy/mappings.ibd and /dev/null differ diff --git a/zbx_env/var/lib/mysql/zabbix_proxy/media.frm b/zbx_env/var/lib/mysql/zabbix_proxy/media.frm deleted file mode 100644 index 5258f2055..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix_proxy/media.frm and /dev/null differ diff --git a/zbx_env/var/lib/mysql/zabbix_proxy/media.ibd b/zbx_env/var/lib/mysql/zabbix_proxy/media.ibd deleted file mode 100644 index a8d699835..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix_proxy/media.ibd and /dev/null 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 deleted file mode 100644 index 22ef591e8..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix_proxy/media_type.frm and /dev/null 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 deleted file mode 100644 index db10b9e3b..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix_proxy/media_type.ibd and /dev/null differ diff --git a/zbx_env/var/lib/mysql/zabbix_proxy/opcommand.frm b/zbx_env/var/lib/mysql/zabbix_proxy/opcommand.frm deleted file mode 100644 index 2d3baf6a5..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix_proxy/opcommand.frm and /dev/null differ diff --git a/zbx_env/var/lib/mysql/zabbix_proxy/opcommand.ibd b/zbx_env/var/lib/mysql/zabbix_proxy/opcommand.ibd deleted file mode 100644 index da582c3c0..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix_proxy/opcommand.ibd and /dev/null 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 deleted file mode 100644 index b9f0b8e62..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix_proxy/opcommand_grp.frm and /dev/null 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 deleted file mode 100644 index a072ff8bf..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix_proxy/opcommand_grp.ibd and /dev/null 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 deleted file mode 100644 index 78823dd9e..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix_proxy/opcommand_hst.frm and /dev/null 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 deleted file mode 100644 index 9e4bc6120..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix_proxy/opcommand_hst.ibd and /dev/null differ diff --git a/zbx_env/var/lib/mysql/zabbix_proxy/opconditions.frm b/zbx_env/var/lib/mysql/zabbix_proxy/opconditions.frm deleted file mode 100644 index 0918d04bb..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix_proxy/opconditions.frm and /dev/null differ diff --git a/zbx_env/var/lib/mysql/zabbix_proxy/opconditions.ibd b/zbx_env/var/lib/mysql/zabbix_proxy/opconditions.ibd deleted file mode 100644 index debf206e7..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix_proxy/opconditions.ibd and /dev/null differ diff --git a/zbx_env/var/lib/mysql/zabbix_proxy/operations.frm b/zbx_env/var/lib/mysql/zabbix_proxy/operations.frm deleted file mode 100644 index 756f03b53..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix_proxy/operations.frm and /dev/null differ diff --git a/zbx_env/var/lib/mysql/zabbix_proxy/operations.ibd b/zbx_env/var/lib/mysql/zabbix_proxy/operations.ibd deleted file mode 100644 index 2ba84cebe..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix_proxy/operations.ibd and /dev/null differ diff --git a/zbx_env/var/lib/mysql/zabbix_proxy/opgroup.frm b/zbx_env/var/lib/mysql/zabbix_proxy/opgroup.frm deleted file mode 100644 index 1301eb59e..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix_proxy/opgroup.frm and /dev/null differ diff --git a/zbx_env/var/lib/mysql/zabbix_proxy/opgroup.ibd b/zbx_env/var/lib/mysql/zabbix_proxy/opgroup.ibd deleted file mode 100644 index 0f2e8c23f..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix_proxy/opgroup.ibd and /dev/null differ diff --git a/zbx_env/var/lib/mysql/zabbix_proxy/opinventory.frm b/zbx_env/var/lib/mysql/zabbix_proxy/opinventory.frm deleted file mode 100644 index a94f06852..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix_proxy/opinventory.frm and /dev/null differ diff --git a/zbx_env/var/lib/mysql/zabbix_proxy/opinventory.ibd b/zbx_env/var/lib/mysql/zabbix_proxy/opinventory.ibd deleted file mode 100644 index c0153f096..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix_proxy/opinventory.ibd and /dev/null differ diff --git a/zbx_env/var/lib/mysql/zabbix_proxy/opmessage.frm b/zbx_env/var/lib/mysql/zabbix_proxy/opmessage.frm deleted file mode 100644 index 395e0b78e..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix_proxy/opmessage.frm and /dev/null differ diff --git a/zbx_env/var/lib/mysql/zabbix_proxy/opmessage.ibd b/zbx_env/var/lib/mysql/zabbix_proxy/opmessage.ibd deleted file mode 100644 index 8d0982c0e..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix_proxy/opmessage.ibd and /dev/null 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 deleted file mode 100644 index f4e00d05e..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix_proxy/opmessage_grp.frm and /dev/null 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 deleted file mode 100644 index cdd964f84..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix_proxy/opmessage_grp.ibd and /dev/null 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 deleted file mode 100644 index 7431d847b..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix_proxy/opmessage_usr.frm and /dev/null 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 deleted file mode 100644 index aa4a4f034..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix_proxy/opmessage_usr.ibd and /dev/null differ diff --git a/zbx_env/var/lib/mysql/zabbix_proxy/optemplate.frm b/zbx_env/var/lib/mysql/zabbix_proxy/optemplate.frm deleted file mode 100644 index 46d852a44..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix_proxy/optemplate.frm and /dev/null differ diff --git a/zbx_env/var/lib/mysql/zabbix_proxy/optemplate.ibd b/zbx_env/var/lib/mysql/zabbix_proxy/optemplate.ibd deleted file mode 100644 index e7183697e..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix_proxy/optemplate.ibd and /dev/null differ diff --git a/zbx_env/var/lib/mysql/zabbix_proxy/problem.frm b/zbx_env/var/lib/mysql/zabbix_proxy/problem.frm deleted file mode 100644 index 2aeea5ccd..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix_proxy/problem.frm and /dev/null differ diff --git a/zbx_env/var/lib/mysql/zabbix_proxy/problem.ibd b/zbx_env/var/lib/mysql/zabbix_proxy/problem.ibd deleted file mode 100644 index 3984fa4d0..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix_proxy/problem.ibd and /dev/null 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 deleted file mode 100644 index 7b954e04b..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix_proxy/problem_tag.frm and /dev/null 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 deleted file mode 100644 index 2b3a9b7b8..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix_proxy/problem_tag.ibd and /dev/null differ diff --git a/zbx_env/var/lib/mysql/zabbix_proxy/profiles.frm b/zbx_env/var/lib/mysql/zabbix_proxy/profiles.frm deleted file mode 100644 index dab2b5098..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix_proxy/profiles.frm and /dev/null differ diff --git a/zbx_env/var/lib/mysql/zabbix_proxy/profiles.ibd b/zbx_env/var/lib/mysql/zabbix_proxy/profiles.ibd deleted file mode 100644 index b7327065b..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix_proxy/profiles.ibd and /dev/null 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 deleted file mode 100644 index 75383a91f..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix_proxy/proxy_autoreg_host.frm and /dev/null 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 deleted file mode 100644 index ec917c125..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix_proxy/proxy_autoreg_host.ibd and /dev/null 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 deleted file mode 100644 index 882ed8457..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix_proxy/proxy_dhistory.frm and /dev/null 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 deleted file mode 100644 index f4d21be3f..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix_proxy/proxy_dhistory.ibd and /dev/null 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 deleted file mode 100644 index 351a6bdb4..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix_proxy/proxy_history.frm and /dev/null 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 deleted file mode 100644 index b9f9611d5..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix_proxy/proxy_history.ibd and /dev/null differ diff --git a/zbx_env/var/lib/mysql/zabbix_proxy/regexps.frm b/zbx_env/var/lib/mysql/zabbix_proxy/regexps.frm deleted file mode 100644 index 45ccfea8f..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix_proxy/regexps.frm and /dev/null differ diff --git a/zbx_env/var/lib/mysql/zabbix_proxy/regexps.ibd b/zbx_env/var/lib/mysql/zabbix_proxy/regexps.ibd deleted file mode 100644 index 959160a82..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix_proxy/regexps.ibd and /dev/null differ diff --git a/zbx_env/var/lib/mysql/zabbix_proxy/rights.frm b/zbx_env/var/lib/mysql/zabbix_proxy/rights.frm deleted file mode 100644 index 6859e8ca7..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix_proxy/rights.frm and /dev/null differ diff --git a/zbx_env/var/lib/mysql/zabbix_proxy/rights.ibd b/zbx_env/var/lib/mysql/zabbix_proxy/rights.ibd deleted file mode 100644 index dff662502..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix_proxy/rights.ibd and /dev/null 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 deleted file mode 100644 index d66ae0053..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix_proxy/screen_user.frm and /dev/null 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 deleted file mode 100644 index 406a1fa6e..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix_proxy/screen_user.ibd and /dev/null 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 deleted file mode 100644 index 0fb351b59..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix_proxy/screen_usrgrp.frm and /dev/null 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 deleted file mode 100644 index 347ecc302..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix_proxy/screen_usrgrp.ibd and /dev/null differ diff --git a/zbx_env/var/lib/mysql/zabbix_proxy/screens.frm b/zbx_env/var/lib/mysql/zabbix_proxy/screens.frm deleted file mode 100644 index cc3b03ac5..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix_proxy/screens.frm and /dev/null differ diff --git a/zbx_env/var/lib/mysql/zabbix_proxy/screens.ibd b/zbx_env/var/lib/mysql/zabbix_proxy/screens.ibd deleted file mode 100644 index 33f435ee4..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix_proxy/screens.ibd and /dev/null 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 deleted file mode 100644 index 187a0a848..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix_proxy/screens_items.frm and /dev/null 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 deleted file mode 100644 index 9abeb401d..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix_proxy/screens_items.ibd and /dev/null differ diff --git a/zbx_env/var/lib/mysql/zabbix_proxy/scripts.frm b/zbx_env/var/lib/mysql/zabbix_proxy/scripts.frm deleted file mode 100644 index fd1b91462..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix_proxy/scripts.frm and /dev/null differ diff --git a/zbx_env/var/lib/mysql/zabbix_proxy/scripts.ibd b/zbx_env/var/lib/mysql/zabbix_proxy/scripts.ibd deleted file mode 100644 index 6d92da7b5..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix_proxy/scripts.ibd and /dev/null 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 deleted file mode 100644 index f8df08d93..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix_proxy/service_alarms.frm and /dev/null 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 deleted file mode 100644 index 530f232c4..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix_proxy/service_alarms.ibd and /dev/null differ diff --git a/zbx_env/var/lib/mysql/zabbix_proxy/services.frm b/zbx_env/var/lib/mysql/zabbix_proxy/services.frm deleted file mode 100644 index 3c1557f96..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix_proxy/services.frm and /dev/null differ diff --git a/zbx_env/var/lib/mysql/zabbix_proxy/services.ibd b/zbx_env/var/lib/mysql/zabbix_proxy/services.ibd deleted file mode 100644 index 9830001df..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix_proxy/services.ibd and /dev/null 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 deleted file mode 100644 index 545a5e11d..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix_proxy/services_links.frm and /dev/null 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 deleted file mode 100644 index fc827a052..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix_proxy/services_links.ibd and /dev/null 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 deleted file mode 100644 index ad95e20dd..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix_proxy/services_times.frm and /dev/null 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 deleted file mode 100644 index dc147db40..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix_proxy/services_times.ibd and /dev/null differ diff --git a/zbx_env/var/lib/mysql/zabbix_proxy/sessions.frm b/zbx_env/var/lib/mysql/zabbix_proxy/sessions.frm deleted file mode 100644 index 2b0ce84e8..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix_proxy/sessions.frm and /dev/null differ diff --git a/zbx_env/var/lib/mysql/zabbix_proxy/sessions.ibd b/zbx_env/var/lib/mysql/zabbix_proxy/sessions.ibd deleted file mode 100644 index 88c9bb8d0..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix_proxy/sessions.ibd and /dev/null differ diff --git a/zbx_env/var/lib/mysql/zabbix_proxy/slides.frm b/zbx_env/var/lib/mysql/zabbix_proxy/slides.frm deleted file mode 100644 index 8d4d92ae8..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix_proxy/slides.frm and /dev/null differ diff --git a/zbx_env/var/lib/mysql/zabbix_proxy/slides.ibd b/zbx_env/var/lib/mysql/zabbix_proxy/slides.ibd deleted file mode 100644 index 166a05742..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix_proxy/slides.ibd and /dev/null 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 deleted file mode 100644 index e83471b22..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix_proxy/slideshow_user.frm and /dev/null 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 deleted file mode 100644 index a3d4adba3..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix_proxy/slideshow_user.ibd and /dev/null 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 deleted file mode 100644 index 2fabf1b54..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix_proxy/slideshow_usrgrp.frm and /dev/null 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 deleted file mode 100644 index 0da112e39..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix_proxy/slideshow_usrgrp.ibd and /dev/null differ diff --git a/zbx_env/var/lib/mysql/zabbix_proxy/slideshows.frm b/zbx_env/var/lib/mysql/zabbix_proxy/slideshows.frm deleted file mode 100644 index 0c41ff127..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix_proxy/slideshows.frm and /dev/null differ diff --git a/zbx_env/var/lib/mysql/zabbix_proxy/slideshows.ibd b/zbx_env/var/lib/mysql/zabbix_proxy/slideshows.ibd deleted file mode 100644 index 8e30a102e..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix_proxy/slideshows.ibd and /dev/null 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 deleted file mode 100644 index 1746d9fc4..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix_proxy/sysmap_element_trigger.frm and /dev/null 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 deleted file mode 100644 index 9e7d5a53f..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix_proxy/sysmap_element_trigger.ibd and /dev/null 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 deleted file mode 100644 index 13c5140e6..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix_proxy/sysmap_element_url.frm and /dev/null 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 deleted file mode 100644 index 8db388bd4..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix_proxy/sysmap_element_url.ibd and /dev/null 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 deleted file mode 100644 index 131c38301..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix_proxy/sysmap_shape.frm and /dev/null 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 deleted file mode 100644 index 243d8247c..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix_proxy/sysmap_shape.ibd and /dev/null 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 deleted file mode 100644 index 5e8b1ee7a..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix_proxy/sysmap_url.frm and /dev/null 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 deleted file mode 100644 index c43e5d4e0..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix_proxy/sysmap_url.ibd and /dev/null 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 deleted file mode 100644 index cfc595c2a..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix_proxy/sysmap_user.frm and /dev/null 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 deleted file mode 100644 index f271c7b61..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix_proxy/sysmap_user.ibd and /dev/null 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 deleted file mode 100644 index 00826c18b..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix_proxy/sysmap_usrgrp.frm and /dev/null 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 deleted file mode 100644 index d25abbb1b..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix_proxy/sysmap_usrgrp.ibd and /dev/null differ diff --git a/zbx_env/var/lib/mysql/zabbix_proxy/sysmaps.frm b/zbx_env/var/lib/mysql/zabbix_proxy/sysmaps.frm deleted file mode 100644 index 9c36b3ecd..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix_proxy/sysmaps.frm and /dev/null differ diff --git a/zbx_env/var/lib/mysql/zabbix_proxy/sysmaps.ibd b/zbx_env/var/lib/mysql/zabbix_proxy/sysmaps.ibd deleted file mode 100644 index fecb32003..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix_proxy/sysmaps.ibd and /dev/null 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 deleted file mode 100644 index b2686a1f3..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix_proxy/sysmaps_elements.frm and /dev/null 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 deleted file mode 100644 index a67a36c80..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix_proxy/sysmaps_elements.ibd and /dev/null 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 deleted file mode 100644 index 905584921..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix_proxy/sysmaps_link_triggers.frm and /dev/null 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 deleted file mode 100644 index f9cd26855..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix_proxy/sysmaps_link_triggers.ibd and /dev/null 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 deleted file mode 100644 index 86aca93c4..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix_proxy/sysmaps_links.frm and /dev/null 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 deleted file mode 100644 index 562ba982a..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix_proxy/sysmaps_links.ibd and /dev/null differ diff --git a/zbx_env/var/lib/mysql/zabbix_proxy/task.frm b/zbx_env/var/lib/mysql/zabbix_proxy/task.frm deleted file mode 100644 index 842ca3669..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix_proxy/task.frm and /dev/null differ diff --git a/zbx_env/var/lib/mysql/zabbix_proxy/task.ibd b/zbx_env/var/lib/mysql/zabbix_proxy/task.ibd deleted file mode 100644 index 646696b32..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix_proxy/task.ibd and /dev/null 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 deleted file mode 100644 index 74789a704..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix_proxy/task_acknowledge.frm and /dev/null 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 deleted file mode 100644 index 0d6302d87..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix_proxy/task_acknowledge.ibd and /dev/null 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 deleted file mode 100644 index 74789a704..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix_proxy/task_close_problem.frm and /dev/null 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 deleted file mode 100644 index 06ae4ca14..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix_proxy/task_close_problem.ibd and /dev/null 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 deleted file mode 100644 index c8eb91b46..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix_proxy/task_remote_command.frm and /dev/null 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 deleted file mode 100644 index 0b49703ea..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix_proxy/task_remote_command.ibd and /dev/null 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 deleted file mode 100644 index f0c91868c..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix_proxy/task_remote_command_result.frm and /dev/null 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 deleted file mode 100644 index 463ed9499..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix_proxy/task_remote_command_result.ibd and /dev/null differ diff --git a/zbx_env/var/lib/mysql/zabbix_proxy/timeperiods.frm b/zbx_env/var/lib/mysql/zabbix_proxy/timeperiods.frm deleted file mode 100644 index a1997196e..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix_proxy/timeperiods.frm and /dev/null differ diff --git a/zbx_env/var/lib/mysql/zabbix_proxy/timeperiods.ibd b/zbx_env/var/lib/mysql/zabbix_proxy/timeperiods.ibd deleted file mode 100644 index 4dfdc414d..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix_proxy/timeperiods.ibd and /dev/null differ diff --git a/zbx_env/var/lib/mysql/zabbix_proxy/trends.frm b/zbx_env/var/lib/mysql/zabbix_proxy/trends.frm deleted file mode 100644 index 340bf5966..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix_proxy/trends.frm and /dev/null differ diff --git a/zbx_env/var/lib/mysql/zabbix_proxy/trends.ibd b/zbx_env/var/lib/mysql/zabbix_proxy/trends.ibd deleted file mode 100644 index 867551820..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix_proxy/trends.ibd and /dev/null 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 deleted file mode 100644 index e9755a5f5..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix_proxy/trends_uint.frm and /dev/null 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 deleted file mode 100644 index da5c822be..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix_proxy/trends_uint.ibd and /dev/null 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 deleted file mode 100644 index 6eba7c509..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix_proxy/trigger_depends.frm and /dev/null 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 deleted file mode 100644 index 342bd33fb..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix_proxy/trigger_depends.ibd and /dev/null 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 deleted file mode 100644 index 6308c846b..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix_proxy/trigger_discovery.frm and /dev/null 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 deleted file mode 100644 index 37fd665d0..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix_proxy/trigger_discovery.ibd and /dev/null 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 deleted file mode 100644 index 458d7e3a4..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix_proxy/trigger_tag.frm and /dev/null 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 deleted file mode 100644 index 9f3114616..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix_proxy/trigger_tag.ibd and /dev/null differ diff --git a/zbx_env/var/lib/mysql/zabbix_proxy/triggers.frm b/zbx_env/var/lib/mysql/zabbix_proxy/triggers.frm deleted file mode 100644 index 948860d2c..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix_proxy/triggers.frm and /dev/null differ diff --git a/zbx_env/var/lib/mysql/zabbix_proxy/triggers.ibd b/zbx_env/var/lib/mysql/zabbix_proxy/triggers.ibd deleted file mode 100644 index 246a08737..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix_proxy/triggers.ibd and /dev/null differ diff --git a/zbx_env/var/lib/mysql/zabbix_proxy/users.frm b/zbx_env/var/lib/mysql/zabbix_proxy/users.frm deleted file mode 100644 index e10628880..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix_proxy/users.frm and /dev/null differ diff --git a/zbx_env/var/lib/mysql/zabbix_proxy/users.ibd b/zbx_env/var/lib/mysql/zabbix_proxy/users.ibd deleted file mode 100644 index 550d42215..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix_proxy/users.ibd and /dev/null 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 deleted file mode 100644 index 582b315f8..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix_proxy/users_groups.frm and /dev/null 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 deleted file mode 100644 index dec1de0ae..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix_proxy/users_groups.ibd and /dev/null differ diff --git a/zbx_env/var/lib/mysql/zabbix_proxy/usrgrp.frm b/zbx_env/var/lib/mysql/zabbix_proxy/usrgrp.frm deleted file mode 100644 index 14593fb7c..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix_proxy/usrgrp.frm and /dev/null differ diff --git a/zbx_env/var/lib/mysql/zabbix_proxy/usrgrp.ibd b/zbx_env/var/lib/mysql/zabbix_proxy/usrgrp.ibd deleted file mode 100644 index b0b52884e..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix_proxy/usrgrp.ibd and /dev/null differ diff --git a/zbx_env/var/lib/mysql/zabbix_proxy/valuemaps.frm b/zbx_env/var/lib/mysql/zabbix_proxy/valuemaps.frm deleted file mode 100644 index e4be79379..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix_proxy/valuemaps.frm and /dev/null differ diff --git a/zbx_env/var/lib/mysql/zabbix_proxy/valuemaps.ibd b/zbx_env/var/lib/mysql/zabbix_proxy/valuemaps.ibd deleted file mode 100644 index 397512c6f..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix_proxy/valuemaps.ibd and /dev/null differ diff --git a/zbx_env/var/lib/mysql/zabbix_proxy/widget.frm b/zbx_env/var/lib/mysql/zabbix_proxy/widget.frm deleted file mode 100644 index 4a3317548..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix_proxy/widget.frm and /dev/null differ diff --git a/zbx_env/var/lib/mysql/zabbix_proxy/widget.ibd b/zbx_env/var/lib/mysql/zabbix_proxy/widget.ibd deleted file mode 100644 index d1ecfd262..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix_proxy/widget.ibd and /dev/null 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 deleted file mode 100644 index a63d03cdf..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix_proxy/widget_field.frm and /dev/null 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 deleted file mode 100644 index cae069e83..000000000 Binary files a/zbx_env/var/lib/mysql/zabbix_proxy/widget_field.ibd and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/PG_VERSION b/zbx_env/var/lib/postgresql/data/PG_VERSION deleted file mode 100644 index f599e28b8..000000000 --- a/zbx_env/var/lib/postgresql/data/PG_VERSION +++ /dev/null @@ -1 +0,0 @@ -10 diff --git a/zbx_env/var/lib/postgresql/data/base/1/112 b/zbx_env/var/lib/postgresql/data/base/1/112 deleted file mode 100644 index 8b130c348..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/1/112 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/1/113 b/zbx_env/var/lib/postgresql/data/base/1/113 deleted file mode 100644 index aca9f3471..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/1/113 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/1/1247 b/zbx_env/var/lib/postgresql/data/base/1/1247 deleted file mode 100644 index cd6a460f8..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/1/1247 and /dev/null 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 deleted file mode 100644 index 2afa6c37d..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/1/1247_fsm and /dev/null 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 deleted file mode 100644 index ee2235651..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/1/1247_vm and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/1/1249 b/zbx_env/var/lib/postgresql/data/base/1/1249 deleted file mode 100644 index 03ac5bae9..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/1/1249 and /dev/null 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 deleted file mode 100644 index 620636091..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/1/1249_fsm and /dev/null 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 deleted file mode 100644 index dcac89013..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/1/1249_vm and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/1/1255 b/zbx_env/var/lib/postgresql/data/base/1/1255 deleted file mode 100644 index 5db8ed232..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/1/1255 and /dev/null 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 deleted file mode 100644 index 72da66c0e..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/1/1255_fsm and /dev/null 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 deleted file mode 100644 index ba43c4836..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/1/1255_vm and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/1/1259 b/zbx_env/var/lib/postgresql/data/base/1/1259 deleted file mode 100644 index fa008c711..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/1/1259 and /dev/null 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 deleted file mode 100644 index e172feb90..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/1/1259_fsm and /dev/null 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 deleted file mode 100644 index eba7a64a4..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/1/1259_vm and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/1/12829 b/zbx_env/var/lib/postgresql/data/base/1/12829 deleted file mode 100644 index ac7e7e56a..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/1/12829 and /dev/null 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 deleted file mode 100644 index 19948ba3d..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/1/12829_fsm and /dev/null 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 deleted file mode 100644 index 648054e0f..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/1/12829_vm and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/1/12831 b/zbx_env/var/lib/postgresql/data/base/1/12831 deleted file mode 100644 index e69de29bb..000000000 diff --git a/zbx_env/var/lib/postgresql/data/base/1/12833 b/zbx_env/var/lib/postgresql/data/base/1/12833 deleted file mode 100644 index 5efdd5c62..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/1/12833 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/1/12834 b/zbx_env/var/lib/postgresql/data/base/1/12834 deleted file mode 100644 index 6147c7e0a..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/1/12834 and /dev/null 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 deleted file mode 100644 index ce7c26eb6..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/1/12834_fsm and /dev/null 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 deleted file mode 100644 index 025df3da1..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/1/12834_vm and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/1/12836 b/zbx_env/var/lib/postgresql/data/base/1/12836 deleted file mode 100644 index e69de29bb..000000000 diff --git a/zbx_env/var/lib/postgresql/data/base/1/12838 b/zbx_env/var/lib/postgresql/data/base/1/12838 deleted file mode 100644 index ab2a70f83..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/1/12838 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/1/12839 b/zbx_env/var/lib/postgresql/data/base/1/12839 deleted file mode 100644 index 5c80dacb3..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/1/12839 and /dev/null 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 deleted file mode 100644 index 98dc620ab..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/1/12839_fsm and /dev/null 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 deleted file mode 100644 index 602207e10..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/1/12839_vm and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/1/12841 b/zbx_env/var/lib/postgresql/data/base/1/12841 deleted file mode 100644 index e69de29bb..000000000 diff --git a/zbx_env/var/lib/postgresql/data/base/1/12843 b/zbx_env/var/lib/postgresql/data/base/1/12843 deleted file mode 100644 index 01f3abd46..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/1/12843 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/1/12844 b/zbx_env/var/lib/postgresql/data/base/1/12844 deleted file mode 100644 index 0d56ac3f3..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/1/12844 and /dev/null 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 deleted file mode 100644 index f8a0e258a..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/1/12844_fsm and /dev/null 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 deleted file mode 100644 index a853e6e13..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/1/12844_vm and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/1/12846 b/zbx_env/var/lib/postgresql/data/base/1/12846 deleted file mode 100644 index e69de29bb..000000000 diff --git a/zbx_env/var/lib/postgresql/data/base/1/12848 b/zbx_env/var/lib/postgresql/data/base/1/12848 deleted file mode 100644 index a3e9f3820..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/1/12848 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/1/12849 b/zbx_env/var/lib/postgresql/data/base/1/12849 deleted file mode 100644 index 3db9a1627..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/1/12849 and /dev/null 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 deleted file mode 100644 index ecbfaee5e..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/1/12849_fsm and /dev/null 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 deleted file mode 100644 index dddd66103..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/1/12849_vm and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/1/12851 b/zbx_env/var/lib/postgresql/data/base/1/12851 deleted file mode 100644 index e69de29bb..000000000 diff --git a/zbx_env/var/lib/postgresql/data/base/1/12853 b/zbx_env/var/lib/postgresql/data/base/1/12853 deleted file mode 100644 index 4c0a3393e..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/1/12853 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/1/12854 b/zbx_env/var/lib/postgresql/data/base/1/12854 deleted file mode 100644 index afc566762..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/1/12854 and /dev/null 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 deleted file mode 100644 index a836ddf75..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/1/12854_fsm and /dev/null 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 deleted file mode 100644 index 763cfb136..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/1/12854_vm and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/1/12856 b/zbx_env/var/lib/postgresql/data/base/1/12856 deleted file mode 100644 index e69de29bb..000000000 diff --git a/zbx_env/var/lib/postgresql/data/base/1/12858 b/zbx_env/var/lib/postgresql/data/base/1/12858 deleted file mode 100644 index e81edf7b4..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/1/12858 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/1/12859 b/zbx_env/var/lib/postgresql/data/base/1/12859 deleted file mode 100644 index e69de29bb..000000000 diff --git a/zbx_env/var/lib/postgresql/data/base/1/12861 b/zbx_env/var/lib/postgresql/data/base/1/12861 deleted file mode 100644 index e69de29bb..000000000 diff --git a/zbx_env/var/lib/postgresql/data/base/1/12863 b/zbx_env/var/lib/postgresql/data/base/1/12863 deleted file mode 100644 index d4d51b3d9..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/1/12863 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/1/1417 b/zbx_env/var/lib/postgresql/data/base/1/1417 deleted file mode 100644 index e69de29bb..000000000 diff --git a/zbx_env/var/lib/postgresql/data/base/1/1417_vm b/zbx_env/var/lib/postgresql/data/base/1/1417_vm deleted file mode 100644 index e69de29bb..000000000 diff --git a/zbx_env/var/lib/postgresql/data/base/1/1418 b/zbx_env/var/lib/postgresql/data/base/1/1418 deleted file mode 100644 index e69de29bb..000000000 diff --git a/zbx_env/var/lib/postgresql/data/base/1/1418_vm b/zbx_env/var/lib/postgresql/data/base/1/1418_vm deleted file mode 100644 index e69de29bb..000000000 diff --git a/zbx_env/var/lib/postgresql/data/base/1/174 b/zbx_env/var/lib/postgresql/data/base/1/174 deleted file mode 100644 index edad2c14c..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/1/174 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/1/175 b/zbx_env/var/lib/postgresql/data/base/1/175 deleted file mode 100644 index a8041c693..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/1/175 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/1/2187 b/zbx_env/var/lib/postgresql/data/base/1/2187 deleted file mode 100644 index d39a0b782..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/1/2187 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/1/2224 b/zbx_env/var/lib/postgresql/data/base/1/2224 deleted file mode 100644 index e69de29bb..000000000 diff --git a/zbx_env/var/lib/postgresql/data/base/1/2224_vm b/zbx_env/var/lib/postgresql/data/base/1/2224_vm deleted file mode 100644 index e69de29bb..000000000 diff --git a/zbx_env/var/lib/postgresql/data/base/1/2328 b/zbx_env/var/lib/postgresql/data/base/1/2328 deleted file mode 100644 index e69de29bb..000000000 diff --git a/zbx_env/var/lib/postgresql/data/base/1/2328_vm b/zbx_env/var/lib/postgresql/data/base/1/2328_vm deleted file mode 100644 index e69de29bb..000000000 diff --git a/zbx_env/var/lib/postgresql/data/base/1/2336 b/zbx_env/var/lib/postgresql/data/base/1/2336 deleted file mode 100644 index e69de29bb..000000000 diff --git a/zbx_env/var/lib/postgresql/data/base/1/2336_vm b/zbx_env/var/lib/postgresql/data/base/1/2336_vm deleted file mode 100644 index e69de29bb..000000000 diff --git a/zbx_env/var/lib/postgresql/data/base/1/2337 b/zbx_env/var/lib/postgresql/data/base/1/2337 deleted file mode 100644 index c16658041..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/1/2337 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/1/2600 b/zbx_env/var/lib/postgresql/data/base/1/2600 deleted file mode 100644 index 980d98e71..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/1/2600 and /dev/null 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 deleted file mode 100644 index e63ffab3e..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/1/2600_fsm and /dev/null 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 deleted file mode 100644 index be059bc07..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/1/2600_vm and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/1/2601 b/zbx_env/var/lib/postgresql/data/base/1/2601 deleted file mode 100644 index 1d44fa56b..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/1/2601 and /dev/null 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 deleted file mode 100644 index 0908076c0..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/1/2601_fsm and /dev/null 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 deleted file mode 100644 index 2aa5dcdb5..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/1/2601_vm and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/1/2602 b/zbx_env/var/lib/postgresql/data/base/1/2602 deleted file mode 100644 index 66f5754af..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/1/2602 and /dev/null 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 deleted file mode 100644 index 5ed43b88a..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/1/2602_fsm and /dev/null 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 deleted file mode 100644 index d1b65bdb8..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/1/2602_vm and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/1/2603 b/zbx_env/var/lib/postgresql/data/base/1/2603 deleted file mode 100644 index a51df6676..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/1/2603 and /dev/null 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 deleted file mode 100644 index f507d0e9f..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/1/2603_fsm and /dev/null 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 deleted file mode 100644 index 95728db4a..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/1/2603_vm and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/1/2604 b/zbx_env/var/lib/postgresql/data/base/1/2604 deleted file mode 100644 index e69de29bb..000000000 diff --git a/zbx_env/var/lib/postgresql/data/base/1/2604_vm b/zbx_env/var/lib/postgresql/data/base/1/2604_vm deleted file mode 100644 index e69de29bb..000000000 diff --git a/zbx_env/var/lib/postgresql/data/base/1/2605 b/zbx_env/var/lib/postgresql/data/base/1/2605 deleted file mode 100644 index 45f16c079..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/1/2605 and /dev/null 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 deleted file mode 100644 index c1b0e039f..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/1/2605_fsm and /dev/null 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 deleted file mode 100644 index bd231050a..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/1/2605_vm and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/1/2606 b/zbx_env/var/lib/postgresql/data/base/1/2606 deleted file mode 100644 index 163eee21e..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/1/2606 and /dev/null 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 deleted file mode 100644 index d37e4dd05..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/1/2606_fsm and /dev/null 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 deleted file mode 100644 index 4301f6b95..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/1/2606_vm and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/1/2607 b/zbx_env/var/lib/postgresql/data/base/1/2607 deleted file mode 100644 index 1ecadcbc8..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/1/2607 and /dev/null 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 deleted file mode 100644 index 5b066f1a3..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/1/2607_fsm and /dev/null 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 deleted file mode 100644 index 913a86769..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/1/2607_vm and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/1/2608 b/zbx_env/var/lib/postgresql/data/base/1/2608 deleted file mode 100644 index 49c4af1cd..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/1/2608 and /dev/null 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 deleted file mode 100644 index 106a100e5..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/1/2608_fsm and /dev/null 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 deleted file mode 100644 index b4ec88c13..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/1/2608_vm and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/1/2609 b/zbx_env/var/lib/postgresql/data/base/1/2609 deleted file mode 100644 index 55d48b226..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/1/2609 and /dev/null 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 deleted file mode 100644 index 8fa6e5fa6..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/1/2609_fsm and /dev/null 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 deleted file mode 100644 index a459f2c88..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/1/2609_vm and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/1/2610 b/zbx_env/var/lib/postgresql/data/base/1/2610 deleted file mode 100644 index b2c1cffbb..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/1/2610 and /dev/null 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 deleted file mode 100644 index 6a556770a..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/1/2610_fsm and /dev/null 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 deleted file mode 100644 index a2cb5435a..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/1/2610_vm and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/1/2611 b/zbx_env/var/lib/postgresql/data/base/1/2611 deleted file mode 100644 index e69de29bb..000000000 diff --git a/zbx_env/var/lib/postgresql/data/base/1/2611_vm b/zbx_env/var/lib/postgresql/data/base/1/2611_vm deleted file mode 100644 index e69de29bb..000000000 diff --git a/zbx_env/var/lib/postgresql/data/base/1/2612 b/zbx_env/var/lib/postgresql/data/base/1/2612 deleted file mode 100644 index 92362df9a..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/1/2612 and /dev/null 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 deleted file mode 100644 index 877976acf..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/1/2612_fsm and /dev/null 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 deleted file mode 100644 index 27aad7785..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/1/2612_vm and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/1/2613 b/zbx_env/var/lib/postgresql/data/base/1/2613 deleted file mode 100644 index e69de29bb..000000000 diff --git a/zbx_env/var/lib/postgresql/data/base/1/2613_vm b/zbx_env/var/lib/postgresql/data/base/1/2613_vm deleted file mode 100644 index e69de29bb..000000000 diff --git a/zbx_env/var/lib/postgresql/data/base/1/2615 b/zbx_env/var/lib/postgresql/data/base/1/2615 deleted file mode 100644 index f81cca3d5..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/1/2615 and /dev/null 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 deleted file mode 100644 index 948882ce6..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/1/2615_fsm and /dev/null 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 deleted file mode 100644 index 0ceaa2a80..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/1/2615_vm and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/1/2616 b/zbx_env/var/lib/postgresql/data/base/1/2616 deleted file mode 100644 index 19f42857d..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/1/2616 and /dev/null 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 deleted file mode 100644 index 995a05b3c..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/1/2616_fsm and /dev/null 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 deleted file mode 100644 index dfb995f88..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/1/2616_vm and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/1/2617 b/zbx_env/var/lib/postgresql/data/base/1/2617 deleted file mode 100644 index d989d35e2..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/1/2617 and /dev/null 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 deleted file mode 100644 index cb2a806b3..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/1/2617_fsm and /dev/null 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 deleted file mode 100644 index 678b7f7f3..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/1/2617_vm and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/1/2618 b/zbx_env/var/lib/postgresql/data/base/1/2618 deleted file mode 100644 index 8a17c1706..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/1/2618 and /dev/null 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 deleted file mode 100644 index 2379916aa..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/1/2618_fsm and /dev/null 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 deleted file mode 100644 index 4b06dd76e..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/1/2618_vm and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/1/2619 b/zbx_env/var/lib/postgresql/data/base/1/2619 deleted file mode 100644 index c14ecd8fa..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/1/2619 and /dev/null 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 deleted file mode 100644 index 81f80a5b6..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/1/2619_fsm and /dev/null 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 deleted file mode 100644 index 554e94eb4..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/1/2619_vm and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/1/2620 b/zbx_env/var/lib/postgresql/data/base/1/2620 deleted file mode 100644 index e69de29bb..000000000 diff --git a/zbx_env/var/lib/postgresql/data/base/1/2620_vm b/zbx_env/var/lib/postgresql/data/base/1/2620_vm deleted file mode 100644 index e69de29bb..000000000 diff --git a/zbx_env/var/lib/postgresql/data/base/1/2650 b/zbx_env/var/lib/postgresql/data/base/1/2650 deleted file mode 100644 index 8a0d71d50..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/1/2650 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/1/2651 b/zbx_env/var/lib/postgresql/data/base/1/2651 deleted file mode 100644 index 29e245e35..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/1/2651 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/1/2652 b/zbx_env/var/lib/postgresql/data/base/1/2652 deleted file mode 100644 index 9e26143e4..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/1/2652 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/1/2653 b/zbx_env/var/lib/postgresql/data/base/1/2653 deleted file mode 100644 index e02db67df..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/1/2653 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/1/2654 b/zbx_env/var/lib/postgresql/data/base/1/2654 deleted file mode 100644 index 95363af10..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/1/2654 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/1/2655 b/zbx_env/var/lib/postgresql/data/base/1/2655 deleted file mode 100644 index a9a12adf9..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/1/2655 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/1/2656 b/zbx_env/var/lib/postgresql/data/base/1/2656 deleted file mode 100644 index ba509bf8d..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/1/2656 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/1/2657 b/zbx_env/var/lib/postgresql/data/base/1/2657 deleted file mode 100644 index fbc747331..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/1/2657 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/1/2658 b/zbx_env/var/lib/postgresql/data/base/1/2658 deleted file mode 100644 index d2ceec244..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/1/2658 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/1/2659 b/zbx_env/var/lib/postgresql/data/base/1/2659 deleted file mode 100644 index 1f1a4947f..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/1/2659 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/1/2660 b/zbx_env/var/lib/postgresql/data/base/1/2660 deleted file mode 100644 index d16f41a42..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/1/2660 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/1/2661 b/zbx_env/var/lib/postgresql/data/base/1/2661 deleted file mode 100644 index 59ade838f..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/1/2661 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/1/2662 b/zbx_env/var/lib/postgresql/data/base/1/2662 deleted file mode 100644 index 6026eaac9..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/1/2662 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/1/2663 b/zbx_env/var/lib/postgresql/data/base/1/2663 deleted file mode 100644 index 7ce14003d..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/1/2663 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/1/2664 b/zbx_env/var/lib/postgresql/data/base/1/2664 deleted file mode 100644 index c44bbad79..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/1/2664 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/1/2665 b/zbx_env/var/lib/postgresql/data/base/1/2665 deleted file mode 100644 index 63ca88a3e..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/1/2665 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/1/2666 b/zbx_env/var/lib/postgresql/data/base/1/2666 deleted file mode 100644 index e7c92d1f5..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/1/2666 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/1/2667 b/zbx_env/var/lib/postgresql/data/base/1/2667 deleted file mode 100644 index 5755a624a..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/1/2667 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/1/2668 b/zbx_env/var/lib/postgresql/data/base/1/2668 deleted file mode 100644 index 11a6b5270..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/1/2668 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/1/2669 b/zbx_env/var/lib/postgresql/data/base/1/2669 deleted file mode 100644 index 79d31ebcc..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/1/2669 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/1/2670 b/zbx_env/var/lib/postgresql/data/base/1/2670 deleted file mode 100644 index 6184b908d..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/1/2670 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/1/2673 b/zbx_env/var/lib/postgresql/data/base/1/2673 deleted file mode 100644 index 7f74fdd5c..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/1/2673 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/1/2674 b/zbx_env/var/lib/postgresql/data/base/1/2674 deleted file mode 100644 index 1fb21fcba..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/1/2674 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/1/2675 b/zbx_env/var/lib/postgresql/data/base/1/2675 deleted file mode 100644 index c88a53bd5..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/1/2675 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/1/2678 b/zbx_env/var/lib/postgresql/data/base/1/2678 deleted file mode 100644 index 5239feded..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/1/2678 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/1/2679 b/zbx_env/var/lib/postgresql/data/base/1/2679 deleted file mode 100644 index cb7b561bb..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/1/2679 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/1/2680 b/zbx_env/var/lib/postgresql/data/base/1/2680 deleted file mode 100644 index 876da95b2..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/1/2680 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/1/2681 b/zbx_env/var/lib/postgresql/data/base/1/2681 deleted file mode 100644 index 4987623fd..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/1/2681 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/1/2682 b/zbx_env/var/lib/postgresql/data/base/1/2682 deleted file mode 100644 index 7943e766e..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/1/2682 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/1/2683 b/zbx_env/var/lib/postgresql/data/base/1/2683 deleted file mode 100644 index 636f10144..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/1/2683 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/1/2684 b/zbx_env/var/lib/postgresql/data/base/1/2684 deleted file mode 100644 index f54f9598d..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/1/2684 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/1/2685 b/zbx_env/var/lib/postgresql/data/base/1/2685 deleted file mode 100644 index 95d7fde28..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/1/2685 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/1/2686 b/zbx_env/var/lib/postgresql/data/base/1/2686 deleted file mode 100644 index bc86cec09..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/1/2686 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/1/2687 b/zbx_env/var/lib/postgresql/data/base/1/2687 deleted file mode 100644 index f080504d5..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/1/2687 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/1/2688 b/zbx_env/var/lib/postgresql/data/base/1/2688 deleted file mode 100644 index 47572a662..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/1/2688 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/1/2689 b/zbx_env/var/lib/postgresql/data/base/1/2689 deleted file mode 100644 index 4333d769f..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/1/2689 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/1/2690 b/zbx_env/var/lib/postgresql/data/base/1/2690 deleted file mode 100644 index 89fab01a4..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/1/2690 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/1/2691 b/zbx_env/var/lib/postgresql/data/base/1/2691 deleted file mode 100644 index 08dade0dd..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/1/2691 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/1/2692 b/zbx_env/var/lib/postgresql/data/base/1/2692 deleted file mode 100644 index 150467201..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/1/2692 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/1/2693 b/zbx_env/var/lib/postgresql/data/base/1/2693 deleted file mode 100644 index ef76c5b32..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/1/2693 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/1/2696 b/zbx_env/var/lib/postgresql/data/base/1/2696 deleted file mode 100644 index 69014bb1f..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/1/2696 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/1/2699 b/zbx_env/var/lib/postgresql/data/base/1/2699 deleted file mode 100644 index 9a9b94663..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/1/2699 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/1/2701 b/zbx_env/var/lib/postgresql/data/base/1/2701 deleted file mode 100644 index 0376dbefa..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/1/2701 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/1/2702 b/zbx_env/var/lib/postgresql/data/base/1/2702 deleted file mode 100644 index b2e4287f6..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/1/2702 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/1/2703 b/zbx_env/var/lib/postgresql/data/base/1/2703 deleted file mode 100644 index d7477ab76..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/1/2703 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/1/2704 b/zbx_env/var/lib/postgresql/data/base/1/2704 deleted file mode 100644 index a18deab09..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/1/2704 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/1/2753 b/zbx_env/var/lib/postgresql/data/base/1/2753 deleted file mode 100644 index 73f903165..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/1/2753 and /dev/null 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 deleted file mode 100644 index 0787df53d..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/1/2753_fsm and /dev/null 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 deleted file mode 100644 index 6c8ced900..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/1/2753_vm and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/1/2754 b/zbx_env/var/lib/postgresql/data/base/1/2754 deleted file mode 100644 index 5a44a7962..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/1/2754 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/1/2755 b/zbx_env/var/lib/postgresql/data/base/1/2755 deleted file mode 100644 index fac11c420..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/1/2755 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/1/2756 b/zbx_env/var/lib/postgresql/data/base/1/2756 deleted file mode 100644 index 5b9bc166b..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/1/2756 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/1/2757 b/zbx_env/var/lib/postgresql/data/base/1/2757 deleted file mode 100644 index 1bade66ff..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/1/2757 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/1/2830 b/zbx_env/var/lib/postgresql/data/base/1/2830 deleted file mode 100644 index e69de29bb..000000000 diff --git a/zbx_env/var/lib/postgresql/data/base/1/2830_vm b/zbx_env/var/lib/postgresql/data/base/1/2830_vm deleted file mode 100644 index e69de29bb..000000000 diff --git a/zbx_env/var/lib/postgresql/data/base/1/2831 b/zbx_env/var/lib/postgresql/data/base/1/2831 deleted file mode 100644 index b0c0ed88c..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/1/2831 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/1/2832 b/zbx_env/var/lib/postgresql/data/base/1/2832 deleted file mode 100644 index e69de29bb..000000000 diff --git a/zbx_env/var/lib/postgresql/data/base/1/2832_vm b/zbx_env/var/lib/postgresql/data/base/1/2832_vm deleted file mode 100644 index e69de29bb..000000000 diff --git a/zbx_env/var/lib/postgresql/data/base/1/2833 b/zbx_env/var/lib/postgresql/data/base/1/2833 deleted file mode 100644 index e70ee62b0..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/1/2833 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/1/2834 b/zbx_env/var/lib/postgresql/data/base/1/2834 deleted file mode 100644 index e69de29bb..000000000 diff --git a/zbx_env/var/lib/postgresql/data/base/1/2834_vm b/zbx_env/var/lib/postgresql/data/base/1/2834_vm deleted file mode 100644 index e69de29bb..000000000 diff --git a/zbx_env/var/lib/postgresql/data/base/1/2835 b/zbx_env/var/lib/postgresql/data/base/1/2835 deleted file mode 100644 index c65e18b5e..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/1/2835 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/1/2836 b/zbx_env/var/lib/postgresql/data/base/1/2836 deleted file mode 100644 index e69de29bb..000000000 diff --git a/zbx_env/var/lib/postgresql/data/base/1/2836_vm b/zbx_env/var/lib/postgresql/data/base/1/2836_vm deleted file mode 100644 index e69de29bb..000000000 diff --git a/zbx_env/var/lib/postgresql/data/base/1/2837 b/zbx_env/var/lib/postgresql/data/base/1/2837 deleted file mode 100644 index 4ef00f573..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/1/2837 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/1/2838 b/zbx_env/var/lib/postgresql/data/base/1/2838 deleted file mode 100644 index 5efb4501d..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/1/2838 and /dev/null 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 deleted file mode 100644 index 72ba496ec..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/1/2838_fsm and /dev/null 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 deleted file mode 100644 index 962055edb..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/1/2838_vm and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/1/2839 b/zbx_env/var/lib/postgresql/data/base/1/2839 deleted file mode 100644 index 9b1c1e571..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/1/2839 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/1/2840 b/zbx_env/var/lib/postgresql/data/base/1/2840 deleted file mode 100644 index 840ad144c..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/1/2840 and /dev/null 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 deleted file mode 100644 index 7d14d0cfe..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/1/2840_fsm and /dev/null 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 deleted file mode 100644 index fee0e0473..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/1/2840_vm and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/1/2841 b/zbx_env/var/lib/postgresql/data/base/1/2841 deleted file mode 100644 index 44212c4cd..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/1/2841 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/1/2995 b/zbx_env/var/lib/postgresql/data/base/1/2995 deleted file mode 100644 index e69de29bb..000000000 diff --git a/zbx_env/var/lib/postgresql/data/base/1/2995_vm b/zbx_env/var/lib/postgresql/data/base/1/2995_vm deleted file mode 100644 index e69de29bb..000000000 diff --git a/zbx_env/var/lib/postgresql/data/base/1/2996 b/zbx_env/var/lib/postgresql/data/base/1/2996 deleted file mode 100644 index a1e392a5f..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/1/2996 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/1/3079 b/zbx_env/var/lib/postgresql/data/base/1/3079 deleted file mode 100644 index 2ac5237cb..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/1/3079 and /dev/null 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 deleted file mode 100644 index 7732d22b7..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/1/3079_fsm and /dev/null 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 deleted file mode 100644 index 44a2ff91e..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/1/3079_vm and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/1/3080 b/zbx_env/var/lib/postgresql/data/base/1/3080 deleted file mode 100644 index 91f8d4902..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/1/3080 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/1/3081 b/zbx_env/var/lib/postgresql/data/base/1/3081 deleted file mode 100644 index 8bc74ec63..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/1/3081 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/1/3085 b/zbx_env/var/lib/postgresql/data/base/1/3085 deleted file mode 100644 index 05c256fa5..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/1/3085 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/1/3118 b/zbx_env/var/lib/postgresql/data/base/1/3118 deleted file mode 100644 index e69de29bb..000000000 diff --git a/zbx_env/var/lib/postgresql/data/base/1/3118_vm b/zbx_env/var/lib/postgresql/data/base/1/3118_vm deleted file mode 100644 index e69de29bb..000000000 diff --git a/zbx_env/var/lib/postgresql/data/base/1/3119 b/zbx_env/var/lib/postgresql/data/base/1/3119 deleted file mode 100644 index cdf9c180f..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/1/3119 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/1/3164 b/zbx_env/var/lib/postgresql/data/base/1/3164 deleted file mode 100644 index a58c39469..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/1/3164 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/1/3256 b/zbx_env/var/lib/postgresql/data/base/1/3256 deleted file mode 100644 index e69de29bb..000000000 diff --git a/zbx_env/var/lib/postgresql/data/base/1/3256_vm b/zbx_env/var/lib/postgresql/data/base/1/3256_vm deleted file mode 100644 index e69de29bb..000000000 diff --git a/zbx_env/var/lib/postgresql/data/base/1/3257 b/zbx_env/var/lib/postgresql/data/base/1/3257 deleted file mode 100644 index fb1ff935a..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/1/3257 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/1/3258 b/zbx_env/var/lib/postgresql/data/base/1/3258 deleted file mode 100644 index 0b6aca02a..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/1/3258 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/1/3350 b/zbx_env/var/lib/postgresql/data/base/1/3350 deleted file mode 100644 index e69de29bb..000000000 diff --git a/zbx_env/var/lib/postgresql/data/base/1/3350_vm b/zbx_env/var/lib/postgresql/data/base/1/3350_vm deleted file mode 100644 index e69de29bb..000000000 diff --git a/zbx_env/var/lib/postgresql/data/base/1/3351 b/zbx_env/var/lib/postgresql/data/base/1/3351 deleted file mode 100644 index 485a7f339..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/1/3351 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/1/3379 b/zbx_env/var/lib/postgresql/data/base/1/3379 deleted file mode 100644 index 2b3165f78..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/1/3379 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/1/3380 b/zbx_env/var/lib/postgresql/data/base/1/3380 deleted file mode 100644 index 262c95057..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/1/3380 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/1/3381 b/zbx_env/var/lib/postgresql/data/base/1/3381 deleted file mode 100644 index e69de29bb..000000000 diff --git a/zbx_env/var/lib/postgresql/data/base/1/3381_vm b/zbx_env/var/lib/postgresql/data/base/1/3381_vm deleted file mode 100644 index e69de29bb..000000000 diff --git a/zbx_env/var/lib/postgresql/data/base/1/3394 b/zbx_env/var/lib/postgresql/data/base/1/3394 deleted file mode 100644 index b6a9edeae..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/1/3394 and /dev/null 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 deleted file mode 100644 index 9bf23e33a..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/1/3394_fsm and /dev/null 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 deleted file mode 100644 index 450f3d7c2..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/1/3394_vm and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/1/3395 b/zbx_env/var/lib/postgresql/data/base/1/3395 deleted file mode 100644 index 5bd6238c1..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/1/3395 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/1/3439 b/zbx_env/var/lib/postgresql/data/base/1/3439 deleted file mode 100644 index e69de29bb..000000000 diff --git a/zbx_env/var/lib/postgresql/data/base/1/3439_vm b/zbx_env/var/lib/postgresql/data/base/1/3439_vm deleted file mode 100644 index e69de29bb..000000000 diff --git a/zbx_env/var/lib/postgresql/data/base/1/3440 b/zbx_env/var/lib/postgresql/data/base/1/3440 deleted file mode 100644 index bae4de162..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/1/3440 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/1/3455 b/zbx_env/var/lib/postgresql/data/base/1/3455 deleted file mode 100644 index 0f1a7376e..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/1/3455 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/1/3456 b/zbx_env/var/lib/postgresql/data/base/1/3456 deleted file mode 100644 index 2bc0341f9..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/1/3456 and /dev/null 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 deleted file mode 100644 index ea43ee9d4..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/1/3456_fsm and /dev/null 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 deleted file mode 100644 index 7ac9233fc..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/1/3456_vm and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/1/3466 b/zbx_env/var/lib/postgresql/data/base/1/3466 deleted file mode 100644 index e69de29bb..000000000 diff --git a/zbx_env/var/lib/postgresql/data/base/1/3466_vm b/zbx_env/var/lib/postgresql/data/base/1/3466_vm deleted file mode 100644 index e69de29bb..000000000 diff --git a/zbx_env/var/lib/postgresql/data/base/1/3467 b/zbx_env/var/lib/postgresql/data/base/1/3467 deleted file mode 100644 index d28a66e55..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/1/3467 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/1/3468 b/zbx_env/var/lib/postgresql/data/base/1/3468 deleted file mode 100644 index 79b6e9472..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/1/3468 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/1/3501 b/zbx_env/var/lib/postgresql/data/base/1/3501 deleted file mode 100644 index e69de29bb..000000000 diff --git a/zbx_env/var/lib/postgresql/data/base/1/3501_vm b/zbx_env/var/lib/postgresql/data/base/1/3501_vm deleted file mode 100644 index e69de29bb..000000000 diff --git a/zbx_env/var/lib/postgresql/data/base/1/3502 b/zbx_env/var/lib/postgresql/data/base/1/3502 deleted file mode 100644 index 061a18dc6..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/1/3502 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/1/3503 b/zbx_env/var/lib/postgresql/data/base/1/3503 deleted file mode 100644 index ebd24c5cb..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/1/3503 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/1/3534 b/zbx_env/var/lib/postgresql/data/base/1/3534 deleted file mode 100644 index 4fdd31ed7..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/1/3534 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/1/3541 b/zbx_env/var/lib/postgresql/data/base/1/3541 deleted file mode 100644 index ad69913a9..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/1/3541 and /dev/null 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 deleted file mode 100644 index 62f015667..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/1/3541_fsm and /dev/null 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 deleted file mode 100644 index 338f46301..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/1/3541_vm and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/1/3542 b/zbx_env/var/lib/postgresql/data/base/1/3542 deleted file mode 100644 index bf7c3330f..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/1/3542 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/1/3574 b/zbx_env/var/lib/postgresql/data/base/1/3574 deleted file mode 100644 index 0861ca0e2..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/1/3574 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/1/3575 b/zbx_env/var/lib/postgresql/data/base/1/3575 deleted file mode 100644 index 2b57a8ed5..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/1/3575 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/1/3576 b/zbx_env/var/lib/postgresql/data/base/1/3576 deleted file mode 100644 index e69de29bb..000000000 diff --git a/zbx_env/var/lib/postgresql/data/base/1/3576_vm b/zbx_env/var/lib/postgresql/data/base/1/3576_vm deleted file mode 100644 index e69de29bb..000000000 diff --git a/zbx_env/var/lib/postgresql/data/base/1/3596 b/zbx_env/var/lib/postgresql/data/base/1/3596 deleted file mode 100644 index e69de29bb..000000000 diff --git a/zbx_env/var/lib/postgresql/data/base/1/3596_vm b/zbx_env/var/lib/postgresql/data/base/1/3596_vm deleted file mode 100644 index e69de29bb..000000000 diff --git a/zbx_env/var/lib/postgresql/data/base/1/3597 b/zbx_env/var/lib/postgresql/data/base/1/3597 deleted file mode 100644 index 8684c812e..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/1/3597 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/1/3598 b/zbx_env/var/lib/postgresql/data/base/1/3598 deleted file mode 100644 index e69de29bb..000000000 diff --git a/zbx_env/var/lib/postgresql/data/base/1/3598_vm b/zbx_env/var/lib/postgresql/data/base/1/3598_vm deleted file mode 100644 index e69de29bb..000000000 diff --git a/zbx_env/var/lib/postgresql/data/base/1/3599 b/zbx_env/var/lib/postgresql/data/base/1/3599 deleted file mode 100644 index d48e4a663..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/1/3599 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/1/3600 b/zbx_env/var/lib/postgresql/data/base/1/3600 deleted file mode 100644 index 6f5b9c650..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/1/3600 and /dev/null 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 deleted file mode 100644 index ffd4b1594..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/1/3600_fsm and /dev/null 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 deleted file mode 100644 index eda7dfa8b..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/1/3600_vm and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/1/3601 b/zbx_env/var/lib/postgresql/data/base/1/3601 deleted file mode 100644 index 065e4e19a..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/1/3601 and /dev/null 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 deleted file mode 100644 index 7732d22b7..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/1/3601_fsm and /dev/null 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 deleted file mode 100644 index ccebc9717..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/1/3601_vm and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/1/3602 b/zbx_env/var/lib/postgresql/data/base/1/3602 deleted file mode 100644 index a4991530e..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/1/3602 and /dev/null 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 deleted file mode 100644 index 7cbf83404..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/1/3602_fsm and /dev/null 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 deleted file mode 100644 index 51db8d829..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/1/3602_vm and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/1/3603 b/zbx_env/var/lib/postgresql/data/base/1/3603 deleted file mode 100644 index 7ec261796..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/1/3603 and /dev/null 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 deleted file mode 100644 index 6d00d6859..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/1/3603_fsm and /dev/null 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 deleted file mode 100644 index d7c5456fe..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/1/3603_vm and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/1/3604 b/zbx_env/var/lib/postgresql/data/base/1/3604 deleted file mode 100644 index 8c2e843bd..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/1/3604 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/1/3605 b/zbx_env/var/lib/postgresql/data/base/1/3605 deleted file mode 100644 index 4c51aeb50..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/1/3605 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/1/3606 b/zbx_env/var/lib/postgresql/data/base/1/3606 deleted file mode 100644 index 973f81de1..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/1/3606 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/1/3607 b/zbx_env/var/lib/postgresql/data/base/1/3607 deleted file mode 100644 index bb91efdd3..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/1/3607 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/1/3608 b/zbx_env/var/lib/postgresql/data/base/1/3608 deleted file mode 100644 index edd6032b2..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/1/3608 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/1/3609 b/zbx_env/var/lib/postgresql/data/base/1/3609 deleted file mode 100644 index d723790f6..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/1/3609 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/1/3712 b/zbx_env/var/lib/postgresql/data/base/1/3712 deleted file mode 100644 index 972327c1f..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/1/3712 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/1/3764 b/zbx_env/var/lib/postgresql/data/base/1/3764 deleted file mode 100644 index 8b7953258..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/1/3764 and /dev/null 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 deleted file mode 100644 index d041693e8..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/1/3764_fsm and /dev/null 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 deleted file mode 100644 index 81e9a8d75..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/1/3764_vm and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/1/3766 b/zbx_env/var/lib/postgresql/data/base/1/3766 deleted file mode 100644 index adc6bd05b..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/1/3766 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/1/3767 b/zbx_env/var/lib/postgresql/data/base/1/3767 deleted file mode 100644 index 8a13ca18a..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/1/3767 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/1/3997 b/zbx_env/var/lib/postgresql/data/base/1/3997 deleted file mode 100644 index 8bef1d51c..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/1/3997 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/1/5002 b/zbx_env/var/lib/postgresql/data/base/1/5002 deleted file mode 100644 index a107339a5..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/1/5002 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/1/548 b/zbx_env/var/lib/postgresql/data/base/1/548 deleted file mode 100644 index 95a149a1b..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/1/548 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/1/549 b/zbx_env/var/lib/postgresql/data/base/1/549 deleted file mode 100644 index b8d72f418..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/1/549 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/1/6102 b/zbx_env/var/lib/postgresql/data/base/1/6102 deleted file mode 100644 index e69de29bb..000000000 diff --git a/zbx_env/var/lib/postgresql/data/base/1/6102_vm b/zbx_env/var/lib/postgresql/data/base/1/6102_vm deleted file mode 100644 index e69de29bb..000000000 diff --git a/zbx_env/var/lib/postgresql/data/base/1/6104 b/zbx_env/var/lib/postgresql/data/base/1/6104 deleted file mode 100644 index e69de29bb..000000000 diff --git a/zbx_env/var/lib/postgresql/data/base/1/6104_vm b/zbx_env/var/lib/postgresql/data/base/1/6104_vm deleted file mode 100644 index e69de29bb..000000000 diff --git a/zbx_env/var/lib/postgresql/data/base/1/6106 b/zbx_env/var/lib/postgresql/data/base/1/6106 deleted file mode 100644 index e69de29bb..000000000 diff --git a/zbx_env/var/lib/postgresql/data/base/1/6106_vm b/zbx_env/var/lib/postgresql/data/base/1/6106_vm deleted file mode 100644 index e69de29bb..000000000 diff --git a/zbx_env/var/lib/postgresql/data/base/1/6110 b/zbx_env/var/lib/postgresql/data/base/1/6110 deleted file mode 100644 index 88905e93c..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/1/6110 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/1/6111 b/zbx_env/var/lib/postgresql/data/base/1/6111 deleted file mode 100644 index fc5fe1e60..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/1/6111 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/1/6112 b/zbx_env/var/lib/postgresql/data/base/1/6112 deleted file mode 100644 index 2c009e3c0..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/1/6112 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/1/6113 b/zbx_env/var/lib/postgresql/data/base/1/6113 deleted file mode 100644 index 09ca7f38a..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/1/6113 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/1/6117 b/zbx_env/var/lib/postgresql/data/base/1/6117 deleted file mode 100644 index b2a8f2639..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/1/6117 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/1/826 b/zbx_env/var/lib/postgresql/data/base/1/826 deleted file mode 100644 index e69de29bb..000000000 diff --git a/zbx_env/var/lib/postgresql/data/base/1/826_vm b/zbx_env/var/lib/postgresql/data/base/1/826_vm deleted file mode 100644 index e69de29bb..000000000 diff --git a/zbx_env/var/lib/postgresql/data/base/1/827 b/zbx_env/var/lib/postgresql/data/base/1/827 deleted file mode 100644 index 45ca171f5..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/1/827 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/1/828 b/zbx_env/var/lib/postgresql/data/base/1/828 deleted file mode 100644 index 9543d4d5d..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/1/828 and /dev/null 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 deleted file mode 100644 index f599e28b8..000000000 --- a/zbx_env/var/lib/postgresql/data/base/1/PG_VERSION +++ /dev/null @@ -1 +0,0 @@ -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 deleted file mode 100644 index 428c97e9a..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/1/pg_filenode.map and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/12993/112 b/zbx_env/var/lib/postgresql/data/base/12993/112 deleted file mode 100644 index 8b130c348..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/12993/112 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/12993/113 b/zbx_env/var/lib/postgresql/data/base/12993/113 deleted file mode 100644 index aca9f3471..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/12993/113 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/12993/1247 b/zbx_env/var/lib/postgresql/data/base/12993/1247 deleted file mode 100644 index cd6a460f8..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/12993/1247 and /dev/null 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 deleted file mode 100644 index 2afa6c37d..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/12993/1247_fsm and /dev/null 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 deleted file mode 100644 index ee2235651..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/12993/1247_vm and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/12993/1249 b/zbx_env/var/lib/postgresql/data/base/12993/1249 deleted file mode 100644 index 03ac5bae9..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/12993/1249 and /dev/null 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 deleted file mode 100644 index 620636091..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/12993/1249_fsm and /dev/null 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 deleted file mode 100644 index dcac89013..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/12993/1249_vm and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/12993/1255 b/zbx_env/var/lib/postgresql/data/base/12993/1255 deleted file mode 100644 index 5db8ed232..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/12993/1255 and /dev/null 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 deleted file mode 100644 index 72da66c0e..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/12993/1255_fsm and /dev/null 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 deleted file mode 100644 index ba43c4836..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/12993/1255_vm and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/12993/1259 b/zbx_env/var/lib/postgresql/data/base/12993/1259 deleted file mode 100644 index 20e20e134..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/12993/1259 and /dev/null 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 deleted file mode 100644 index e172feb90..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/12993/1259_fsm and /dev/null 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 deleted file mode 100644 index eba7a64a4..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/12993/1259_vm and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/12993/12829 b/zbx_env/var/lib/postgresql/data/base/12993/12829 deleted file mode 100644 index ac7e7e56a..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/12993/12829 and /dev/null 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 deleted file mode 100644 index 19948ba3d..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/12993/12829_fsm and /dev/null 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 deleted file mode 100644 index 648054e0f..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/12993/12829_vm and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/12993/12831 b/zbx_env/var/lib/postgresql/data/base/12993/12831 deleted file mode 100644 index e69de29bb..000000000 diff --git a/zbx_env/var/lib/postgresql/data/base/12993/12833 b/zbx_env/var/lib/postgresql/data/base/12993/12833 deleted file mode 100644 index 5efdd5c62..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/12993/12833 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/12993/12834 b/zbx_env/var/lib/postgresql/data/base/12993/12834 deleted file mode 100644 index 6147c7e0a..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/12993/12834 and /dev/null 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 deleted file mode 100644 index ce7c26eb6..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/12993/12834_fsm and /dev/null 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 deleted file mode 100644 index 025df3da1..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/12993/12834_vm and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/12993/12836 b/zbx_env/var/lib/postgresql/data/base/12993/12836 deleted file mode 100644 index e69de29bb..000000000 diff --git a/zbx_env/var/lib/postgresql/data/base/12993/12838 b/zbx_env/var/lib/postgresql/data/base/12993/12838 deleted file mode 100644 index ab2a70f83..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/12993/12838 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/12993/12839 b/zbx_env/var/lib/postgresql/data/base/12993/12839 deleted file mode 100644 index 5c80dacb3..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/12993/12839 and /dev/null 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 deleted file mode 100644 index 98dc620ab..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/12993/12839_fsm and /dev/null 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 deleted file mode 100644 index 602207e10..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/12993/12839_vm and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/12993/12841 b/zbx_env/var/lib/postgresql/data/base/12993/12841 deleted file mode 100644 index e69de29bb..000000000 diff --git a/zbx_env/var/lib/postgresql/data/base/12993/12843 b/zbx_env/var/lib/postgresql/data/base/12993/12843 deleted file mode 100644 index 01f3abd46..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/12993/12843 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/12993/12844 b/zbx_env/var/lib/postgresql/data/base/12993/12844 deleted file mode 100644 index 0d56ac3f3..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/12993/12844 and /dev/null 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 deleted file mode 100644 index f8a0e258a..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/12993/12844_fsm and /dev/null 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 deleted file mode 100644 index a853e6e13..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/12993/12844_vm and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/12993/12846 b/zbx_env/var/lib/postgresql/data/base/12993/12846 deleted file mode 100644 index e69de29bb..000000000 diff --git a/zbx_env/var/lib/postgresql/data/base/12993/12848 b/zbx_env/var/lib/postgresql/data/base/12993/12848 deleted file mode 100644 index a3e9f3820..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/12993/12848 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/12993/12849 b/zbx_env/var/lib/postgresql/data/base/12993/12849 deleted file mode 100644 index 3db9a1627..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/12993/12849 and /dev/null 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 deleted file mode 100644 index ecbfaee5e..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/12993/12849_fsm and /dev/null 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 deleted file mode 100644 index dddd66103..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/12993/12849_vm and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/12993/12851 b/zbx_env/var/lib/postgresql/data/base/12993/12851 deleted file mode 100644 index e69de29bb..000000000 diff --git a/zbx_env/var/lib/postgresql/data/base/12993/12853 b/zbx_env/var/lib/postgresql/data/base/12993/12853 deleted file mode 100644 index 4c0a3393e..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/12993/12853 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/12993/12854 b/zbx_env/var/lib/postgresql/data/base/12993/12854 deleted file mode 100644 index afc566762..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/12993/12854 and /dev/null 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 deleted file mode 100644 index a836ddf75..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/12993/12854_fsm and /dev/null 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 deleted file mode 100644 index 763cfb136..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/12993/12854_vm and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/12993/12856 b/zbx_env/var/lib/postgresql/data/base/12993/12856 deleted file mode 100644 index e69de29bb..000000000 diff --git a/zbx_env/var/lib/postgresql/data/base/12993/12858 b/zbx_env/var/lib/postgresql/data/base/12993/12858 deleted file mode 100644 index e81edf7b4..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/12993/12858 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/12993/12859 b/zbx_env/var/lib/postgresql/data/base/12993/12859 deleted file mode 100644 index e69de29bb..000000000 diff --git a/zbx_env/var/lib/postgresql/data/base/12993/12861 b/zbx_env/var/lib/postgresql/data/base/12993/12861 deleted file mode 100644 index e69de29bb..000000000 diff --git a/zbx_env/var/lib/postgresql/data/base/12993/12863 b/zbx_env/var/lib/postgresql/data/base/12993/12863 deleted file mode 100644 index d4d51b3d9..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/12993/12863 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/12993/1417 b/zbx_env/var/lib/postgresql/data/base/12993/1417 deleted file mode 100644 index e69de29bb..000000000 diff --git a/zbx_env/var/lib/postgresql/data/base/12993/1417_vm b/zbx_env/var/lib/postgresql/data/base/12993/1417_vm deleted file mode 100644 index e69de29bb..000000000 diff --git a/zbx_env/var/lib/postgresql/data/base/12993/1418 b/zbx_env/var/lib/postgresql/data/base/12993/1418 deleted file mode 100644 index e69de29bb..000000000 diff --git a/zbx_env/var/lib/postgresql/data/base/12993/1418_vm b/zbx_env/var/lib/postgresql/data/base/12993/1418_vm deleted file mode 100644 index e69de29bb..000000000 diff --git a/zbx_env/var/lib/postgresql/data/base/12993/174 b/zbx_env/var/lib/postgresql/data/base/12993/174 deleted file mode 100644 index edad2c14c..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/12993/174 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/12993/175 b/zbx_env/var/lib/postgresql/data/base/12993/175 deleted file mode 100644 index a8041c693..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/12993/175 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/12993/2187 b/zbx_env/var/lib/postgresql/data/base/12993/2187 deleted file mode 100644 index d39a0b782..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/12993/2187 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/12993/2224 b/zbx_env/var/lib/postgresql/data/base/12993/2224 deleted file mode 100644 index e69de29bb..000000000 diff --git a/zbx_env/var/lib/postgresql/data/base/12993/2224_vm b/zbx_env/var/lib/postgresql/data/base/12993/2224_vm deleted file mode 100644 index e69de29bb..000000000 diff --git a/zbx_env/var/lib/postgresql/data/base/12993/2328 b/zbx_env/var/lib/postgresql/data/base/12993/2328 deleted file mode 100644 index e69de29bb..000000000 diff --git a/zbx_env/var/lib/postgresql/data/base/12993/2328_vm b/zbx_env/var/lib/postgresql/data/base/12993/2328_vm deleted file mode 100644 index e69de29bb..000000000 diff --git a/zbx_env/var/lib/postgresql/data/base/12993/2336 b/zbx_env/var/lib/postgresql/data/base/12993/2336 deleted file mode 100644 index e69de29bb..000000000 diff --git a/zbx_env/var/lib/postgresql/data/base/12993/2336_vm b/zbx_env/var/lib/postgresql/data/base/12993/2336_vm deleted file mode 100644 index e69de29bb..000000000 diff --git a/zbx_env/var/lib/postgresql/data/base/12993/2337 b/zbx_env/var/lib/postgresql/data/base/12993/2337 deleted file mode 100644 index c16658041..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/12993/2337 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/12993/2600 b/zbx_env/var/lib/postgresql/data/base/12993/2600 deleted file mode 100644 index 980d98e71..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/12993/2600 and /dev/null 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 deleted file mode 100644 index e63ffab3e..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/12993/2600_fsm and /dev/null 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 deleted file mode 100644 index be059bc07..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/12993/2600_vm and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/12993/2601 b/zbx_env/var/lib/postgresql/data/base/12993/2601 deleted file mode 100644 index 1d44fa56b..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/12993/2601 and /dev/null 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 deleted file mode 100644 index 0908076c0..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/12993/2601_fsm and /dev/null 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 deleted file mode 100644 index 2aa5dcdb5..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/12993/2601_vm and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/12993/2602 b/zbx_env/var/lib/postgresql/data/base/12993/2602 deleted file mode 100644 index 66f5754af..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/12993/2602 and /dev/null 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 deleted file mode 100644 index 5ed43b88a..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/12993/2602_fsm and /dev/null 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 deleted file mode 100644 index d1b65bdb8..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/12993/2602_vm and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/12993/2603 b/zbx_env/var/lib/postgresql/data/base/12993/2603 deleted file mode 100644 index a51df6676..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/12993/2603 and /dev/null 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 deleted file mode 100644 index f507d0e9f..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/12993/2603_fsm and /dev/null 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 deleted file mode 100644 index 95728db4a..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/12993/2603_vm and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/12993/2604 b/zbx_env/var/lib/postgresql/data/base/12993/2604 deleted file mode 100644 index e69de29bb..000000000 diff --git a/zbx_env/var/lib/postgresql/data/base/12993/2604_vm b/zbx_env/var/lib/postgresql/data/base/12993/2604_vm deleted file mode 100644 index e69de29bb..000000000 diff --git a/zbx_env/var/lib/postgresql/data/base/12993/2605 b/zbx_env/var/lib/postgresql/data/base/12993/2605 deleted file mode 100644 index 45f16c079..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/12993/2605 and /dev/null 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 deleted file mode 100644 index c1b0e039f..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/12993/2605_fsm and /dev/null 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 deleted file mode 100644 index bd231050a..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/12993/2605_vm and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/12993/2606 b/zbx_env/var/lib/postgresql/data/base/12993/2606 deleted file mode 100644 index 163eee21e..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/12993/2606 and /dev/null 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 deleted file mode 100644 index d37e4dd05..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/12993/2606_fsm and /dev/null 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 deleted file mode 100644 index 4301f6b95..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/12993/2606_vm and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/12993/2607 b/zbx_env/var/lib/postgresql/data/base/12993/2607 deleted file mode 100644 index 1ecadcbc8..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/12993/2607 and /dev/null 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 deleted file mode 100644 index 5b066f1a3..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/12993/2607_fsm and /dev/null 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 deleted file mode 100644 index 913a86769..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/12993/2607_vm and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/12993/2608 b/zbx_env/var/lib/postgresql/data/base/12993/2608 deleted file mode 100644 index 49c4af1cd..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/12993/2608 and /dev/null 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 deleted file mode 100644 index 106a100e5..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/12993/2608_fsm and /dev/null 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 deleted file mode 100644 index b4ec88c13..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/12993/2608_vm and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/12993/2609 b/zbx_env/var/lib/postgresql/data/base/12993/2609 deleted file mode 100644 index 55d48b226..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/12993/2609 and /dev/null 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 deleted file mode 100644 index 8fa6e5fa6..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/12993/2609_fsm and /dev/null 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 deleted file mode 100644 index a459f2c88..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/12993/2609_vm and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/12993/2610 b/zbx_env/var/lib/postgresql/data/base/12993/2610 deleted file mode 100644 index b2c1cffbb..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/12993/2610 and /dev/null 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 deleted file mode 100644 index 6a556770a..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/12993/2610_fsm and /dev/null 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 deleted file mode 100644 index a2cb5435a..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/12993/2610_vm and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/12993/2611 b/zbx_env/var/lib/postgresql/data/base/12993/2611 deleted file mode 100644 index e69de29bb..000000000 diff --git a/zbx_env/var/lib/postgresql/data/base/12993/2611_vm b/zbx_env/var/lib/postgresql/data/base/12993/2611_vm deleted file mode 100644 index e69de29bb..000000000 diff --git a/zbx_env/var/lib/postgresql/data/base/12993/2612 b/zbx_env/var/lib/postgresql/data/base/12993/2612 deleted file mode 100644 index 92362df9a..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/12993/2612 and /dev/null 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 deleted file mode 100644 index 877976acf..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/12993/2612_fsm and /dev/null 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 deleted file mode 100644 index 27aad7785..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/12993/2612_vm and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/12993/2613 b/zbx_env/var/lib/postgresql/data/base/12993/2613 deleted file mode 100644 index e69de29bb..000000000 diff --git a/zbx_env/var/lib/postgresql/data/base/12993/2613_vm b/zbx_env/var/lib/postgresql/data/base/12993/2613_vm deleted file mode 100644 index e69de29bb..000000000 diff --git a/zbx_env/var/lib/postgresql/data/base/12993/2615 b/zbx_env/var/lib/postgresql/data/base/12993/2615 deleted file mode 100644 index f81cca3d5..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/12993/2615 and /dev/null 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 deleted file mode 100644 index 948882ce6..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/12993/2615_fsm and /dev/null 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 deleted file mode 100644 index 0ceaa2a80..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/12993/2615_vm and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/12993/2616 b/zbx_env/var/lib/postgresql/data/base/12993/2616 deleted file mode 100644 index 19f42857d..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/12993/2616 and /dev/null 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 deleted file mode 100644 index 995a05b3c..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/12993/2616_fsm and /dev/null 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 deleted file mode 100644 index dfb995f88..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/12993/2616_vm and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/12993/2617 b/zbx_env/var/lib/postgresql/data/base/12993/2617 deleted file mode 100644 index d989d35e2..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/12993/2617 and /dev/null 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 deleted file mode 100644 index cb2a806b3..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/12993/2617_fsm and /dev/null 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 deleted file mode 100644 index 678b7f7f3..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/12993/2617_vm and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/12993/2618 b/zbx_env/var/lib/postgresql/data/base/12993/2618 deleted file mode 100644 index 8a17c1706..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/12993/2618 and /dev/null 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 deleted file mode 100644 index 2379916aa..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/12993/2618_fsm and /dev/null 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 deleted file mode 100644 index 4b06dd76e..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/12993/2618_vm and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/12993/2619 b/zbx_env/var/lib/postgresql/data/base/12993/2619 deleted file mode 100644 index c14ecd8fa..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/12993/2619 and /dev/null 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 deleted file mode 100644 index 81f80a5b6..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/12993/2619_fsm and /dev/null 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 deleted file mode 100644 index 554e94eb4..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/12993/2619_vm and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/12993/2620 b/zbx_env/var/lib/postgresql/data/base/12993/2620 deleted file mode 100644 index e69de29bb..000000000 diff --git a/zbx_env/var/lib/postgresql/data/base/12993/2620_vm b/zbx_env/var/lib/postgresql/data/base/12993/2620_vm deleted file mode 100644 index e69de29bb..000000000 diff --git a/zbx_env/var/lib/postgresql/data/base/12993/2650 b/zbx_env/var/lib/postgresql/data/base/12993/2650 deleted file mode 100644 index 8a0d71d50..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/12993/2650 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/12993/2651 b/zbx_env/var/lib/postgresql/data/base/12993/2651 deleted file mode 100644 index 29e245e35..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/12993/2651 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/12993/2652 b/zbx_env/var/lib/postgresql/data/base/12993/2652 deleted file mode 100644 index 9e26143e4..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/12993/2652 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/12993/2653 b/zbx_env/var/lib/postgresql/data/base/12993/2653 deleted file mode 100644 index e02db67df..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/12993/2653 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/12993/2654 b/zbx_env/var/lib/postgresql/data/base/12993/2654 deleted file mode 100644 index 95363af10..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/12993/2654 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/12993/2655 b/zbx_env/var/lib/postgresql/data/base/12993/2655 deleted file mode 100644 index a9a12adf9..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/12993/2655 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/12993/2656 b/zbx_env/var/lib/postgresql/data/base/12993/2656 deleted file mode 100644 index ba509bf8d..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/12993/2656 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/12993/2657 b/zbx_env/var/lib/postgresql/data/base/12993/2657 deleted file mode 100644 index fbc747331..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/12993/2657 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/12993/2658 b/zbx_env/var/lib/postgresql/data/base/12993/2658 deleted file mode 100644 index d2ceec244..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/12993/2658 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/12993/2659 b/zbx_env/var/lib/postgresql/data/base/12993/2659 deleted file mode 100644 index 1f1a4947f..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/12993/2659 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/12993/2660 b/zbx_env/var/lib/postgresql/data/base/12993/2660 deleted file mode 100644 index d16f41a42..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/12993/2660 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/12993/2661 b/zbx_env/var/lib/postgresql/data/base/12993/2661 deleted file mode 100644 index 59ade838f..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/12993/2661 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/12993/2662 b/zbx_env/var/lib/postgresql/data/base/12993/2662 deleted file mode 100644 index 6026eaac9..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/12993/2662 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/12993/2663 b/zbx_env/var/lib/postgresql/data/base/12993/2663 deleted file mode 100644 index 7ce14003d..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/12993/2663 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/12993/2664 b/zbx_env/var/lib/postgresql/data/base/12993/2664 deleted file mode 100644 index c44bbad79..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/12993/2664 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/12993/2665 b/zbx_env/var/lib/postgresql/data/base/12993/2665 deleted file mode 100644 index 63ca88a3e..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/12993/2665 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/12993/2666 b/zbx_env/var/lib/postgresql/data/base/12993/2666 deleted file mode 100644 index e7c92d1f5..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/12993/2666 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/12993/2667 b/zbx_env/var/lib/postgresql/data/base/12993/2667 deleted file mode 100644 index 5755a624a..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/12993/2667 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/12993/2668 b/zbx_env/var/lib/postgresql/data/base/12993/2668 deleted file mode 100644 index 11a6b5270..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/12993/2668 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/12993/2669 b/zbx_env/var/lib/postgresql/data/base/12993/2669 deleted file mode 100644 index 79d31ebcc..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/12993/2669 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/12993/2670 b/zbx_env/var/lib/postgresql/data/base/12993/2670 deleted file mode 100644 index 6184b908d..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/12993/2670 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/12993/2673 b/zbx_env/var/lib/postgresql/data/base/12993/2673 deleted file mode 100644 index 7f74fdd5c..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/12993/2673 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/12993/2674 b/zbx_env/var/lib/postgresql/data/base/12993/2674 deleted file mode 100644 index 1fb21fcba..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/12993/2674 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/12993/2675 b/zbx_env/var/lib/postgresql/data/base/12993/2675 deleted file mode 100644 index c88a53bd5..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/12993/2675 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/12993/2678 b/zbx_env/var/lib/postgresql/data/base/12993/2678 deleted file mode 100644 index 5239feded..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/12993/2678 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/12993/2679 b/zbx_env/var/lib/postgresql/data/base/12993/2679 deleted file mode 100644 index cb7b561bb..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/12993/2679 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/12993/2680 b/zbx_env/var/lib/postgresql/data/base/12993/2680 deleted file mode 100644 index 876da95b2..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/12993/2680 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/12993/2681 b/zbx_env/var/lib/postgresql/data/base/12993/2681 deleted file mode 100644 index 4987623fd..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/12993/2681 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/12993/2682 b/zbx_env/var/lib/postgresql/data/base/12993/2682 deleted file mode 100644 index 7943e766e..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/12993/2682 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/12993/2683 b/zbx_env/var/lib/postgresql/data/base/12993/2683 deleted file mode 100644 index 636f10144..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/12993/2683 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/12993/2684 b/zbx_env/var/lib/postgresql/data/base/12993/2684 deleted file mode 100644 index f54f9598d..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/12993/2684 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/12993/2685 b/zbx_env/var/lib/postgresql/data/base/12993/2685 deleted file mode 100644 index 95d7fde28..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/12993/2685 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/12993/2686 b/zbx_env/var/lib/postgresql/data/base/12993/2686 deleted file mode 100644 index bc86cec09..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/12993/2686 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/12993/2687 b/zbx_env/var/lib/postgresql/data/base/12993/2687 deleted file mode 100644 index f080504d5..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/12993/2687 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/12993/2688 b/zbx_env/var/lib/postgresql/data/base/12993/2688 deleted file mode 100644 index 47572a662..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/12993/2688 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/12993/2689 b/zbx_env/var/lib/postgresql/data/base/12993/2689 deleted file mode 100644 index 4333d769f..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/12993/2689 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/12993/2690 b/zbx_env/var/lib/postgresql/data/base/12993/2690 deleted file mode 100644 index 89fab01a4..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/12993/2690 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/12993/2691 b/zbx_env/var/lib/postgresql/data/base/12993/2691 deleted file mode 100644 index 08dade0dd..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/12993/2691 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/12993/2692 b/zbx_env/var/lib/postgresql/data/base/12993/2692 deleted file mode 100644 index 150467201..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/12993/2692 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/12993/2693 b/zbx_env/var/lib/postgresql/data/base/12993/2693 deleted file mode 100644 index ef76c5b32..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/12993/2693 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/12993/2696 b/zbx_env/var/lib/postgresql/data/base/12993/2696 deleted file mode 100644 index 69014bb1f..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/12993/2696 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/12993/2699 b/zbx_env/var/lib/postgresql/data/base/12993/2699 deleted file mode 100644 index 9a9b94663..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/12993/2699 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/12993/2701 b/zbx_env/var/lib/postgresql/data/base/12993/2701 deleted file mode 100644 index 0376dbefa..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/12993/2701 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/12993/2702 b/zbx_env/var/lib/postgresql/data/base/12993/2702 deleted file mode 100644 index b2e4287f6..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/12993/2702 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/12993/2703 b/zbx_env/var/lib/postgresql/data/base/12993/2703 deleted file mode 100644 index d7477ab76..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/12993/2703 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/12993/2704 b/zbx_env/var/lib/postgresql/data/base/12993/2704 deleted file mode 100644 index a18deab09..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/12993/2704 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/12993/2753 b/zbx_env/var/lib/postgresql/data/base/12993/2753 deleted file mode 100644 index 73f903165..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/12993/2753 and /dev/null 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 deleted file mode 100644 index 0787df53d..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/12993/2753_fsm and /dev/null 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 deleted file mode 100644 index 6c8ced900..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/12993/2753_vm and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/12993/2754 b/zbx_env/var/lib/postgresql/data/base/12993/2754 deleted file mode 100644 index 5a44a7962..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/12993/2754 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/12993/2755 b/zbx_env/var/lib/postgresql/data/base/12993/2755 deleted file mode 100644 index fac11c420..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/12993/2755 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/12993/2756 b/zbx_env/var/lib/postgresql/data/base/12993/2756 deleted file mode 100644 index 5b9bc166b..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/12993/2756 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/12993/2757 b/zbx_env/var/lib/postgresql/data/base/12993/2757 deleted file mode 100644 index 1bade66ff..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/12993/2757 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/12993/2830 b/zbx_env/var/lib/postgresql/data/base/12993/2830 deleted file mode 100644 index e69de29bb..000000000 diff --git a/zbx_env/var/lib/postgresql/data/base/12993/2830_vm b/zbx_env/var/lib/postgresql/data/base/12993/2830_vm deleted file mode 100644 index e69de29bb..000000000 diff --git a/zbx_env/var/lib/postgresql/data/base/12993/2831 b/zbx_env/var/lib/postgresql/data/base/12993/2831 deleted file mode 100644 index b0c0ed88c..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/12993/2831 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/12993/2832 b/zbx_env/var/lib/postgresql/data/base/12993/2832 deleted file mode 100644 index e69de29bb..000000000 diff --git a/zbx_env/var/lib/postgresql/data/base/12993/2832_vm b/zbx_env/var/lib/postgresql/data/base/12993/2832_vm deleted file mode 100644 index e69de29bb..000000000 diff --git a/zbx_env/var/lib/postgresql/data/base/12993/2833 b/zbx_env/var/lib/postgresql/data/base/12993/2833 deleted file mode 100644 index e70ee62b0..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/12993/2833 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/12993/2834 b/zbx_env/var/lib/postgresql/data/base/12993/2834 deleted file mode 100644 index e69de29bb..000000000 diff --git a/zbx_env/var/lib/postgresql/data/base/12993/2834_vm b/zbx_env/var/lib/postgresql/data/base/12993/2834_vm deleted file mode 100644 index e69de29bb..000000000 diff --git a/zbx_env/var/lib/postgresql/data/base/12993/2835 b/zbx_env/var/lib/postgresql/data/base/12993/2835 deleted file mode 100644 index c65e18b5e..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/12993/2835 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/12993/2836 b/zbx_env/var/lib/postgresql/data/base/12993/2836 deleted file mode 100644 index e69de29bb..000000000 diff --git a/zbx_env/var/lib/postgresql/data/base/12993/2836_vm b/zbx_env/var/lib/postgresql/data/base/12993/2836_vm deleted file mode 100644 index e69de29bb..000000000 diff --git a/zbx_env/var/lib/postgresql/data/base/12993/2837 b/zbx_env/var/lib/postgresql/data/base/12993/2837 deleted file mode 100644 index 4ef00f573..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/12993/2837 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/12993/2838 b/zbx_env/var/lib/postgresql/data/base/12993/2838 deleted file mode 100644 index 5efb4501d..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/12993/2838 and /dev/null 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 deleted file mode 100644 index 72ba496ec..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/12993/2838_fsm and /dev/null 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 deleted file mode 100644 index 962055edb..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/12993/2838_vm and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/12993/2839 b/zbx_env/var/lib/postgresql/data/base/12993/2839 deleted file mode 100644 index 9b1c1e571..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/12993/2839 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/12993/2840 b/zbx_env/var/lib/postgresql/data/base/12993/2840 deleted file mode 100644 index 840ad144c..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/12993/2840 and /dev/null 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 deleted file mode 100644 index 7d14d0cfe..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/12993/2840_fsm and /dev/null 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 deleted file mode 100644 index fee0e0473..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/12993/2840_vm and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/12993/2841 b/zbx_env/var/lib/postgresql/data/base/12993/2841 deleted file mode 100644 index 44212c4cd..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/12993/2841 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/12993/2995 b/zbx_env/var/lib/postgresql/data/base/12993/2995 deleted file mode 100644 index e69de29bb..000000000 diff --git a/zbx_env/var/lib/postgresql/data/base/12993/2995_vm b/zbx_env/var/lib/postgresql/data/base/12993/2995_vm deleted file mode 100644 index e69de29bb..000000000 diff --git a/zbx_env/var/lib/postgresql/data/base/12993/2996 b/zbx_env/var/lib/postgresql/data/base/12993/2996 deleted file mode 100644 index a1e392a5f..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/12993/2996 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/12993/3079 b/zbx_env/var/lib/postgresql/data/base/12993/3079 deleted file mode 100644 index 2ac5237cb..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/12993/3079 and /dev/null 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 deleted file mode 100644 index 7732d22b7..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/12993/3079_fsm and /dev/null 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 deleted file mode 100644 index 44a2ff91e..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/12993/3079_vm and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/12993/3080 b/zbx_env/var/lib/postgresql/data/base/12993/3080 deleted file mode 100644 index 91f8d4902..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/12993/3080 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/12993/3081 b/zbx_env/var/lib/postgresql/data/base/12993/3081 deleted file mode 100644 index 8bc74ec63..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/12993/3081 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/12993/3085 b/zbx_env/var/lib/postgresql/data/base/12993/3085 deleted file mode 100644 index 05c256fa5..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/12993/3085 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/12993/3118 b/zbx_env/var/lib/postgresql/data/base/12993/3118 deleted file mode 100644 index e69de29bb..000000000 diff --git a/zbx_env/var/lib/postgresql/data/base/12993/3118_vm b/zbx_env/var/lib/postgresql/data/base/12993/3118_vm deleted file mode 100644 index e69de29bb..000000000 diff --git a/zbx_env/var/lib/postgresql/data/base/12993/3119 b/zbx_env/var/lib/postgresql/data/base/12993/3119 deleted file mode 100644 index cdf9c180f..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/12993/3119 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/12993/3164 b/zbx_env/var/lib/postgresql/data/base/12993/3164 deleted file mode 100644 index a58c39469..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/12993/3164 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/12993/3256 b/zbx_env/var/lib/postgresql/data/base/12993/3256 deleted file mode 100644 index e69de29bb..000000000 diff --git a/zbx_env/var/lib/postgresql/data/base/12993/3256_vm b/zbx_env/var/lib/postgresql/data/base/12993/3256_vm deleted file mode 100644 index e69de29bb..000000000 diff --git a/zbx_env/var/lib/postgresql/data/base/12993/3257 b/zbx_env/var/lib/postgresql/data/base/12993/3257 deleted file mode 100644 index fb1ff935a..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/12993/3257 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/12993/3258 b/zbx_env/var/lib/postgresql/data/base/12993/3258 deleted file mode 100644 index 0b6aca02a..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/12993/3258 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/12993/3350 b/zbx_env/var/lib/postgresql/data/base/12993/3350 deleted file mode 100644 index e69de29bb..000000000 diff --git a/zbx_env/var/lib/postgresql/data/base/12993/3350_vm b/zbx_env/var/lib/postgresql/data/base/12993/3350_vm deleted file mode 100644 index e69de29bb..000000000 diff --git a/zbx_env/var/lib/postgresql/data/base/12993/3351 b/zbx_env/var/lib/postgresql/data/base/12993/3351 deleted file mode 100644 index 485a7f339..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/12993/3351 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/12993/3379 b/zbx_env/var/lib/postgresql/data/base/12993/3379 deleted file mode 100644 index 2b3165f78..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/12993/3379 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/12993/3380 b/zbx_env/var/lib/postgresql/data/base/12993/3380 deleted file mode 100644 index 262c95057..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/12993/3380 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/12993/3381 b/zbx_env/var/lib/postgresql/data/base/12993/3381 deleted file mode 100644 index e69de29bb..000000000 diff --git a/zbx_env/var/lib/postgresql/data/base/12993/3381_vm b/zbx_env/var/lib/postgresql/data/base/12993/3381_vm deleted file mode 100644 index e69de29bb..000000000 diff --git a/zbx_env/var/lib/postgresql/data/base/12993/3394 b/zbx_env/var/lib/postgresql/data/base/12993/3394 deleted file mode 100644 index b6a9edeae..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/12993/3394 and /dev/null 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 deleted file mode 100644 index 9bf23e33a..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/12993/3394_fsm and /dev/null 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 deleted file mode 100644 index 450f3d7c2..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/12993/3394_vm and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/12993/3395 b/zbx_env/var/lib/postgresql/data/base/12993/3395 deleted file mode 100644 index 5bd6238c1..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/12993/3395 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/12993/3439 b/zbx_env/var/lib/postgresql/data/base/12993/3439 deleted file mode 100644 index e69de29bb..000000000 diff --git a/zbx_env/var/lib/postgresql/data/base/12993/3439_vm b/zbx_env/var/lib/postgresql/data/base/12993/3439_vm deleted file mode 100644 index e69de29bb..000000000 diff --git a/zbx_env/var/lib/postgresql/data/base/12993/3440 b/zbx_env/var/lib/postgresql/data/base/12993/3440 deleted file mode 100644 index bae4de162..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/12993/3440 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/12993/3455 b/zbx_env/var/lib/postgresql/data/base/12993/3455 deleted file mode 100644 index 0f1a7376e..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/12993/3455 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/12993/3456 b/zbx_env/var/lib/postgresql/data/base/12993/3456 deleted file mode 100644 index 2bc0341f9..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/12993/3456 and /dev/null 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 deleted file mode 100644 index ea43ee9d4..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/12993/3456_fsm and /dev/null 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 deleted file mode 100644 index 7ac9233fc..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/12993/3456_vm and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/12993/3466 b/zbx_env/var/lib/postgresql/data/base/12993/3466 deleted file mode 100644 index e69de29bb..000000000 diff --git a/zbx_env/var/lib/postgresql/data/base/12993/3466_vm b/zbx_env/var/lib/postgresql/data/base/12993/3466_vm deleted file mode 100644 index e69de29bb..000000000 diff --git a/zbx_env/var/lib/postgresql/data/base/12993/3467 b/zbx_env/var/lib/postgresql/data/base/12993/3467 deleted file mode 100644 index d28a66e55..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/12993/3467 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/12993/3468 b/zbx_env/var/lib/postgresql/data/base/12993/3468 deleted file mode 100644 index 79b6e9472..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/12993/3468 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/12993/3501 b/zbx_env/var/lib/postgresql/data/base/12993/3501 deleted file mode 100644 index e69de29bb..000000000 diff --git a/zbx_env/var/lib/postgresql/data/base/12993/3501_vm b/zbx_env/var/lib/postgresql/data/base/12993/3501_vm deleted file mode 100644 index e69de29bb..000000000 diff --git a/zbx_env/var/lib/postgresql/data/base/12993/3502 b/zbx_env/var/lib/postgresql/data/base/12993/3502 deleted file mode 100644 index 061a18dc6..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/12993/3502 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/12993/3503 b/zbx_env/var/lib/postgresql/data/base/12993/3503 deleted file mode 100644 index ebd24c5cb..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/12993/3503 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/12993/3534 b/zbx_env/var/lib/postgresql/data/base/12993/3534 deleted file mode 100644 index 4fdd31ed7..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/12993/3534 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/12993/3541 b/zbx_env/var/lib/postgresql/data/base/12993/3541 deleted file mode 100644 index ad69913a9..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/12993/3541 and /dev/null 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 deleted file mode 100644 index 62f015667..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/12993/3541_fsm and /dev/null 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 deleted file mode 100644 index 338f46301..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/12993/3541_vm and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/12993/3542 b/zbx_env/var/lib/postgresql/data/base/12993/3542 deleted file mode 100644 index bf7c3330f..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/12993/3542 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/12993/3574 b/zbx_env/var/lib/postgresql/data/base/12993/3574 deleted file mode 100644 index 0861ca0e2..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/12993/3574 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/12993/3575 b/zbx_env/var/lib/postgresql/data/base/12993/3575 deleted file mode 100644 index 2b57a8ed5..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/12993/3575 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/12993/3576 b/zbx_env/var/lib/postgresql/data/base/12993/3576 deleted file mode 100644 index e69de29bb..000000000 diff --git a/zbx_env/var/lib/postgresql/data/base/12993/3576_vm b/zbx_env/var/lib/postgresql/data/base/12993/3576_vm deleted file mode 100644 index e69de29bb..000000000 diff --git a/zbx_env/var/lib/postgresql/data/base/12993/3596 b/zbx_env/var/lib/postgresql/data/base/12993/3596 deleted file mode 100644 index e69de29bb..000000000 diff --git a/zbx_env/var/lib/postgresql/data/base/12993/3596_vm b/zbx_env/var/lib/postgresql/data/base/12993/3596_vm deleted file mode 100644 index e69de29bb..000000000 diff --git a/zbx_env/var/lib/postgresql/data/base/12993/3597 b/zbx_env/var/lib/postgresql/data/base/12993/3597 deleted file mode 100644 index 8684c812e..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/12993/3597 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/12993/3598 b/zbx_env/var/lib/postgresql/data/base/12993/3598 deleted file mode 100644 index e69de29bb..000000000 diff --git a/zbx_env/var/lib/postgresql/data/base/12993/3598_vm b/zbx_env/var/lib/postgresql/data/base/12993/3598_vm deleted file mode 100644 index e69de29bb..000000000 diff --git a/zbx_env/var/lib/postgresql/data/base/12993/3599 b/zbx_env/var/lib/postgresql/data/base/12993/3599 deleted file mode 100644 index d48e4a663..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/12993/3599 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/12993/3600 b/zbx_env/var/lib/postgresql/data/base/12993/3600 deleted file mode 100644 index 6f5b9c650..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/12993/3600 and /dev/null 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 deleted file mode 100644 index ffd4b1594..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/12993/3600_fsm and /dev/null 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 deleted file mode 100644 index eda7dfa8b..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/12993/3600_vm and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/12993/3601 b/zbx_env/var/lib/postgresql/data/base/12993/3601 deleted file mode 100644 index 065e4e19a..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/12993/3601 and /dev/null 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 deleted file mode 100644 index 7732d22b7..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/12993/3601_fsm and /dev/null 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 deleted file mode 100644 index ccebc9717..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/12993/3601_vm and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/12993/3602 b/zbx_env/var/lib/postgresql/data/base/12993/3602 deleted file mode 100644 index a4991530e..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/12993/3602 and /dev/null 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 deleted file mode 100644 index 7cbf83404..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/12993/3602_fsm and /dev/null 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 deleted file mode 100644 index 51db8d829..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/12993/3602_vm and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/12993/3603 b/zbx_env/var/lib/postgresql/data/base/12993/3603 deleted file mode 100644 index 7ec261796..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/12993/3603 and /dev/null 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 deleted file mode 100644 index 6d00d6859..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/12993/3603_fsm and /dev/null 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 deleted file mode 100644 index d7c5456fe..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/12993/3603_vm and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/12993/3604 b/zbx_env/var/lib/postgresql/data/base/12993/3604 deleted file mode 100644 index 8c2e843bd..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/12993/3604 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/12993/3605 b/zbx_env/var/lib/postgresql/data/base/12993/3605 deleted file mode 100644 index 4c51aeb50..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/12993/3605 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/12993/3606 b/zbx_env/var/lib/postgresql/data/base/12993/3606 deleted file mode 100644 index 973f81de1..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/12993/3606 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/12993/3607 b/zbx_env/var/lib/postgresql/data/base/12993/3607 deleted file mode 100644 index bb91efdd3..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/12993/3607 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/12993/3608 b/zbx_env/var/lib/postgresql/data/base/12993/3608 deleted file mode 100644 index edd6032b2..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/12993/3608 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/12993/3609 b/zbx_env/var/lib/postgresql/data/base/12993/3609 deleted file mode 100644 index d723790f6..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/12993/3609 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/12993/3712 b/zbx_env/var/lib/postgresql/data/base/12993/3712 deleted file mode 100644 index 972327c1f..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/12993/3712 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/12993/3764 b/zbx_env/var/lib/postgresql/data/base/12993/3764 deleted file mode 100644 index 8b7953258..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/12993/3764 and /dev/null 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 deleted file mode 100644 index d041693e8..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/12993/3764_fsm and /dev/null 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 deleted file mode 100644 index 81e9a8d75..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/12993/3764_vm and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/12993/3766 b/zbx_env/var/lib/postgresql/data/base/12993/3766 deleted file mode 100644 index adc6bd05b..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/12993/3766 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/12993/3767 b/zbx_env/var/lib/postgresql/data/base/12993/3767 deleted file mode 100644 index 8a13ca18a..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/12993/3767 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/12993/3997 b/zbx_env/var/lib/postgresql/data/base/12993/3997 deleted file mode 100644 index 8bef1d51c..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/12993/3997 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/12993/5002 b/zbx_env/var/lib/postgresql/data/base/12993/5002 deleted file mode 100644 index a107339a5..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/12993/5002 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/12993/548 b/zbx_env/var/lib/postgresql/data/base/12993/548 deleted file mode 100644 index 95a149a1b..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/12993/548 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/12993/549 b/zbx_env/var/lib/postgresql/data/base/12993/549 deleted file mode 100644 index b8d72f418..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/12993/549 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/12993/6102 b/zbx_env/var/lib/postgresql/data/base/12993/6102 deleted file mode 100644 index e69de29bb..000000000 diff --git a/zbx_env/var/lib/postgresql/data/base/12993/6102_vm b/zbx_env/var/lib/postgresql/data/base/12993/6102_vm deleted file mode 100644 index e69de29bb..000000000 diff --git a/zbx_env/var/lib/postgresql/data/base/12993/6104 b/zbx_env/var/lib/postgresql/data/base/12993/6104 deleted file mode 100644 index e69de29bb..000000000 diff --git a/zbx_env/var/lib/postgresql/data/base/12993/6104_vm b/zbx_env/var/lib/postgresql/data/base/12993/6104_vm deleted file mode 100644 index e69de29bb..000000000 diff --git a/zbx_env/var/lib/postgresql/data/base/12993/6106 b/zbx_env/var/lib/postgresql/data/base/12993/6106 deleted file mode 100644 index e69de29bb..000000000 diff --git a/zbx_env/var/lib/postgresql/data/base/12993/6106_vm b/zbx_env/var/lib/postgresql/data/base/12993/6106_vm deleted file mode 100644 index e69de29bb..000000000 diff --git a/zbx_env/var/lib/postgresql/data/base/12993/6110 b/zbx_env/var/lib/postgresql/data/base/12993/6110 deleted file mode 100644 index 88905e93c..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/12993/6110 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/12993/6111 b/zbx_env/var/lib/postgresql/data/base/12993/6111 deleted file mode 100644 index fc5fe1e60..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/12993/6111 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/12993/6112 b/zbx_env/var/lib/postgresql/data/base/12993/6112 deleted file mode 100644 index 2c009e3c0..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/12993/6112 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/12993/6113 b/zbx_env/var/lib/postgresql/data/base/12993/6113 deleted file mode 100644 index 09ca7f38a..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/12993/6113 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/12993/6117 b/zbx_env/var/lib/postgresql/data/base/12993/6117 deleted file mode 100644 index b2a8f2639..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/12993/6117 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/12993/826 b/zbx_env/var/lib/postgresql/data/base/12993/826 deleted file mode 100644 index e69de29bb..000000000 diff --git a/zbx_env/var/lib/postgresql/data/base/12993/826_vm b/zbx_env/var/lib/postgresql/data/base/12993/826_vm deleted file mode 100644 index e69de29bb..000000000 diff --git a/zbx_env/var/lib/postgresql/data/base/12993/827 b/zbx_env/var/lib/postgresql/data/base/12993/827 deleted file mode 100644 index 45ca171f5..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/12993/827 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/12993/828 b/zbx_env/var/lib/postgresql/data/base/12993/828 deleted file mode 100644 index 9543d4d5d..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/12993/828 and /dev/null 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 deleted file mode 100644 index f599e28b8..000000000 --- a/zbx_env/var/lib/postgresql/data/base/12993/PG_VERSION +++ /dev/null @@ -1 +0,0 @@ -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 deleted file mode 100644 index 428c97e9a..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/12993/pg_filenode.map and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/12994/112 b/zbx_env/var/lib/postgresql/data/base/12994/112 deleted file mode 100644 index 8b130c348..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/12994/112 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/12994/113 b/zbx_env/var/lib/postgresql/data/base/12994/113 deleted file mode 100644 index aca9f3471..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/12994/113 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/12994/1247 b/zbx_env/var/lib/postgresql/data/base/12994/1247 deleted file mode 100644 index cd6a460f8..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/12994/1247 and /dev/null 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 deleted file mode 100644 index 2afa6c37d..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/12994/1247_fsm and /dev/null 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 deleted file mode 100644 index ee2235651..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/12994/1247_vm and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/12994/1249 b/zbx_env/var/lib/postgresql/data/base/12994/1249 deleted file mode 100644 index 03ac5bae9..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/12994/1249 and /dev/null 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 deleted file mode 100644 index 620636091..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/12994/1249_fsm and /dev/null 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 deleted file mode 100644 index dcac89013..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/12994/1249_vm and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/12994/1255 b/zbx_env/var/lib/postgresql/data/base/12994/1255 deleted file mode 100644 index 5db8ed232..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/12994/1255 and /dev/null 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 deleted file mode 100644 index 72da66c0e..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/12994/1255_fsm and /dev/null 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 deleted file mode 100644 index ba43c4836..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/12994/1255_vm and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/12994/1259 b/zbx_env/var/lib/postgresql/data/base/12994/1259 deleted file mode 100644 index fa008c711..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/12994/1259 and /dev/null 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 deleted file mode 100644 index e172feb90..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/12994/1259_fsm and /dev/null 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 deleted file mode 100644 index eba7a64a4..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/12994/1259_vm and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/12994/12829 b/zbx_env/var/lib/postgresql/data/base/12994/12829 deleted file mode 100644 index ac7e7e56a..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/12994/12829 and /dev/null 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 deleted file mode 100644 index 19948ba3d..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/12994/12829_fsm and /dev/null 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 deleted file mode 100644 index 648054e0f..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/12994/12829_vm and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/12994/12831 b/zbx_env/var/lib/postgresql/data/base/12994/12831 deleted file mode 100644 index e69de29bb..000000000 diff --git a/zbx_env/var/lib/postgresql/data/base/12994/12833 b/zbx_env/var/lib/postgresql/data/base/12994/12833 deleted file mode 100644 index 5efdd5c62..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/12994/12833 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/12994/12834 b/zbx_env/var/lib/postgresql/data/base/12994/12834 deleted file mode 100644 index 6147c7e0a..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/12994/12834 and /dev/null 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 deleted file mode 100644 index ce7c26eb6..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/12994/12834_fsm and /dev/null 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 deleted file mode 100644 index 025df3da1..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/12994/12834_vm and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/12994/12836 b/zbx_env/var/lib/postgresql/data/base/12994/12836 deleted file mode 100644 index e69de29bb..000000000 diff --git a/zbx_env/var/lib/postgresql/data/base/12994/12838 b/zbx_env/var/lib/postgresql/data/base/12994/12838 deleted file mode 100644 index ab2a70f83..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/12994/12838 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/12994/12839 b/zbx_env/var/lib/postgresql/data/base/12994/12839 deleted file mode 100644 index 5c80dacb3..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/12994/12839 and /dev/null 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 deleted file mode 100644 index 98dc620ab..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/12994/12839_fsm and /dev/null 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 deleted file mode 100644 index 602207e10..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/12994/12839_vm and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/12994/12841 b/zbx_env/var/lib/postgresql/data/base/12994/12841 deleted file mode 100644 index e69de29bb..000000000 diff --git a/zbx_env/var/lib/postgresql/data/base/12994/12843 b/zbx_env/var/lib/postgresql/data/base/12994/12843 deleted file mode 100644 index 01f3abd46..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/12994/12843 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/12994/12844 b/zbx_env/var/lib/postgresql/data/base/12994/12844 deleted file mode 100644 index 0d56ac3f3..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/12994/12844 and /dev/null 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 deleted file mode 100644 index f8a0e258a..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/12994/12844_fsm and /dev/null 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 deleted file mode 100644 index a853e6e13..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/12994/12844_vm and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/12994/12846 b/zbx_env/var/lib/postgresql/data/base/12994/12846 deleted file mode 100644 index e69de29bb..000000000 diff --git a/zbx_env/var/lib/postgresql/data/base/12994/12848 b/zbx_env/var/lib/postgresql/data/base/12994/12848 deleted file mode 100644 index a3e9f3820..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/12994/12848 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/12994/12849 b/zbx_env/var/lib/postgresql/data/base/12994/12849 deleted file mode 100644 index 3db9a1627..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/12994/12849 and /dev/null 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 deleted file mode 100644 index ecbfaee5e..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/12994/12849_fsm and /dev/null 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 deleted file mode 100644 index dddd66103..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/12994/12849_vm and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/12994/12851 b/zbx_env/var/lib/postgresql/data/base/12994/12851 deleted file mode 100644 index e69de29bb..000000000 diff --git a/zbx_env/var/lib/postgresql/data/base/12994/12853 b/zbx_env/var/lib/postgresql/data/base/12994/12853 deleted file mode 100644 index 4c0a3393e..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/12994/12853 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/12994/12854 b/zbx_env/var/lib/postgresql/data/base/12994/12854 deleted file mode 100644 index afc566762..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/12994/12854 and /dev/null 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 deleted file mode 100644 index a836ddf75..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/12994/12854_fsm and /dev/null 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 deleted file mode 100644 index 763cfb136..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/12994/12854_vm and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/12994/12856 b/zbx_env/var/lib/postgresql/data/base/12994/12856 deleted file mode 100644 index e69de29bb..000000000 diff --git a/zbx_env/var/lib/postgresql/data/base/12994/12858 b/zbx_env/var/lib/postgresql/data/base/12994/12858 deleted file mode 100644 index e81edf7b4..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/12994/12858 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/12994/12859 b/zbx_env/var/lib/postgresql/data/base/12994/12859 deleted file mode 100644 index e69de29bb..000000000 diff --git a/zbx_env/var/lib/postgresql/data/base/12994/12861 b/zbx_env/var/lib/postgresql/data/base/12994/12861 deleted file mode 100644 index e69de29bb..000000000 diff --git a/zbx_env/var/lib/postgresql/data/base/12994/12863 b/zbx_env/var/lib/postgresql/data/base/12994/12863 deleted file mode 100644 index d4d51b3d9..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/12994/12863 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/12994/1417 b/zbx_env/var/lib/postgresql/data/base/12994/1417 deleted file mode 100644 index e69de29bb..000000000 diff --git a/zbx_env/var/lib/postgresql/data/base/12994/1417_vm b/zbx_env/var/lib/postgresql/data/base/12994/1417_vm deleted file mode 100644 index e69de29bb..000000000 diff --git a/zbx_env/var/lib/postgresql/data/base/12994/1418 b/zbx_env/var/lib/postgresql/data/base/12994/1418 deleted file mode 100644 index e69de29bb..000000000 diff --git a/zbx_env/var/lib/postgresql/data/base/12994/1418_vm b/zbx_env/var/lib/postgresql/data/base/12994/1418_vm deleted file mode 100644 index e69de29bb..000000000 diff --git a/zbx_env/var/lib/postgresql/data/base/12994/174 b/zbx_env/var/lib/postgresql/data/base/12994/174 deleted file mode 100644 index edad2c14c..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/12994/174 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/12994/175 b/zbx_env/var/lib/postgresql/data/base/12994/175 deleted file mode 100644 index a8041c693..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/12994/175 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/12994/2187 b/zbx_env/var/lib/postgresql/data/base/12994/2187 deleted file mode 100644 index d39a0b782..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/12994/2187 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/12994/2224 b/zbx_env/var/lib/postgresql/data/base/12994/2224 deleted file mode 100644 index e69de29bb..000000000 diff --git a/zbx_env/var/lib/postgresql/data/base/12994/2224_vm b/zbx_env/var/lib/postgresql/data/base/12994/2224_vm deleted file mode 100644 index e69de29bb..000000000 diff --git a/zbx_env/var/lib/postgresql/data/base/12994/2328 b/zbx_env/var/lib/postgresql/data/base/12994/2328 deleted file mode 100644 index e69de29bb..000000000 diff --git a/zbx_env/var/lib/postgresql/data/base/12994/2328_vm b/zbx_env/var/lib/postgresql/data/base/12994/2328_vm deleted file mode 100644 index e69de29bb..000000000 diff --git a/zbx_env/var/lib/postgresql/data/base/12994/2336 b/zbx_env/var/lib/postgresql/data/base/12994/2336 deleted file mode 100644 index e69de29bb..000000000 diff --git a/zbx_env/var/lib/postgresql/data/base/12994/2336_vm b/zbx_env/var/lib/postgresql/data/base/12994/2336_vm deleted file mode 100644 index e69de29bb..000000000 diff --git a/zbx_env/var/lib/postgresql/data/base/12994/2337 b/zbx_env/var/lib/postgresql/data/base/12994/2337 deleted file mode 100644 index c16658041..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/12994/2337 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/12994/2600 b/zbx_env/var/lib/postgresql/data/base/12994/2600 deleted file mode 100644 index 980d98e71..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/12994/2600 and /dev/null 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 deleted file mode 100644 index e63ffab3e..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/12994/2600_fsm and /dev/null 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 deleted file mode 100644 index be059bc07..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/12994/2600_vm and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/12994/2601 b/zbx_env/var/lib/postgresql/data/base/12994/2601 deleted file mode 100644 index 1d44fa56b..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/12994/2601 and /dev/null 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 deleted file mode 100644 index 0908076c0..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/12994/2601_fsm and /dev/null 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 deleted file mode 100644 index 2aa5dcdb5..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/12994/2601_vm and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/12994/2602 b/zbx_env/var/lib/postgresql/data/base/12994/2602 deleted file mode 100644 index 66f5754af..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/12994/2602 and /dev/null 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 deleted file mode 100644 index 5ed43b88a..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/12994/2602_fsm and /dev/null 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 deleted file mode 100644 index d1b65bdb8..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/12994/2602_vm and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/12994/2603 b/zbx_env/var/lib/postgresql/data/base/12994/2603 deleted file mode 100644 index a51df6676..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/12994/2603 and /dev/null 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 deleted file mode 100644 index f507d0e9f..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/12994/2603_fsm and /dev/null 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 deleted file mode 100644 index 95728db4a..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/12994/2603_vm and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/12994/2604 b/zbx_env/var/lib/postgresql/data/base/12994/2604 deleted file mode 100644 index e69de29bb..000000000 diff --git a/zbx_env/var/lib/postgresql/data/base/12994/2604_vm b/zbx_env/var/lib/postgresql/data/base/12994/2604_vm deleted file mode 100644 index e69de29bb..000000000 diff --git a/zbx_env/var/lib/postgresql/data/base/12994/2605 b/zbx_env/var/lib/postgresql/data/base/12994/2605 deleted file mode 100644 index 45f16c079..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/12994/2605 and /dev/null 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 deleted file mode 100644 index c1b0e039f..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/12994/2605_fsm and /dev/null 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 deleted file mode 100644 index bd231050a..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/12994/2605_vm and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/12994/2606 b/zbx_env/var/lib/postgresql/data/base/12994/2606 deleted file mode 100644 index 163eee21e..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/12994/2606 and /dev/null 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 deleted file mode 100644 index d37e4dd05..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/12994/2606_fsm and /dev/null 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 deleted file mode 100644 index 4301f6b95..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/12994/2606_vm and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/12994/2607 b/zbx_env/var/lib/postgresql/data/base/12994/2607 deleted file mode 100644 index 1ecadcbc8..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/12994/2607 and /dev/null 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 deleted file mode 100644 index 5b066f1a3..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/12994/2607_fsm and /dev/null 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 deleted file mode 100644 index 913a86769..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/12994/2607_vm and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/12994/2608 b/zbx_env/var/lib/postgresql/data/base/12994/2608 deleted file mode 100644 index 49c4af1cd..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/12994/2608 and /dev/null 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 deleted file mode 100644 index 106a100e5..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/12994/2608_fsm and /dev/null 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 deleted file mode 100644 index b4ec88c13..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/12994/2608_vm and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/12994/2609 b/zbx_env/var/lib/postgresql/data/base/12994/2609 deleted file mode 100644 index 55d48b226..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/12994/2609 and /dev/null 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 deleted file mode 100644 index 8fa6e5fa6..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/12994/2609_fsm and /dev/null 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 deleted file mode 100644 index a459f2c88..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/12994/2609_vm and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/12994/2610 b/zbx_env/var/lib/postgresql/data/base/12994/2610 deleted file mode 100644 index b2c1cffbb..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/12994/2610 and /dev/null 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 deleted file mode 100644 index 6a556770a..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/12994/2610_fsm and /dev/null 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 deleted file mode 100644 index a2cb5435a..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/12994/2610_vm and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/12994/2611 b/zbx_env/var/lib/postgresql/data/base/12994/2611 deleted file mode 100644 index e69de29bb..000000000 diff --git a/zbx_env/var/lib/postgresql/data/base/12994/2611_vm b/zbx_env/var/lib/postgresql/data/base/12994/2611_vm deleted file mode 100644 index e69de29bb..000000000 diff --git a/zbx_env/var/lib/postgresql/data/base/12994/2612 b/zbx_env/var/lib/postgresql/data/base/12994/2612 deleted file mode 100644 index 92362df9a..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/12994/2612 and /dev/null 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 deleted file mode 100644 index 877976acf..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/12994/2612_fsm and /dev/null 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 deleted file mode 100644 index 27aad7785..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/12994/2612_vm and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/12994/2613 b/zbx_env/var/lib/postgresql/data/base/12994/2613 deleted file mode 100644 index e69de29bb..000000000 diff --git a/zbx_env/var/lib/postgresql/data/base/12994/2613_vm b/zbx_env/var/lib/postgresql/data/base/12994/2613_vm deleted file mode 100644 index e69de29bb..000000000 diff --git a/zbx_env/var/lib/postgresql/data/base/12994/2615 b/zbx_env/var/lib/postgresql/data/base/12994/2615 deleted file mode 100644 index f81cca3d5..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/12994/2615 and /dev/null 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 deleted file mode 100644 index 948882ce6..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/12994/2615_fsm and /dev/null 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 deleted file mode 100644 index 0ceaa2a80..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/12994/2615_vm and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/12994/2616 b/zbx_env/var/lib/postgresql/data/base/12994/2616 deleted file mode 100644 index 19f42857d..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/12994/2616 and /dev/null 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 deleted file mode 100644 index 995a05b3c..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/12994/2616_fsm and /dev/null 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 deleted file mode 100644 index dfb995f88..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/12994/2616_vm and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/12994/2617 b/zbx_env/var/lib/postgresql/data/base/12994/2617 deleted file mode 100644 index d989d35e2..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/12994/2617 and /dev/null 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 deleted file mode 100644 index cb2a806b3..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/12994/2617_fsm and /dev/null 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 deleted file mode 100644 index 678b7f7f3..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/12994/2617_vm and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/12994/2618 b/zbx_env/var/lib/postgresql/data/base/12994/2618 deleted file mode 100644 index 8a17c1706..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/12994/2618 and /dev/null 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 deleted file mode 100644 index 2379916aa..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/12994/2618_fsm and /dev/null 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 deleted file mode 100644 index 4b06dd76e..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/12994/2618_vm and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/12994/2619 b/zbx_env/var/lib/postgresql/data/base/12994/2619 deleted file mode 100644 index c14ecd8fa..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/12994/2619 and /dev/null 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 deleted file mode 100644 index 81f80a5b6..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/12994/2619_fsm and /dev/null 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 deleted file mode 100644 index 554e94eb4..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/12994/2619_vm and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/12994/2620 b/zbx_env/var/lib/postgresql/data/base/12994/2620 deleted file mode 100644 index e69de29bb..000000000 diff --git a/zbx_env/var/lib/postgresql/data/base/12994/2620_vm b/zbx_env/var/lib/postgresql/data/base/12994/2620_vm deleted file mode 100644 index e69de29bb..000000000 diff --git a/zbx_env/var/lib/postgresql/data/base/12994/2650 b/zbx_env/var/lib/postgresql/data/base/12994/2650 deleted file mode 100644 index 8a0d71d50..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/12994/2650 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/12994/2651 b/zbx_env/var/lib/postgresql/data/base/12994/2651 deleted file mode 100644 index 29e245e35..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/12994/2651 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/12994/2652 b/zbx_env/var/lib/postgresql/data/base/12994/2652 deleted file mode 100644 index 9e26143e4..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/12994/2652 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/12994/2653 b/zbx_env/var/lib/postgresql/data/base/12994/2653 deleted file mode 100644 index e02db67df..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/12994/2653 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/12994/2654 b/zbx_env/var/lib/postgresql/data/base/12994/2654 deleted file mode 100644 index 95363af10..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/12994/2654 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/12994/2655 b/zbx_env/var/lib/postgresql/data/base/12994/2655 deleted file mode 100644 index a9a12adf9..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/12994/2655 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/12994/2656 b/zbx_env/var/lib/postgresql/data/base/12994/2656 deleted file mode 100644 index ba509bf8d..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/12994/2656 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/12994/2657 b/zbx_env/var/lib/postgresql/data/base/12994/2657 deleted file mode 100644 index fbc747331..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/12994/2657 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/12994/2658 b/zbx_env/var/lib/postgresql/data/base/12994/2658 deleted file mode 100644 index d2ceec244..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/12994/2658 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/12994/2659 b/zbx_env/var/lib/postgresql/data/base/12994/2659 deleted file mode 100644 index 1f1a4947f..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/12994/2659 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/12994/2660 b/zbx_env/var/lib/postgresql/data/base/12994/2660 deleted file mode 100644 index d16f41a42..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/12994/2660 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/12994/2661 b/zbx_env/var/lib/postgresql/data/base/12994/2661 deleted file mode 100644 index 59ade838f..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/12994/2661 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/12994/2662 b/zbx_env/var/lib/postgresql/data/base/12994/2662 deleted file mode 100644 index 6026eaac9..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/12994/2662 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/12994/2663 b/zbx_env/var/lib/postgresql/data/base/12994/2663 deleted file mode 100644 index 7ce14003d..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/12994/2663 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/12994/2664 b/zbx_env/var/lib/postgresql/data/base/12994/2664 deleted file mode 100644 index c44bbad79..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/12994/2664 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/12994/2665 b/zbx_env/var/lib/postgresql/data/base/12994/2665 deleted file mode 100644 index 63ca88a3e..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/12994/2665 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/12994/2666 b/zbx_env/var/lib/postgresql/data/base/12994/2666 deleted file mode 100644 index e7c92d1f5..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/12994/2666 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/12994/2667 b/zbx_env/var/lib/postgresql/data/base/12994/2667 deleted file mode 100644 index 5755a624a..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/12994/2667 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/12994/2668 b/zbx_env/var/lib/postgresql/data/base/12994/2668 deleted file mode 100644 index 11a6b5270..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/12994/2668 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/12994/2669 b/zbx_env/var/lib/postgresql/data/base/12994/2669 deleted file mode 100644 index 79d31ebcc..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/12994/2669 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/12994/2670 b/zbx_env/var/lib/postgresql/data/base/12994/2670 deleted file mode 100644 index 6184b908d..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/12994/2670 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/12994/2673 b/zbx_env/var/lib/postgresql/data/base/12994/2673 deleted file mode 100644 index 7f74fdd5c..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/12994/2673 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/12994/2674 b/zbx_env/var/lib/postgresql/data/base/12994/2674 deleted file mode 100644 index 1fb21fcba..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/12994/2674 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/12994/2675 b/zbx_env/var/lib/postgresql/data/base/12994/2675 deleted file mode 100644 index c88a53bd5..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/12994/2675 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/12994/2678 b/zbx_env/var/lib/postgresql/data/base/12994/2678 deleted file mode 100644 index 5239feded..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/12994/2678 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/12994/2679 b/zbx_env/var/lib/postgresql/data/base/12994/2679 deleted file mode 100644 index cb7b561bb..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/12994/2679 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/12994/2680 b/zbx_env/var/lib/postgresql/data/base/12994/2680 deleted file mode 100644 index 876da95b2..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/12994/2680 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/12994/2681 b/zbx_env/var/lib/postgresql/data/base/12994/2681 deleted file mode 100644 index 4987623fd..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/12994/2681 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/12994/2682 b/zbx_env/var/lib/postgresql/data/base/12994/2682 deleted file mode 100644 index 7943e766e..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/12994/2682 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/12994/2683 b/zbx_env/var/lib/postgresql/data/base/12994/2683 deleted file mode 100644 index 636f10144..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/12994/2683 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/12994/2684 b/zbx_env/var/lib/postgresql/data/base/12994/2684 deleted file mode 100644 index f54f9598d..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/12994/2684 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/12994/2685 b/zbx_env/var/lib/postgresql/data/base/12994/2685 deleted file mode 100644 index 95d7fde28..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/12994/2685 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/12994/2686 b/zbx_env/var/lib/postgresql/data/base/12994/2686 deleted file mode 100644 index bc86cec09..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/12994/2686 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/12994/2687 b/zbx_env/var/lib/postgresql/data/base/12994/2687 deleted file mode 100644 index f080504d5..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/12994/2687 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/12994/2688 b/zbx_env/var/lib/postgresql/data/base/12994/2688 deleted file mode 100644 index 47572a662..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/12994/2688 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/12994/2689 b/zbx_env/var/lib/postgresql/data/base/12994/2689 deleted file mode 100644 index 4333d769f..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/12994/2689 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/12994/2690 b/zbx_env/var/lib/postgresql/data/base/12994/2690 deleted file mode 100644 index 89fab01a4..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/12994/2690 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/12994/2691 b/zbx_env/var/lib/postgresql/data/base/12994/2691 deleted file mode 100644 index 08dade0dd..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/12994/2691 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/12994/2692 b/zbx_env/var/lib/postgresql/data/base/12994/2692 deleted file mode 100644 index 150467201..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/12994/2692 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/12994/2693 b/zbx_env/var/lib/postgresql/data/base/12994/2693 deleted file mode 100644 index ef76c5b32..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/12994/2693 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/12994/2696 b/zbx_env/var/lib/postgresql/data/base/12994/2696 deleted file mode 100644 index 69014bb1f..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/12994/2696 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/12994/2699 b/zbx_env/var/lib/postgresql/data/base/12994/2699 deleted file mode 100644 index 9a9b94663..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/12994/2699 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/12994/2701 b/zbx_env/var/lib/postgresql/data/base/12994/2701 deleted file mode 100644 index 0376dbefa..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/12994/2701 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/12994/2702 b/zbx_env/var/lib/postgresql/data/base/12994/2702 deleted file mode 100644 index b2e4287f6..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/12994/2702 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/12994/2703 b/zbx_env/var/lib/postgresql/data/base/12994/2703 deleted file mode 100644 index d7477ab76..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/12994/2703 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/12994/2704 b/zbx_env/var/lib/postgresql/data/base/12994/2704 deleted file mode 100644 index a18deab09..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/12994/2704 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/12994/2753 b/zbx_env/var/lib/postgresql/data/base/12994/2753 deleted file mode 100644 index 73f903165..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/12994/2753 and /dev/null 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 deleted file mode 100644 index 0787df53d..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/12994/2753_fsm and /dev/null 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 deleted file mode 100644 index 6c8ced900..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/12994/2753_vm and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/12994/2754 b/zbx_env/var/lib/postgresql/data/base/12994/2754 deleted file mode 100644 index 5a44a7962..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/12994/2754 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/12994/2755 b/zbx_env/var/lib/postgresql/data/base/12994/2755 deleted file mode 100644 index fac11c420..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/12994/2755 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/12994/2756 b/zbx_env/var/lib/postgresql/data/base/12994/2756 deleted file mode 100644 index 5b9bc166b..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/12994/2756 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/12994/2757 b/zbx_env/var/lib/postgresql/data/base/12994/2757 deleted file mode 100644 index 1bade66ff..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/12994/2757 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/12994/2830 b/zbx_env/var/lib/postgresql/data/base/12994/2830 deleted file mode 100644 index e69de29bb..000000000 diff --git a/zbx_env/var/lib/postgresql/data/base/12994/2830_vm b/zbx_env/var/lib/postgresql/data/base/12994/2830_vm deleted file mode 100644 index e69de29bb..000000000 diff --git a/zbx_env/var/lib/postgresql/data/base/12994/2831 b/zbx_env/var/lib/postgresql/data/base/12994/2831 deleted file mode 100644 index b0c0ed88c..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/12994/2831 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/12994/2832 b/zbx_env/var/lib/postgresql/data/base/12994/2832 deleted file mode 100644 index e69de29bb..000000000 diff --git a/zbx_env/var/lib/postgresql/data/base/12994/2832_vm b/zbx_env/var/lib/postgresql/data/base/12994/2832_vm deleted file mode 100644 index e69de29bb..000000000 diff --git a/zbx_env/var/lib/postgresql/data/base/12994/2833 b/zbx_env/var/lib/postgresql/data/base/12994/2833 deleted file mode 100644 index e70ee62b0..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/12994/2833 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/12994/2834 b/zbx_env/var/lib/postgresql/data/base/12994/2834 deleted file mode 100644 index e69de29bb..000000000 diff --git a/zbx_env/var/lib/postgresql/data/base/12994/2834_vm b/zbx_env/var/lib/postgresql/data/base/12994/2834_vm deleted file mode 100644 index e69de29bb..000000000 diff --git a/zbx_env/var/lib/postgresql/data/base/12994/2835 b/zbx_env/var/lib/postgresql/data/base/12994/2835 deleted file mode 100644 index c65e18b5e..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/12994/2835 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/12994/2836 b/zbx_env/var/lib/postgresql/data/base/12994/2836 deleted file mode 100644 index e69de29bb..000000000 diff --git a/zbx_env/var/lib/postgresql/data/base/12994/2836_vm b/zbx_env/var/lib/postgresql/data/base/12994/2836_vm deleted file mode 100644 index e69de29bb..000000000 diff --git a/zbx_env/var/lib/postgresql/data/base/12994/2837 b/zbx_env/var/lib/postgresql/data/base/12994/2837 deleted file mode 100644 index 4ef00f573..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/12994/2837 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/12994/2838 b/zbx_env/var/lib/postgresql/data/base/12994/2838 deleted file mode 100644 index 5efb4501d..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/12994/2838 and /dev/null 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 deleted file mode 100644 index 72ba496ec..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/12994/2838_fsm and /dev/null 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 deleted file mode 100644 index 962055edb..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/12994/2838_vm and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/12994/2839 b/zbx_env/var/lib/postgresql/data/base/12994/2839 deleted file mode 100644 index 9b1c1e571..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/12994/2839 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/12994/2840 b/zbx_env/var/lib/postgresql/data/base/12994/2840 deleted file mode 100644 index 840ad144c..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/12994/2840 and /dev/null 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 deleted file mode 100644 index 7d14d0cfe..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/12994/2840_fsm and /dev/null 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 deleted file mode 100644 index fee0e0473..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/12994/2840_vm and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/12994/2841 b/zbx_env/var/lib/postgresql/data/base/12994/2841 deleted file mode 100644 index 44212c4cd..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/12994/2841 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/12994/2995 b/zbx_env/var/lib/postgresql/data/base/12994/2995 deleted file mode 100644 index e69de29bb..000000000 diff --git a/zbx_env/var/lib/postgresql/data/base/12994/2995_vm b/zbx_env/var/lib/postgresql/data/base/12994/2995_vm deleted file mode 100644 index e69de29bb..000000000 diff --git a/zbx_env/var/lib/postgresql/data/base/12994/2996 b/zbx_env/var/lib/postgresql/data/base/12994/2996 deleted file mode 100644 index a1e392a5f..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/12994/2996 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/12994/3079 b/zbx_env/var/lib/postgresql/data/base/12994/3079 deleted file mode 100644 index 2ac5237cb..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/12994/3079 and /dev/null 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 deleted file mode 100644 index 7732d22b7..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/12994/3079_fsm and /dev/null 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 deleted file mode 100644 index 44a2ff91e..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/12994/3079_vm and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/12994/3080 b/zbx_env/var/lib/postgresql/data/base/12994/3080 deleted file mode 100644 index 91f8d4902..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/12994/3080 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/12994/3081 b/zbx_env/var/lib/postgresql/data/base/12994/3081 deleted file mode 100644 index 8bc74ec63..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/12994/3081 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/12994/3085 b/zbx_env/var/lib/postgresql/data/base/12994/3085 deleted file mode 100644 index 05c256fa5..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/12994/3085 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/12994/3118 b/zbx_env/var/lib/postgresql/data/base/12994/3118 deleted file mode 100644 index e69de29bb..000000000 diff --git a/zbx_env/var/lib/postgresql/data/base/12994/3118_vm b/zbx_env/var/lib/postgresql/data/base/12994/3118_vm deleted file mode 100644 index e69de29bb..000000000 diff --git a/zbx_env/var/lib/postgresql/data/base/12994/3119 b/zbx_env/var/lib/postgresql/data/base/12994/3119 deleted file mode 100644 index cdf9c180f..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/12994/3119 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/12994/3164 b/zbx_env/var/lib/postgresql/data/base/12994/3164 deleted file mode 100644 index a58c39469..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/12994/3164 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/12994/3256 b/zbx_env/var/lib/postgresql/data/base/12994/3256 deleted file mode 100644 index e69de29bb..000000000 diff --git a/zbx_env/var/lib/postgresql/data/base/12994/3256_vm b/zbx_env/var/lib/postgresql/data/base/12994/3256_vm deleted file mode 100644 index e69de29bb..000000000 diff --git a/zbx_env/var/lib/postgresql/data/base/12994/3257 b/zbx_env/var/lib/postgresql/data/base/12994/3257 deleted file mode 100644 index fb1ff935a..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/12994/3257 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/12994/3258 b/zbx_env/var/lib/postgresql/data/base/12994/3258 deleted file mode 100644 index 0b6aca02a..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/12994/3258 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/12994/3350 b/zbx_env/var/lib/postgresql/data/base/12994/3350 deleted file mode 100644 index e69de29bb..000000000 diff --git a/zbx_env/var/lib/postgresql/data/base/12994/3350_vm b/zbx_env/var/lib/postgresql/data/base/12994/3350_vm deleted file mode 100644 index e69de29bb..000000000 diff --git a/zbx_env/var/lib/postgresql/data/base/12994/3351 b/zbx_env/var/lib/postgresql/data/base/12994/3351 deleted file mode 100644 index 485a7f339..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/12994/3351 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/12994/3379 b/zbx_env/var/lib/postgresql/data/base/12994/3379 deleted file mode 100644 index 2b3165f78..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/12994/3379 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/12994/3380 b/zbx_env/var/lib/postgresql/data/base/12994/3380 deleted file mode 100644 index 262c95057..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/12994/3380 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/12994/3381 b/zbx_env/var/lib/postgresql/data/base/12994/3381 deleted file mode 100644 index e69de29bb..000000000 diff --git a/zbx_env/var/lib/postgresql/data/base/12994/3381_vm b/zbx_env/var/lib/postgresql/data/base/12994/3381_vm deleted file mode 100644 index e69de29bb..000000000 diff --git a/zbx_env/var/lib/postgresql/data/base/12994/3394 b/zbx_env/var/lib/postgresql/data/base/12994/3394 deleted file mode 100644 index b6a9edeae..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/12994/3394 and /dev/null 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 deleted file mode 100644 index 9bf23e33a..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/12994/3394_fsm and /dev/null 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 deleted file mode 100644 index 450f3d7c2..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/12994/3394_vm and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/12994/3395 b/zbx_env/var/lib/postgresql/data/base/12994/3395 deleted file mode 100644 index 5bd6238c1..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/12994/3395 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/12994/3439 b/zbx_env/var/lib/postgresql/data/base/12994/3439 deleted file mode 100644 index e69de29bb..000000000 diff --git a/zbx_env/var/lib/postgresql/data/base/12994/3439_vm b/zbx_env/var/lib/postgresql/data/base/12994/3439_vm deleted file mode 100644 index e69de29bb..000000000 diff --git a/zbx_env/var/lib/postgresql/data/base/12994/3440 b/zbx_env/var/lib/postgresql/data/base/12994/3440 deleted file mode 100644 index bae4de162..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/12994/3440 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/12994/3455 b/zbx_env/var/lib/postgresql/data/base/12994/3455 deleted file mode 100644 index 0f1a7376e..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/12994/3455 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/12994/3456 b/zbx_env/var/lib/postgresql/data/base/12994/3456 deleted file mode 100644 index 2bc0341f9..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/12994/3456 and /dev/null 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 deleted file mode 100644 index ea43ee9d4..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/12994/3456_fsm and /dev/null 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 deleted file mode 100644 index 7ac9233fc..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/12994/3456_vm and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/12994/3466 b/zbx_env/var/lib/postgresql/data/base/12994/3466 deleted file mode 100644 index e69de29bb..000000000 diff --git a/zbx_env/var/lib/postgresql/data/base/12994/3466_vm b/zbx_env/var/lib/postgresql/data/base/12994/3466_vm deleted file mode 100644 index e69de29bb..000000000 diff --git a/zbx_env/var/lib/postgresql/data/base/12994/3467 b/zbx_env/var/lib/postgresql/data/base/12994/3467 deleted file mode 100644 index d28a66e55..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/12994/3467 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/12994/3468 b/zbx_env/var/lib/postgresql/data/base/12994/3468 deleted file mode 100644 index 79b6e9472..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/12994/3468 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/12994/3501 b/zbx_env/var/lib/postgresql/data/base/12994/3501 deleted file mode 100644 index e69de29bb..000000000 diff --git a/zbx_env/var/lib/postgresql/data/base/12994/3501_vm b/zbx_env/var/lib/postgresql/data/base/12994/3501_vm deleted file mode 100644 index e69de29bb..000000000 diff --git a/zbx_env/var/lib/postgresql/data/base/12994/3502 b/zbx_env/var/lib/postgresql/data/base/12994/3502 deleted file mode 100644 index 061a18dc6..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/12994/3502 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/12994/3503 b/zbx_env/var/lib/postgresql/data/base/12994/3503 deleted file mode 100644 index ebd24c5cb..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/12994/3503 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/12994/3534 b/zbx_env/var/lib/postgresql/data/base/12994/3534 deleted file mode 100644 index 4fdd31ed7..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/12994/3534 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/12994/3541 b/zbx_env/var/lib/postgresql/data/base/12994/3541 deleted file mode 100644 index ad69913a9..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/12994/3541 and /dev/null 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 deleted file mode 100644 index 62f015667..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/12994/3541_fsm and /dev/null 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 deleted file mode 100644 index 338f46301..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/12994/3541_vm and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/12994/3542 b/zbx_env/var/lib/postgresql/data/base/12994/3542 deleted file mode 100644 index bf7c3330f..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/12994/3542 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/12994/3574 b/zbx_env/var/lib/postgresql/data/base/12994/3574 deleted file mode 100644 index 0861ca0e2..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/12994/3574 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/12994/3575 b/zbx_env/var/lib/postgresql/data/base/12994/3575 deleted file mode 100644 index 2b57a8ed5..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/12994/3575 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/12994/3576 b/zbx_env/var/lib/postgresql/data/base/12994/3576 deleted file mode 100644 index e69de29bb..000000000 diff --git a/zbx_env/var/lib/postgresql/data/base/12994/3576_vm b/zbx_env/var/lib/postgresql/data/base/12994/3576_vm deleted file mode 100644 index e69de29bb..000000000 diff --git a/zbx_env/var/lib/postgresql/data/base/12994/3596 b/zbx_env/var/lib/postgresql/data/base/12994/3596 deleted file mode 100644 index e69de29bb..000000000 diff --git a/zbx_env/var/lib/postgresql/data/base/12994/3596_vm b/zbx_env/var/lib/postgresql/data/base/12994/3596_vm deleted file mode 100644 index e69de29bb..000000000 diff --git a/zbx_env/var/lib/postgresql/data/base/12994/3597 b/zbx_env/var/lib/postgresql/data/base/12994/3597 deleted file mode 100644 index 8684c812e..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/12994/3597 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/12994/3598 b/zbx_env/var/lib/postgresql/data/base/12994/3598 deleted file mode 100644 index e69de29bb..000000000 diff --git a/zbx_env/var/lib/postgresql/data/base/12994/3598_vm b/zbx_env/var/lib/postgresql/data/base/12994/3598_vm deleted file mode 100644 index e69de29bb..000000000 diff --git a/zbx_env/var/lib/postgresql/data/base/12994/3599 b/zbx_env/var/lib/postgresql/data/base/12994/3599 deleted file mode 100644 index d48e4a663..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/12994/3599 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/12994/3600 b/zbx_env/var/lib/postgresql/data/base/12994/3600 deleted file mode 100644 index 6f5b9c650..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/12994/3600 and /dev/null 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 deleted file mode 100644 index ffd4b1594..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/12994/3600_fsm and /dev/null 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 deleted file mode 100644 index eda7dfa8b..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/12994/3600_vm and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/12994/3601 b/zbx_env/var/lib/postgresql/data/base/12994/3601 deleted file mode 100644 index 065e4e19a..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/12994/3601 and /dev/null 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 deleted file mode 100644 index 7732d22b7..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/12994/3601_fsm and /dev/null 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 deleted file mode 100644 index ccebc9717..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/12994/3601_vm and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/12994/3602 b/zbx_env/var/lib/postgresql/data/base/12994/3602 deleted file mode 100644 index a4991530e..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/12994/3602 and /dev/null 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 deleted file mode 100644 index 7cbf83404..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/12994/3602_fsm and /dev/null 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 deleted file mode 100644 index 51db8d829..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/12994/3602_vm and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/12994/3603 b/zbx_env/var/lib/postgresql/data/base/12994/3603 deleted file mode 100644 index 7ec261796..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/12994/3603 and /dev/null 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 deleted file mode 100644 index 6d00d6859..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/12994/3603_fsm and /dev/null 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 deleted file mode 100644 index d7c5456fe..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/12994/3603_vm and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/12994/3604 b/zbx_env/var/lib/postgresql/data/base/12994/3604 deleted file mode 100644 index 8c2e843bd..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/12994/3604 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/12994/3605 b/zbx_env/var/lib/postgresql/data/base/12994/3605 deleted file mode 100644 index 4c51aeb50..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/12994/3605 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/12994/3606 b/zbx_env/var/lib/postgresql/data/base/12994/3606 deleted file mode 100644 index 973f81de1..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/12994/3606 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/12994/3607 b/zbx_env/var/lib/postgresql/data/base/12994/3607 deleted file mode 100644 index bb91efdd3..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/12994/3607 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/12994/3608 b/zbx_env/var/lib/postgresql/data/base/12994/3608 deleted file mode 100644 index edd6032b2..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/12994/3608 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/12994/3609 b/zbx_env/var/lib/postgresql/data/base/12994/3609 deleted file mode 100644 index d723790f6..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/12994/3609 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/12994/3712 b/zbx_env/var/lib/postgresql/data/base/12994/3712 deleted file mode 100644 index 972327c1f..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/12994/3712 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/12994/3764 b/zbx_env/var/lib/postgresql/data/base/12994/3764 deleted file mode 100644 index 8b7953258..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/12994/3764 and /dev/null 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 deleted file mode 100644 index d041693e8..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/12994/3764_fsm and /dev/null 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 deleted file mode 100644 index 81e9a8d75..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/12994/3764_vm and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/12994/3766 b/zbx_env/var/lib/postgresql/data/base/12994/3766 deleted file mode 100644 index adc6bd05b..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/12994/3766 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/12994/3767 b/zbx_env/var/lib/postgresql/data/base/12994/3767 deleted file mode 100644 index 8a13ca18a..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/12994/3767 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/12994/3997 b/zbx_env/var/lib/postgresql/data/base/12994/3997 deleted file mode 100644 index 8bef1d51c..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/12994/3997 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/12994/5002 b/zbx_env/var/lib/postgresql/data/base/12994/5002 deleted file mode 100644 index a107339a5..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/12994/5002 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/12994/548 b/zbx_env/var/lib/postgresql/data/base/12994/548 deleted file mode 100644 index 95a149a1b..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/12994/548 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/12994/549 b/zbx_env/var/lib/postgresql/data/base/12994/549 deleted file mode 100644 index b8d72f418..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/12994/549 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/12994/6102 b/zbx_env/var/lib/postgresql/data/base/12994/6102 deleted file mode 100644 index e69de29bb..000000000 diff --git a/zbx_env/var/lib/postgresql/data/base/12994/6102_vm b/zbx_env/var/lib/postgresql/data/base/12994/6102_vm deleted file mode 100644 index e69de29bb..000000000 diff --git a/zbx_env/var/lib/postgresql/data/base/12994/6104 b/zbx_env/var/lib/postgresql/data/base/12994/6104 deleted file mode 100644 index e69de29bb..000000000 diff --git a/zbx_env/var/lib/postgresql/data/base/12994/6104_vm b/zbx_env/var/lib/postgresql/data/base/12994/6104_vm deleted file mode 100644 index e69de29bb..000000000 diff --git a/zbx_env/var/lib/postgresql/data/base/12994/6106 b/zbx_env/var/lib/postgresql/data/base/12994/6106 deleted file mode 100644 index e69de29bb..000000000 diff --git a/zbx_env/var/lib/postgresql/data/base/12994/6106_vm b/zbx_env/var/lib/postgresql/data/base/12994/6106_vm deleted file mode 100644 index e69de29bb..000000000 diff --git a/zbx_env/var/lib/postgresql/data/base/12994/6110 b/zbx_env/var/lib/postgresql/data/base/12994/6110 deleted file mode 100644 index 88905e93c..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/12994/6110 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/12994/6111 b/zbx_env/var/lib/postgresql/data/base/12994/6111 deleted file mode 100644 index fc5fe1e60..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/12994/6111 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/12994/6112 b/zbx_env/var/lib/postgresql/data/base/12994/6112 deleted file mode 100644 index 2c009e3c0..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/12994/6112 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/12994/6113 b/zbx_env/var/lib/postgresql/data/base/12994/6113 deleted file mode 100644 index 09ca7f38a..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/12994/6113 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/12994/6117 b/zbx_env/var/lib/postgresql/data/base/12994/6117 deleted file mode 100644 index b2a8f2639..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/12994/6117 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/12994/826 b/zbx_env/var/lib/postgresql/data/base/12994/826 deleted file mode 100644 index e69de29bb..000000000 diff --git a/zbx_env/var/lib/postgresql/data/base/12994/826_vm b/zbx_env/var/lib/postgresql/data/base/12994/826_vm deleted file mode 100644 index e69de29bb..000000000 diff --git a/zbx_env/var/lib/postgresql/data/base/12994/827 b/zbx_env/var/lib/postgresql/data/base/12994/827 deleted file mode 100644 index 45ca171f5..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/12994/827 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/12994/828 b/zbx_env/var/lib/postgresql/data/base/12994/828 deleted file mode 100644 index 9543d4d5d..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/12994/828 and /dev/null 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 deleted file mode 100644 index f599e28b8..000000000 --- a/zbx_env/var/lib/postgresql/data/base/12994/PG_VERSION +++ /dev/null @@ -1 +0,0 @@ -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 deleted file mode 100644 index 428c97e9a..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/12994/pg_filenode.map and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/112 b/zbx_env/var/lib/postgresql/data/base/16384/112 deleted file mode 100644 index 8b130c348..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/112 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/113 b/zbx_env/var/lib/postgresql/data/base/16384/113 deleted file mode 100644 index aca9f3471..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/113 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/1247 b/zbx_env/var/lib/postgresql/data/base/16384/1247 deleted file mode 100644 index 02c0d0642..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/1247 and /dev/null 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 deleted file mode 100644 index 2afa6c37d..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/1247_fsm and /dev/null 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 deleted file mode 100644 index ee2235651..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/1247_vm and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/1249 b/zbx_env/var/lib/postgresql/data/base/16384/1249 deleted file mode 100644 index c95465f48..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/1249 and /dev/null 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 deleted file mode 100644 index 620636091..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/1249_fsm and /dev/null 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 deleted file mode 100644 index dcac89013..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/1249_vm and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/1255 b/zbx_env/var/lib/postgresql/data/base/16384/1255 deleted file mode 100644 index 5db8ed232..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/1255 and /dev/null 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 deleted file mode 100644 index 72da66c0e..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/1255_fsm and /dev/null 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 deleted file mode 100644 index ba43c4836..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/1255_vm and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/1259 b/zbx_env/var/lib/postgresql/data/base/16384/1259 deleted file mode 100644 index 6451e8e5e..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/1259 and /dev/null 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 deleted file mode 100644 index e172feb90..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/1259_fsm and /dev/null 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 deleted file mode 100644 index eba7a64a4..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/1259_vm and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/12829 b/zbx_env/var/lib/postgresql/data/base/16384/12829 deleted file mode 100644 index ac7e7e56a..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/12829 and /dev/null 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 deleted file mode 100644 index 19948ba3d..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/12829_fsm and /dev/null 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 deleted file mode 100644 index 648054e0f..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/12829_vm and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/12831 b/zbx_env/var/lib/postgresql/data/base/16384/12831 deleted file mode 100644 index e69de29bb..000000000 diff --git a/zbx_env/var/lib/postgresql/data/base/16384/12833 b/zbx_env/var/lib/postgresql/data/base/16384/12833 deleted file mode 100644 index 5efdd5c62..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/12833 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/12834 b/zbx_env/var/lib/postgresql/data/base/16384/12834 deleted file mode 100644 index 6147c7e0a..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/12834 and /dev/null 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 deleted file mode 100644 index ce7c26eb6..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/12834_fsm and /dev/null 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 deleted file mode 100644 index 025df3da1..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/12834_vm and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/12836 b/zbx_env/var/lib/postgresql/data/base/16384/12836 deleted file mode 100644 index e69de29bb..000000000 diff --git a/zbx_env/var/lib/postgresql/data/base/16384/12838 b/zbx_env/var/lib/postgresql/data/base/16384/12838 deleted file mode 100644 index ab2a70f83..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/12838 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/12839 b/zbx_env/var/lib/postgresql/data/base/16384/12839 deleted file mode 100644 index 5c80dacb3..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/12839 and /dev/null 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 deleted file mode 100644 index 98dc620ab..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/12839_fsm and /dev/null 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 deleted file mode 100644 index 602207e10..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/12839_vm and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/12841 b/zbx_env/var/lib/postgresql/data/base/16384/12841 deleted file mode 100644 index e69de29bb..000000000 diff --git a/zbx_env/var/lib/postgresql/data/base/16384/12843 b/zbx_env/var/lib/postgresql/data/base/16384/12843 deleted file mode 100644 index 01f3abd46..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/12843 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/12844 b/zbx_env/var/lib/postgresql/data/base/16384/12844 deleted file mode 100644 index 0d56ac3f3..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/12844 and /dev/null 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 deleted file mode 100644 index f8a0e258a..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/12844_fsm and /dev/null 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 deleted file mode 100644 index a853e6e13..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/12844_vm and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/12846 b/zbx_env/var/lib/postgresql/data/base/16384/12846 deleted file mode 100644 index e69de29bb..000000000 diff --git a/zbx_env/var/lib/postgresql/data/base/16384/12848 b/zbx_env/var/lib/postgresql/data/base/16384/12848 deleted file mode 100644 index a3e9f3820..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/12848 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/12849 b/zbx_env/var/lib/postgresql/data/base/16384/12849 deleted file mode 100644 index 3db9a1627..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/12849 and /dev/null 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 deleted file mode 100644 index ecbfaee5e..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/12849_fsm and /dev/null 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 deleted file mode 100644 index dddd66103..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/12849_vm and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/12851 b/zbx_env/var/lib/postgresql/data/base/16384/12851 deleted file mode 100644 index e69de29bb..000000000 diff --git a/zbx_env/var/lib/postgresql/data/base/16384/12853 b/zbx_env/var/lib/postgresql/data/base/16384/12853 deleted file mode 100644 index 4c0a3393e..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/12853 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/12854 b/zbx_env/var/lib/postgresql/data/base/16384/12854 deleted file mode 100644 index afc566762..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/12854 and /dev/null 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 deleted file mode 100644 index a836ddf75..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/12854_fsm and /dev/null 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 deleted file mode 100644 index 763cfb136..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/12854_vm and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/12856 b/zbx_env/var/lib/postgresql/data/base/16384/12856 deleted file mode 100644 index e69de29bb..000000000 diff --git a/zbx_env/var/lib/postgresql/data/base/16384/12858 b/zbx_env/var/lib/postgresql/data/base/16384/12858 deleted file mode 100644 index e81edf7b4..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/12858 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/12859 b/zbx_env/var/lib/postgresql/data/base/16384/12859 deleted file mode 100644 index e69de29bb..000000000 diff --git a/zbx_env/var/lib/postgresql/data/base/16384/12861 b/zbx_env/var/lib/postgresql/data/base/16384/12861 deleted file mode 100644 index e69de29bb..000000000 diff --git a/zbx_env/var/lib/postgresql/data/base/16384/12863 b/zbx_env/var/lib/postgresql/data/base/16384/12863 deleted file mode 100644 index d4d51b3d9..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/12863 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/1417 b/zbx_env/var/lib/postgresql/data/base/16384/1417 deleted file mode 100644 index e69de29bb..000000000 diff --git a/zbx_env/var/lib/postgresql/data/base/16384/1417_vm b/zbx_env/var/lib/postgresql/data/base/16384/1417_vm deleted file mode 100644 index e69de29bb..000000000 diff --git a/zbx_env/var/lib/postgresql/data/base/16384/1418 b/zbx_env/var/lib/postgresql/data/base/16384/1418 deleted file mode 100644 index e69de29bb..000000000 diff --git a/zbx_env/var/lib/postgresql/data/base/16384/1418_vm b/zbx_env/var/lib/postgresql/data/base/16384/1418_vm deleted file mode 100644 index e69de29bb..000000000 diff --git a/zbx_env/var/lib/postgresql/data/base/16384/16386 b/zbx_env/var/lib/postgresql/data/base/16384/16386 deleted file mode 100644 index 6d17cf9d1..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/16386 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/16404 b/zbx_env/var/lib/postgresql/data/base/16384/16404 deleted file mode 100644 index e69de29bb..000000000 diff --git a/zbx_env/var/lib/postgresql/data/base/16384/16406 b/zbx_env/var/lib/postgresql/data/base/16384/16406 deleted file mode 100644 index 30090a020..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/16406 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/16407 b/zbx_env/var/lib/postgresql/data/base/16384/16407 deleted file mode 100644 index 1c43bffea..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/16407 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/16409 b/zbx_env/var/lib/postgresql/data/base/16384/16409 deleted file mode 100644 index 80824e0ef..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/16409 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/16410 b/zbx_env/var/lib/postgresql/data/base/16384/16410 deleted file mode 100644 index e69de29bb..000000000 diff --git a/zbx_env/var/lib/postgresql/data/base/16384/16418 b/zbx_env/var/lib/postgresql/data/base/16384/16418 deleted file mode 100644 index e69de29bb..000000000 diff --git a/zbx_env/var/lib/postgresql/data/base/16384/16420 b/zbx_env/var/lib/postgresql/data/base/16384/16420 deleted file mode 100644 index d04262f4c..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/16420 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/16421 b/zbx_env/var/lib/postgresql/data/base/16384/16421 deleted file mode 100644 index 7baa312c0..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/16421 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/16423 b/zbx_env/var/lib/postgresql/data/base/16384/16423 deleted file mode 100644 index 87c7eb10d..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/16423 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/16424 b/zbx_env/var/lib/postgresql/data/base/16384/16424 deleted file mode 100644 index be707ad4e..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/16424 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/16425 b/zbx_env/var/lib/postgresql/data/base/16384/16425 deleted file mode 100644 index 12f3be4dd..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/16425 and /dev/null 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 deleted file mode 100644 index 6b4fbb37b..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/16425_fsm and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/16463 b/zbx_env/var/lib/postgresql/data/base/16384/16463 deleted file mode 100644 index e69de29bb..000000000 diff --git a/zbx_env/var/lib/postgresql/data/base/16384/16465 b/zbx_env/var/lib/postgresql/data/base/16384/16465 deleted file mode 100644 index f3f863472..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/16465 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/16466 b/zbx_env/var/lib/postgresql/data/base/16384/16466 deleted file mode 100644 index 70fe4257c..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/16466 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/16468 b/zbx_env/var/lib/postgresql/data/base/16384/16468 deleted file mode 100644 index 67f875fa9..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/16468 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/16469 b/zbx_env/var/lib/postgresql/data/base/16384/16469 deleted file mode 100644 index e5e682279..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/16469 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/16470 b/zbx_env/var/lib/postgresql/data/base/16384/16470 deleted file mode 100644 index 2328940b1..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/16470 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/16471 b/zbx_env/var/lib/postgresql/data/base/16384/16471 deleted file mode 100644 index 5abdb8ef3..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/16471 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/16472 b/zbx_env/var/lib/postgresql/data/base/16384/16472 deleted file mode 100644 index 0c2e69dff..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/16472 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/16473 b/zbx_env/var/lib/postgresql/data/base/16384/16473 deleted file mode 100644 index 6d17cf9d1..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/16473 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/16479 b/zbx_env/var/lib/postgresql/data/base/16384/16479 deleted file mode 100644 index b84837bd5..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/16479 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/16481 b/zbx_env/var/lib/postgresql/data/base/16384/16481 deleted file mode 100644 index 0e73d47b0..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/16481 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/16482 b/zbx_env/var/lib/postgresql/data/base/16384/16482 deleted file mode 100644 index 6d17cf9d1..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/16482 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/16486 b/zbx_env/var/lib/postgresql/data/base/16384/16486 deleted file mode 100644 index 58cf40eac..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/16486 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/16488 b/zbx_env/var/lib/postgresql/data/base/16384/16488 deleted file mode 100644 index ac4dbbdf8..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/16488 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/16489 b/zbx_env/var/lib/postgresql/data/base/16384/16489 deleted file mode 100644 index e69de29bb..000000000 diff --git a/zbx_env/var/lib/postgresql/data/base/16384/16495 b/zbx_env/var/lib/postgresql/data/base/16384/16495 deleted file mode 100644 index e94241ec8..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/16495 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/16497 b/zbx_env/var/lib/postgresql/data/base/16384/16497 deleted file mode 100644 index 6d17cf9d1..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/16497 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/16503 b/zbx_env/var/lib/postgresql/data/base/16384/16503 deleted file mode 100644 index bd3caeca5..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/16503 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/16505 b/zbx_env/var/lib/postgresql/data/base/16384/16505 deleted file mode 100644 index 08519f3f8..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/16505 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/16506 b/zbx_env/var/lib/postgresql/data/base/16384/16506 deleted file mode 100644 index 6d17cf9d1..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/16506 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/16526 b/zbx_env/var/lib/postgresql/data/base/16384/16526 deleted file mode 100644 index e69de29bb..000000000 diff --git a/zbx_env/var/lib/postgresql/data/base/16384/16528 b/zbx_env/var/lib/postgresql/data/base/16384/16528 deleted file mode 100644 index e1082ef5b..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/16528 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/16529 b/zbx_env/var/lib/postgresql/data/base/16384/16529 deleted file mode 100644 index 0fe9512c2..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/16529 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/16531 b/zbx_env/var/lib/postgresql/data/base/16384/16531 deleted file mode 100644 index f884ba383..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/16531 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/16532 b/zbx_env/var/lib/postgresql/data/base/16384/16532 deleted file mode 100644 index e69de29bb..000000000 diff --git a/zbx_env/var/lib/postgresql/data/base/16384/16536 b/zbx_env/var/lib/postgresql/data/base/16384/16536 deleted file mode 100644 index a26023179..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/16536 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/16538 b/zbx_env/var/lib/postgresql/data/base/16384/16538 deleted file mode 100644 index bf4eca2a4..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/16538 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/16539 b/zbx_env/var/lib/postgresql/data/base/16384/16539 deleted file mode 100644 index e69de29bb..000000000 diff --git a/zbx_env/var/lib/postgresql/data/base/16384/16543 b/zbx_env/var/lib/postgresql/data/base/16384/16543 deleted file mode 100644 index e5c6ef144..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/16543 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/16545 b/zbx_env/var/lib/postgresql/data/base/16384/16545 deleted file mode 100644 index d2a4176e9..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/16545 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/16546 b/zbx_env/var/lib/postgresql/data/base/16384/16546 deleted file mode 100644 index e69de29bb..000000000 diff --git a/zbx_env/var/lib/postgresql/data/base/16384/16552 b/zbx_env/var/lib/postgresql/data/base/16384/16552 deleted file mode 100644 index a3d97b1f2..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/16552 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/16554 b/zbx_env/var/lib/postgresql/data/base/16384/16554 deleted file mode 100644 index d3cd07227..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/16554 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/16555 b/zbx_env/var/lib/postgresql/data/base/16384/16555 deleted file mode 100644 index e69de29bb..000000000 diff --git a/zbx_env/var/lib/postgresql/data/base/16384/16559 b/zbx_env/var/lib/postgresql/data/base/16384/16559 deleted file mode 100644 index cd9f5908c..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/16559 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/16561 b/zbx_env/var/lib/postgresql/data/base/16384/16561 deleted file mode 100644 index 1cc1dc33e..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/16561 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/16562 b/zbx_env/var/lib/postgresql/data/base/16384/16562 deleted file mode 100644 index e69de29bb..000000000 diff --git a/zbx_env/var/lib/postgresql/data/base/16384/16566 b/zbx_env/var/lib/postgresql/data/base/16384/16566 deleted file mode 100644 index 08ebcd328..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/16566 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/16568 b/zbx_env/var/lib/postgresql/data/base/16384/16568 deleted file mode 100644 index 3c30808c9..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/16568 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/16569 b/zbx_env/var/lib/postgresql/data/base/16384/16569 deleted file mode 100644 index e69de29bb..000000000 diff --git a/zbx_env/var/lib/postgresql/data/base/16384/16574 b/zbx_env/var/lib/postgresql/data/base/16384/16574 deleted file mode 100644 index 9a5065f06..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/16574 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/16576 b/zbx_env/var/lib/postgresql/data/base/16384/16576 deleted file mode 100644 index 982947eee..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/16576 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/16577 b/zbx_env/var/lib/postgresql/data/base/16384/16577 deleted file mode 100644 index 64079925e..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/16577 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/16578 b/zbx_env/var/lib/postgresql/data/base/16384/16578 deleted file mode 100644 index 6d17cf9d1..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/16578 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/16586 b/zbx_env/var/lib/postgresql/data/base/16384/16586 deleted file mode 100644 index e69de29bb..000000000 diff --git a/zbx_env/var/lib/postgresql/data/base/16384/16588 b/zbx_env/var/lib/postgresql/data/base/16384/16588 deleted file mode 100644 index d4197de6f..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/16588 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/16589 b/zbx_env/var/lib/postgresql/data/base/16384/16589 deleted file mode 100644 index 6d85a88eb..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/16589 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/16591 b/zbx_env/var/lib/postgresql/data/base/16384/16591 deleted file mode 100644 index e67a01372..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/16591 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/16592 b/zbx_env/var/lib/postgresql/data/base/16384/16592 deleted file mode 100644 index bff15c561..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/16592 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/16593 b/zbx_env/var/lib/postgresql/data/base/16384/16593 deleted file mode 100644 index 6d17cf9d1..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/16593 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/16608 b/zbx_env/var/lib/postgresql/data/base/16384/16608 deleted file mode 100644 index e69de29bb..000000000 diff --git a/zbx_env/var/lib/postgresql/data/base/16384/16610 b/zbx_env/var/lib/postgresql/data/base/16384/16610 deleted file mode 100644 index 22fec22b2..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/16610 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/16611 b/zbx_env/var/lib/postgresql/data/base/16384/16611 deleted file mode 100644 index 4f9794283..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/16611 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/16613 b/zbx_env/var/lib/postgresql/data/base/16384/16613 deleted file mode 100644 index 88568521b..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/16613 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/16614 b/zbx_env/var/lib/postgresql/data/base/16384/16614 deleted file mode 100644 index 6215a7e1c..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/16614 and /dev/null 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 deleted file mode 100644 index 6b4fbb37b..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/16614_fsm and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/16619 b/zbx_env/var/lib/postgresql/data/base/16384/16619 deleted file mode 100644 index 15cebe7e8..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/16619 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/16621 b/zbx_env/var/lib/postgresql/data/base/16384/16621 deleted file mode 100644 index 0ea936e48..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/16621 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/16622 b/zbx_env/var/lib/postgresql/data/base/16384/16622 deleted file mode 100644 index e69de29bb..000000000 diff --git a/zbx_env/var/lib/postgresql/data/base/16384/16640 b/zbx_env/var/lib/postgresql/data/base/16384/16640 deleted file mode 100644 index e69de29bb..000000000 diff --git a/zbx_env/var/lib/postgresql/data/base/16384/16642 b/zbx_env/var/lib/postgresql/data/base/16384/16642 deleted file mode 100644 index 170d9372e..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/16642 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/16643 b/zbx_env/var/lib/postgresql/data/base/16384/16643 deleted file mode 100644 index ca60ebf59..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/16643 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/16645 b/zbx_env/var/lib/postgresql/data/base/16384/16645 deleted file mode 100644 index d75a84b7b..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/16645 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/16646 b/zbx_env/var/lib/postgresql/data/base/16384/16646 deleted file mode 100644 index 2262e32df..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/16646 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/16647 b/zbx_env/var/lib/postgresql/data/base/16384/16647 deleted file mode 100644 index fab2ee7c0..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/16647 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/16648 b/zbx_env/var/lib/postgresql/data/base/16384/16648 deleted file mode 100644 index 3d37efa5d..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/16648 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/16649 b/zbx_env/var/lib/postgresql/data/base/16384/16649 deleted file mode 100644 index e69de29bb..000000000 diff --git a/zbx_env/var/lib/postgresql/data/base/16384/16662 b/zbx_env/var/lib/postgresql/data/base/16384/16662 deleted file mode 100644 index e69de29bb..000000000 diff --git a/zbx_env/var/lib/postgresql/data/base/16384/16664 b/zbx_env/var/lib/postgresql/data/base/16384/16664 deleted file mode 100644 index ac9b1a13a..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/16664 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/16665 b/zbx_env/var/lib/postgresql/data/base/16384/16665 deleted file mode 100644 index fef3852cf..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/16665 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/16667 b/zbx_env/var/lib/postgresql/data/base/16384/16667 deleted file mode 100644 index a0f96eea4..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/16667 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/16668 b/zbx_env/var/lib/postgresql/data/base/16384/16668 deleted file mode 100644 index 6d17cf9d1..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/16668 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/16678 b/zbx_env/var/lib/postgresql/data/base/16384/16678 deleted file mode 100644 index 2a8cf3342..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/16678 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/16680 b/zbx_env/var/lib/postgresql/data/base/16384/16680 deleted file mode 100644 index 3742717ee..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/16680 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/16681 b/zbx_env/var/lib/postgresql/data/base/16384/16681 deleted file mode 100644 index 0e619bd16..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/16681 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/16682 b/zbx_env/var/lib/postgresql/data/base/16384/16682 deleted file mode 100644 index 6d17cf9d1..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/16682 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/16686 b/zbx_env/var/lib/postgresql/data/base/16384/16686 deleted file mode 100644 index 8597c4984..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/16686 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/16688 b/zbx_env/var/lib/postgresql/data/base/16384/16688 deleted file mode 100644 index 4920e6881..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/16688 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/16689 b/zbx_env/var/lib/postgresql/data/base/16384/16689 deleted file mode 100644 index 0d0e06fdb..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/16689 and /dev/null 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 deleted file mode 100644 index 6b4fbb37b..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/16689_fsm and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/16731 b/zbx_env/var/lib/postgresql/data/base/16384/16731 deleted file mode 100644 index e69de29bb..000000000 diff --git a/zbx_env/var/lib/postgresql/data/base/16384/16733 b/zbx_env/var/lib/postgresql/data/base/16384/16733 deleted file mode 100644 index b2009ba12..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/16733 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/16734 b/zbx_env/var/lib/postgresql/data/base/16384/16734 deleted file mode 100644 index fda257555..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/16734 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/16736 b/zbx_env/var/lib/postgresql/data/base/16384/16736 deleted file mode 100644 index f63e3b7b9..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/16736 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/16737 b/zbx_env/var/lib/postgresql/data/base/16384/16737 deleted file mode 100644 index a0e074197..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/16737 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/16738 b/zbx_env/var/lib/postgresql/data/base/16384/16738 deleted file mode 100644 index 4a6bd0c98..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/16738 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/16739 b/zbx_env/var/lib/postgresql/data/base/16384/16739 deleted file mode 100644 index eace9bd08..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/16739 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/16740 b/zbx_env/var/lib/postgresql/data/base/16384/16740 deleted file mode 100644 index 06e0c9e6e..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/16740 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/16741 b/zbx_env/var/lib/postgresql/data/base/16384/16741 deleted file mode 100644 index b627b985d..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/16741 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/16742 b/zbx_env/var/lib/postgresql/data/base/16384/16742 deleted file mode 100644 index e69de29bb..000000000 diff --git a/zbx_env/var/lib/postgresql/data/base/16384/16746 b/zbx_env/var/lib/postgresql/data/base/16384/16746 deleted file mode 100644 index 7973d6611..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/16746 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/16748 b/zbx_env/var/lib/postgresql/data/base/16384/16748 deleted file mode 100644 index ff2263d5b..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/16748 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/16749 b/zbx_env/var/lib/postgresql/data/base/16384/16749 deleted file mode 100644 index 93cc381e1..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/16749 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/16750 b/zbx_env/var/lib/postgresql/data/base/16384/16750 deleted file mode 100644 index e69de29bb..000000000 diff --git a/zbx_env/var/lib/postgresql/data/base/16384/16754 b/zbx_env/var/lib/postgresql/data/base/16384/16754 deleted file mode 100644 index f4e5b1cb8..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/16754 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/16756 b/zbx_env/var/lib/postgresql/data/base/16384/16756 deleted file mode 100644 index e0f5f5064..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/16756 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/16757 b/zbx_env/var/lib/postgresql/data/base/16384/16757 deleted file mode 100644 index 1629bd4b7..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/16757 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/16758 b/zbx_env/var/lib/postgresql/data/base/16384/16758 deleted file mode 100644 index 6d17cf9d1..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/16758 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/16780 b/zbx_env/var/lib/postgresql/data/base/16384/16780 deleted file mode 100644 index e69de29bb..000000000 diff --git a/zbx_env/var/lib/postgresql/data/base/16384/16782 b/zbx_env/var/lib/postgresql/data/base/16384/16782 deleted file mode 100644 index 1d1809a57..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/16782 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/16783 b/zbx_env/var/lib/postgresql/data/base/16384/16783 deleted file mode 100644 index 2613e9665..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/16783 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/16785 b/zbx_env/var/lib/postgresql/data/base/16384/16785 deleted file mode 100644 index b9d212fb4..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/16785 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/16786 b/zbx_env/var/lib/postgresql/data/base/16384/16786 deleted file mode 100644 index 6d17cf9d1..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/16786 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/16793 b/zbx_env/var/lib/postgresql/data/base/16384/16793 deleted file mode 100644 index 1a162f9db..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/16793 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/16795 b/zbx_env/var/lib/postgresql/data/base/16384/16795 deleted file mode 100644 index 270d2c995..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/16795 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/16796 b/zbx_env/var/lib/postgresql/data/base/16384/16796 deleted file mode 100644 index 6d17cf9d1..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/16796 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/16799 b/zbx_env/var/lib/postgresql/data/base/16384/16799 deleted file mode 100644 index 72625e885..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/16799 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/16801 b/zbx_env/var/lib/postgresql/data/base/16384/16801 deleted file mode 100644 index 65b8d7137..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/16801 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/16802 b/zbx_env/var/lib/postgresql/data/base/16384/16802 deleted file mode 100644 index ececc1d00..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/16802 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/16803 b/zbx_env/var/lib/postgresql/data/base/16384/16803 deleted file mode 100644 index 6d17cf9d1..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/16803 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/16813 b/zbx_env/var/lib/postgresql/data/base/16384/16813 deleted file mode 100644 index e69de29bb..000000000 diff --git a/zbx_env/var/lib/postgresql/data/base/16384/16815 b/zbx_env/var/lib/postgresql/data/base/16384/16815 deleted file mode 100644 index 4fe6f256c..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/16815 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/16816 b/zbx_env/var/lib/postgresql/data/base/16384/16816 deleted file mode 100644 index d8ad92b57..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/16816 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/16818 b/zbx_env/var/lib/postgresql/data/base/16384/16818 deleted file mode 100644 index e25489d43..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/16818 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/16819 b/zbx_env/var/lib/postgresql/data/base/16384/16819 deleted file mode 100644 index 558749266..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/16819 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/16820 b/zbx_env/var/lib/postgresql/data/base/16384/16820 deleted file mode 100644 index 25f2b0358..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/16820 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/16821 b/zbx_env/var/lib/postgresql/data/base/16384/16821 deleted file mode 100644 index 6d17cf9d1..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/16821 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/16837 b/zbx_env/var/lib/postgresql/data/base/16384/16837 deleted file mode 100644 index e69de29bb..000000000 diff --git a/zbx_env/var/lib/postgresql/data/base/16384/16839 b/zbx_env/var/lib/postgresql/data/base/16384/16839 deleted file mode 100644 index 3e57ed27d..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/16839 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/16840 b/zbx_env/var/lib/postgresql/data/base/16384/16840 deleted file mode 100644 index 95a26965d..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/16840 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/16842 b/zbx_env/var/lib/postgresql/data/base/16384/16842 deleted file mode 100644 index 3773cb920..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/16842 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/16843 b/zbx_env/var/lib/postgresql/data/base/16384/16843 deleted file mode 100644 index 90d7285fe..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/16843 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/16844 b/zbx_env/var/lib/postgresql/data/base/16384/16844 deleted file mode 100644 index 6d17cf9d1..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/16844 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/16853 b/zbx_env/var/lib/postgresql/data/base/16384/16853 deleted file mode 100644 index 8f2d5bcab..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/16853 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/16855 b/zbx_env/var/lib/postgresql/data/base/16384/16855 deleted file mode 100644 index e23d6108b..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/16855 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/16856 b/zbx_env/var/lib/postgresql/data/base/16384/16856 deleted file mode 100644 index 6d17cf9d1..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/16856 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/16862 b/zbx_env/var/lib/postgresql/data/base/16384/16862 deleted file mode 100644 index e69de29bb..000000000 diff --git a/zbx_env/var/lib/postgresql/data/base/16384/16864 b/zbx_env/var/lib/postgresql/data/base/16384/16864 deleted file mode 100644 index cf5a8fc7f..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/16864 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/16865 b/zbx_env/var/lib/postgresql/data/base/16384/16865 deleted file mode 100644 index 5e3c583ed..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/16865 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/16867 b/zbx_env/var/lib/postgresql/data/base/16384/16867 deleted file mode 100644 index c7a1d5301..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/16867 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/16868 b/zbx_env/var/lib/postgresql/data/base/16384/16868 deleted file mode 100644 index 6d17cf9d1..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/16868 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/16871 b/zbx_env/var/lib/postgresql/data/base/16384/16871 deleted file mode 100644 index 09f9bc432..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/16871 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/16873 b/zbx_env/var/lib/postgresql/data/base/16384/16873 deleted file mode 100644 index 4cd1852ca..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/16873 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/16874 b/zbx_env/var/lib/postgresql/data/base/16384/16874 deleted file mode 100644 index 4143a449e..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/16874 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/16875 b/zbx_env/var/lib/postgresql/data/base/16384/16875 deleted file mode 100644 index e69de29bb..000000000 diff --git a/zbx_env/var/lib/postgresql/data/base/16384/16878 b/zbx_env/var/lib/postgresql/data/base/16384/16878 deleted file mode 100644 index 3d776a750..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/16878 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/16880 b/zbx_env/var/lib/postgresql/data/base/16384/16880 deleted file mode 100644 index df280f641..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/16880 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/16881 b/zbx_env/var/lib/postgresql/data/base/16384/16881 deleted file mode 100644 index dbbb01d2f..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/16881 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/16882 b/zbx_env/var/lib/postgresql/data/base/16384/16882 deleted file mode 100644 index e69de29bb..000000000 diff --git a/zbx_env/var/lib/postgresql/data/base/16384/16894 b/zbx_env/var/lib/postgresql/data/base/16384/16894 deleted file mode 100644 index e69de29bb..000000000 diff --git a/zbx_env/var/lib/postgresql/data/base/16384/16896 b/zbx_env/var/lib/postgresql/data/base/16384/16896 deleted file mode 100644 index 5fa3489a4..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/16896 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/16897 b/zbx_env/var/lib/postgresql/data/base/16384/16897 deleted file mode 100644 index a684c3e6b..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/16897 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/16899 b/zbx_env/var/lib/postgresql/data/base/16384/16899 deleted file mode 100644 index 8bcea4a84..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/16899 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/16900 b/zbx_env/var/lib/postgresql/data/base/16384/16900 deleted file mode 100644 index e69de29bb..000000000 diff --git a/zbx_env/var/lib/postgresql/data/base/16384/16903 b/zbx_env/var/lib/postgresql/data/base/16384/16903 deleted file mode 100644 index 7cbb54336..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/16903 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/16905 b/zbx_env/var/lib/postgresql/data/base/16384/16905 deleted file mode 100644 index 5d217f4cd..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/16905 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/16906 b/zbx_env/var/lib/postgresql/data/base/16384/16906 deleted file mode 100644 index be06e3197..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/16906 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/16907 b/zbx_env/var/lib/postgresql/data/base/16384/16907 deleted file mode 100644 index e69de29bb..000000000 diff --git a/zbx_env/var/lib/postgresql/data/base/16384/16910 b/zbx_env/var/lib/postgresql/data/base/16384/16910 deleted file mode 100644 index bd805ada9..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/16910 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/16912 b/zbx_env/var/lib/postgresql/data/base/16384/16912 deleted file mode 100644 index d3da71a81..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/16912 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/16913 b/zbx_env/var/lib/postgresql/data/base/16384/16913 deleted file mode 100644 index 0619bbe38..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/16913 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/16914 b/zbx_env/var/lib/postgresql/data/base/16384/16914 deleted file mode 100644 index 6d17cf9d1..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/16914 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/16917 b/zbx_env/var/lib/postgresql/data/base/16384/16917 deleted file mode 100644 index f541f0110..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/16917 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/16919 b/zbx_env/var/lib/postgresql/data/base/16384/16919 deleted file mode 100644 index 588c131ec..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/16919 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/16920 b/zbx_env/var/lib/postgresql/data/base/16384/16920 deleted file mode 100644 index 385842ce8..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/16920 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/16921 b/zbx_env/var/lib/postgresql/data/base/16384/16921 deleted file mode 100644 index 6d17cf9d1..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/16921 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/16924 b/zbx_env/var/lib/postgresql/data/base/16384/16924 deleted file mode 100644 index f71581ccb..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/16924 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/16926 b/zbx_env/var/lib/postgresql/data/base/16384/16926 deleted file mode 100644 index c6550b857..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/16926 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/16927 b/zbx_env/var/lib/postgresql/data/base/16384/16927 deleted file mode 100644 index 98237b8cd..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/16927 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/16928 b/zbx_env/var/lib/postgresql/data/base/16384/16928 deleted file mode 100644 index e69de29bb..000000000 diff --git a/zbx_env/var/lib/postgresql/data/base/16384/16934 b/zbx_env/var/lib/postgresql/data/base/16384/16934 deleted file mode 100644 index 814669b84..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/16934 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/16936 b/zbx_env/var/lib/postgresql/data/base/16384/16936 deleted file mode 100644 index 694fffb34..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/16936 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/16937 b/zbx_env/var/lib/postgresql/data/base/16384/16937 deleted file mode 100644 index 6d17cf9d1..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/16937 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/16944 b/zbx_env/var/lib/postgresql/data/base/16384/16944 deleted file mode 100644 index e69de29bb..000000000 diff --git a/zbx_env/var/lib/postgresql/data/base/16384/16946 b/zbx_env/var/lib/postgresql/data/base/16384/16946 deleted file mode 100644 index 891b99366..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/16946 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/16947 b/zbx_env/var/lib/postgresql/data/base/16384/16947 deleted file mode 100644 index a06db9ba2..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/16947 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/16949 b/zbx_env/var/lib/postgresql/data/base/16384/16949 deleted file mode 100644 index 3dd04ac32..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/16949 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/16950 b/zbx_env/var/lib/postgresql/data/base/16384/16950 deleted file mode 100644 index 6d17cf9d1..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/16950 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17012 b/zbx_env/var/lib/postgresql/data/base/16384/17012 deleted file mode 100644 index e69de29bb..000000000 diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17014 b/zbx_env/var/lib/postgresql/data/base/16384/17014 deleted file mode 100644 index 2d97e4878..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/17014 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17015 b/zbx_env/var/lib/postgresql/data/base/16384/17015 deleted file mode 100644 index 08eb8e0dd..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/17015 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17017 b/zbx_env/var/lib/postgresql/data/base/16384/17017 deleted file mode 100644 index b938b5567..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/17017 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17018 b/zbx_env/var/lib/postgresql/data/base/16384/17018 deleted file mode 100644 index 97f204fe1..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/17018 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17019 b/zbx_env/var/lib/postgresql/data/base/16384/17019 deleted file mode 100644 index 95ea767e1..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/17019 and /dev/null 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 deleted file mode 100644 index 6b4fbb37b..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/17019_fsm and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17039 b/zbx_env/var/lib/postgresql/data/base/16384/17039 deleted file mode 100644 index e69de29bb..000000000 diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17041 b/zbx_env/var/lib/postgresql/data/base/16384/17041 deleted file mode 100644 index dfd9c929b..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/17041 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17042 b/zbx_env/var/lib/postgresql/data/base/16384/17042 deleted file mode 100644 index 81acf416d..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/17042 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17044 b/zbx_env/var/lib/postgresql/data/base/16384/17044 deleted file mode 100644 index 715421960..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/17044 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17045 b/zbx_env/var/lib/postgresql/data/base/16384/17045 deleted file mode 100644 index 628155513..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/17045 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17046 b/zbx_env/var/lib/postgresql/data/base/16384/17046 deleted file mode 100644 index ff69270aa..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/17046 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17047 b/zbx_env/var/lib/postgresql/data/base/16384/17047 deleted file mode 100644 index 6215a7e1c..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/17047 and /dev/null 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 deleted file mode 100644 index 6b4fbb37b..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/17047_fsm and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17050 b/zbx_env/var/lib/postgresql/data/base/16384/17050 deleted file mode 100644 index 95a153be2..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/17050 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17052 b/zbx_env/var/lib/postgresql/data/base/16384/17052 deleted file mode 100644 index 59270bd02..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/17052 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17053 b/zbx_env/var/lib/postgresql/data/base/16384/17053 deleted file mode 100644 index b5cb7c324..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/17053 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17054 b/zbx_env/var/lib/postgresql/data/base/16384/17054 deleted file mode 100644 index 8b3f54553..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/17054 and /dev/null 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 deleted file mode 100644 index 6b4fbb37b..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/17054_fsm and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17059 b/zbx_env/var/lib/postgresql/data/base/16384/17059 deleted file mode 100644 index 8af13d207..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/17059 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17061 b/zbx_env/var/lib/postgresql/data/base/16384/17061 deleted file mode 100644 index a382bb121..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/17061 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17062 b/zbx_env/var/lib/postgresql/data/base/16384/17062 deleted file mode 100644 index a07dcef3b..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/17062 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17063 b/zbx_env/var/lib/postgresql/data/base/16384/17063 deleted file mode 100644 index 6215a7e1c..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/17063 and /dev/null 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 deleted file mode 100644 index 6b4fbb37b..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/17063_fsm and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17081 b/zbx_env/var/lib/postgresql/data/base/16384/17081 deleted file mode 100644 index fc3234cde..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/17081 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17083 b/zbx_env/var/lib/postgresql/data/base/16384/17083 deleted file mode 100644 index e120991c8..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/17083 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17084 b/zbx_env/var/lib/postgresql/data/base/16384/17084 deleted file mode 100644 index 86a2d5d46..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/17084 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17085 b/zbx_env/var/lib/postgresql/data/base/16384/17085 deleted file mode 100644 index cd93ebad3..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/17085 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17086 b/zbx_env/var/lib/postgresql/data/base/16384/17086 deleted file mode 100644 index a0ba80ebc..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/17086 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17087 b/zbx_env/var/lib/postgresql/data/base/16384/17087 deleted file mode 100644 index 86f7e8dd5..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/17087 and /dev/null 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 deleted file mode 100644 index 6b4fbb37b..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/17087_fsm and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17096 b/zbx_env/var/lib/postgresql/data/base/16384/17096 deleted file mode 100644 index 84dd204b2..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/17096 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17098 b/zbx_env/var/lib/postgresql/data/base/16384/17098 deleted file mode 100644 index fbfd4d2a8..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/17098 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17099 b/zbx_env/var/lib/postgresql/data/base/16384/17099 deleted file mode 100644 index df0b3645d..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/17099 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17100 b/zbx_env/var/lib/postgresql/data/base/16384/17100 deleted file mode 100644 index 6d17cf9d1..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/17100 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17114 b/zbx_env/var/lib/postgresql/data/base/16384/17114 deleted file mode 100644 index cd04109b7..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/17114 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17116 b/zbx_env/var/lib/postgresql/data/base/16384/17116 deleted file mode 100644 index 69673c6d3..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/17116 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17117 b/zbx_env/var/lib/postgresql/data/base/16384/17117 deleted file mode 100644 index 6d17cf9d1..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/17117 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17122 b/zbx_env/var/lib/postgresql/data/base/16384/17122 deleted file mode 100644 index e69de29bb..000000000 diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17124 b/zbx_env/var/lib/postgresql/data/base/16384/17124 deleted file mode 100644 index c3e2d0754..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/17124 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17125 b/zbx_env/var/lib/postgresql/data/base/16384/17125 deleted file mode 100644 index f3ba728d3..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/17125 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17127 b/zbx_env/var/lib/postgresql/data/base/16384/17127 deleted file mode 100644 index d6cfeecbb..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/17127 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17128 b/zbx_env/var/lib/postgresql/data/base/16384/17128 deleted file mode 100644 index 6215a7e1c..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/17128 and /dev/null 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 deleted file mode 100644 index 6b4fbb37b..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/17128_fsm and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17133 b/zbx_env/var/lib/postgresql/data/base/16384/17133 deleted file mode 100644 index e69de29bb..000000000 diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17135 b/zbx_env/var/lib/postgresql/data/base/16384/17135 deleted file mode 100644 index 649ae28ef..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/17135 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17136 b/zbx_env/var/lib/postgresql/data/base/16384/17136 deleted file mode 100644 index 15b7fd726..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/17136 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17138 b/zbx_env/var/lib/postgresql/data/base/16384/17138 deleted file mode 100644 index 2ecec5bfd..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/17138 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17139 b/zbx_env/var/lib/postgresql/data/base/16384/17139 deleted file mode 100644 index 6d17cf9d1..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/17139 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17142 b/zbx_env/var/lib/postgresql/data/base/16384/17142 deleted file mode 100644 index a55a0073f..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/17142 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17144 b/zbx_env/var/lib/postgresql/data/base/16384/17144 deleted file mode 100644 index 4d71ecc4c..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/17144 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17145 b/zbx_env/var/lib/postgresql/data/base/16384/17145 deleted file mode 100644 index 9fc293615..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/17145 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17146 b/zbx_env/var/lib/postgresql/data/base/16384/17146 deleted file mode 100644 index 6d17cf9d1..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/17146 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17149 b/zbx_env/var/lib/postgresql/data/base/16384/17149 deleted file mode 100644 index 268037dca..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/17149 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17151 b/zbx_env/var/lib/postgresql/data/base/16384/17151 deleted file mode 100644 index e6e1b13a5..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/17151 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17152 b/zbx_env/var/lib/postgresql/data/base/16384/17152 deleted file mode 100644 index a27e1a59b..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/17152 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17153 b/zbx_env/var/lib/postgresql/data/base/16384/17153 deleted file mode 100644 index 9af2143cb..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/17153 and /dev/null 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 deleted file mode 100644 index 6b4fbb37b..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/17153_fsm and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17156 b/zbx_env/var/lib/postgresql/data/base/16384/17156 deleted file mode 100644 index 6fc8003fe..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/17156 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17158 b/zbx_env/var/lib/postgresql/data/base/16384/17158 deleted file mode 100644 index b6c3e0ca3..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/17158 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17159 b/zbx_env/var/lib/postgresql/data/base/16384/17159 deleted file mode 100644 index 7fd8c65ce..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/17159 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17160 b/zbx_env/var/lib/postgresql/data/base/16384/17160 deleted file mode 100644 index ca5ea44f2..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/17160 and /dev/null 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 deleted file mode 100644 index 6b4fbb37b..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/17160_fsm and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17165 b/zbx_env/var/lib/postgresql/data/base/16384/17165 deleted file mode 100644 index 9d1856f9c..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/17165 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17167 b/zbx_env/var/lib/postgresql/data/base/16384/17167 deleted file mode 100644 index 5cca65646..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/17167 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17168 b/zbx_env/var/lib/postgresql/data/base/16384/17168 deleted file mode 100644 index e69de29bb..000000000 diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17175 b/zbx_env/var/lib/postgresql/data/base/16384/17175 deleted file mode 100644 index e69de29bb..000000000 diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17177 b/zbx_env/var/lib/postgresql/data/base/16384/17177 deleted file mode 100644 index 51bef325e..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/17177 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17178 b/zbx_env/var/lib/postgresql/data/base/16384/17178 deleted file mode 100644 index 06cdb7ff8..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/17178 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17180 b/zbx_env/var/lib/postgresql/data/base/16384/17180 deleted file mode 100644 index 66c88882f..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/17180 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17181 b/zbx_env/var/lib/postgresql/data/base/16384/17181 deleted file mode 100644 index 74acf8566..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/17181 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17182 b/zbx_env/var/lib/postgresql/data/base/16384/17182 deleted file mode 100644 index e69de29bb..000000000 diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17186 b/zbx_env/var/lib/postgresql/data/base/16384/17186 deleted file mode 100644 index b3cbec298..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/17186 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17188 b/zbx_env/var/lib/postgresql/data/base/16384/17188 deleted file mode 100644 index e9429a478..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/17188 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17189 b/zbx_env/var/lib/postgresql/data/base/16384/17189 deleted file mode 100644 index c32aac104..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/17189 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17190 b/zbx_env/var/lib/postgresql/data/base/16384/17190 deleted file mode 100644 index e69de29bb..000000000 diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17199 b/zbx_env/var/lib/postgresql/data/base/16384/17199 deleted file mode 100644 index 648b8d98d..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/17199 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17201 b/zbx_env/var/lib/postgresql/data/base/16384/17201 deleted file mode 100644 index cf6580423..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/17201 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17202 b/zbx_env/var/lib/postgresql/data/base/16384/17202 deleted file mode 100644 index e69de29bb..000000000 diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17206 b/zbx_env/var/lib/postgresql/data/base/16384/17206 deleted file mode 100644 index 661ed6cdc..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/17206 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17208 b/zbx_env/var/lib/postgresql/data/base/16384/17208 deleted file mode 100644 index cc6f10660..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/17208 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17209 b/zbx_env/var/lib/postgresql/data/base/16384/17209 deleted file mode 100644 index 2d7884922..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/17209 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17210 b/zbx_env/var/lib/postgresql/data/base/16384/17210 deleted file mode 100644 index e69de29bb..000000000 diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17217 b/zbx_env/var/lib/postgresql/data/base/16384/17217 deleted file mode 100644 index 4a00151f9..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/17217 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17219 b/zbx_env/var/lib/postgresql/data/base/16384/17219 deleted file mode 100644 index 93e6d98f3..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/17219 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17220 b/zbx_env/var/lib/postgresql/data/base/16384/17220 deleted file mode 100644 index e69de29bb..000000000 diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17224 b/zbx_env/var/lib/postgresql/data/base/16384/17224 deleted file mode 100644 index c4c6faf54..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/17224 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17226 b/zbx_env/var/lib/postgresql/data/base/16384/17226 deleted file mode 100644 index 5cb4c3a25..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/17226 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17227 b/zbx_env/var/lib/postgresql/data/base/16384/17227 deleted file mode 100644 index c3e9e0c9d..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/17227 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17228 b/zbx_env/var/lib/postgresql/data/base/16384/17228 deleted file mode 100644 index e69de29bb..000000000 diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17234 b/zbx_env/var/lib/postgresql/data/base/16384/17234 deleted file mode 100644 index de95cbb97..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/17234 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17236 b/zbx_env/var/lib/postgresql/data/base/16384/17236 deleted file mode 100644 index bf27292d9..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/17236 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17237 b/zbx_env/var/lib/postgresql/data/base/16384/17237 deleted file mode 100644 index 0eba930de..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/17237 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17238 b/zbx_env/var/lib/postgresql/data/base/16384/17238 deleted file mode 100644 index 6d17cf9d1..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/17238 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17267 b/zbx_env/var/lib/postgresql/data/base/16384/17267 deleted file mode 100644 index e69de29bb..000000000 diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17269 b/zbx_env/var/lib/postgresql/data/base/16384/17269 deleted file mode 100644 index ba35ea3c8..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/17269 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17270 b/zbx_env/var/lib/postgresql/data/base/16384/17270 deleted file mode 100644 index 90648ddd2..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/17270 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17272 b/zbx_env/var/lib/postgresql/data/base/16384/17272 deleted file mode 100644 index fbef71862..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/17272 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17273 b/zbx_env/var/lib/postgresql/data/base/16384/17273 deleted file mode 100644 index fa3d89fd0..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/17273 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17274 b/zbx_env/var/lib/postgresql/data/base/16384/17274 deleted file mode 100644 index 5f36c5f2b..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/17274 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17275 b/zbx_env/var/lib/postgresql/data/base/16384/17275 deleted file mode 100644 index 6d17cf9d1..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/17275 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17291 b/zbx_env/var/lib/postgresql/data/base/16384/17291 deleted file mode 100644 index e69de29bb..000000000 diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17293 b/zbx_env/var/lib/postgresql/data/base/16384/17293 deleted file mode 100644 index 25b3d53ea..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/17293 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17294 b/zbx_env/var/lib/postgresql/data/base/16384/17294 deleted file mode 100644 index 9495a955a..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/17294 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17296 b/zbx_env/var/lib/postgresql/data/base/16384/17296 deleted file mode 100644 index 161ce5290..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/17296 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17297 b/zbx_env/var/lib/postgresql/data/base/16384/17297 deleted file mode 100644 index 525964f95..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/17297 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17298 b/zbx_env/var/lib/postgresql/data/base/16384/17298 deleted file mode 100644 index 4dc22e175..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/17298 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17299 b/zbx_env/var/lib/postgresql/data/base/16384/17299 deleted file mode 100644 index 771e60be9..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/17299 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17300 b/zbx_env/var/lib/postgresql/data/base/16384/17300 deleted file mode 100644 index a36f2c11d..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/17300 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17301 b/zbx_env/var/lib/postgresql/data/base/16384/17301 deleted file mode 100644 index e69de29bb..000000000 diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17307 b/zbx_env/var/lib/postgresql/data/base/16384/17307 deleted file mode 100644 index e69de29bb..000000000 diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17309 b/zbx_env/var/lib/postgresql/data/base/16384/17309 deleted file mode 100644 index 8754a65ef..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/17309 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17310 b/zbx_env/var/lib/postgresql/data/base/16384/17310 deleted file mode 100644 index 84271ac38..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/17310 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17312 b/zbx_env/var/lib/postgresql/data/base/16384/17312 deleted file mode 100644 index 55c2deaf2..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/17312 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17313 b/zbx_env/var/lib/postgresql/data/base/16384/17313 deleted file mode 100644 index 853a3c384..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/17313 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17314 b/zbx_env/var/lib/postgresql/data/base/16384/17314 deleted file mode 100644 index 2400527c9..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/17314 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17315 b/zbx_env/var/lib/postgresql/data/base/16384/17315 deleted file mode 100644 index e69de29bb..000000000 diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17320 b/zbx_env/var/lib/postgresql/data/base/16384/17320 deleted file mode 100644 index fb47e4fce..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/17320 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17322 b/zbx_env/var/lib/postgresql/data/base/16384/17322 deleted file mode 100644 index 758f052b0..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/17322 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17323 b/zbx_env/var/lib/postgresql/data/base/16384/17323 deleted file mode 100644 index e989bdf6a..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/17323 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17324 b/zbx_env/var/lib/postgresql/data/base/16384/17324 deleted file mode 100644 index e69de29bb..000000000 diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17328 b/zbx_env/var/lib/postgresql/data/base/16384/17328 deleted file mode 100644 index e69de29bb..000000000 diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17330 b/zbx_env/var/lib/postgresql/data/base/16384/17330 deleted file mode 100644 index 99434ca07..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/17330 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17331 b/zbx_env/var/lib/postgresql/data/base/16384/17331 deleted file mode 100644 index 577b77d0b..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/17331 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17333 b/zbx_env/var/lib/postgresql/data/base/16384/17333 deleted file mode 100644 index e4c61e992..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/17333 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17334 b/zbx_env/var/lib/postgresql/data/base/16384/17334 deleted file mode 100644 index e69de29bb..000000000 diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17339 b/zbx_env/var/lib/postgresql/data/base/16384/17339 deleted file mode 100644 index e69de29bb..000000000 diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17341 b/zbx_env/var/lib/postgresql/data/base/16384/17341 deleted file mode 100644 index 59888ba9a..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/17341 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17342 b/zbx_env/var/lib/postgresql/data/base/16384/17342 deleted file mode 100644 index e8b6e23f5..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/17342 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17344 b/zbx_env/var/lib/postgresql/data/base/16384/17344 deleted file mode 100644 index 39a0c7020..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/17344 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17345 b/zbx_env/var/lib/postgresql/data/base/16384/17345 deleted file mode 100644 index e69de29bb..000000000 diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17349 b/zbx_env/var/lib/postgresql/data/base/16384/17349 deleted file mode 100644 index 628991ef9..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/17349 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17351 b/zbx_env/var/lib/postgresql/data/base/16384/17351 deleted file mode 100644 index 3815d1c94..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/17351 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17352 b/zbx_env/var/lib/postgresql/data/base/16384/17352 deleted file mode 100644 index e69de29bb..000000000 diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17356 b/zbx_env/var/lib/postgresql/data/base/16384/17356 deleted file mode 100644 index f599cd0ca..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/17356 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17358 b/zbx_env/var/lib/postgresql/data/base/16384/17358 deleted file mode 100644 index 3dbffce7f..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/17358 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17359 b/zbx_env/var/lib/postgresql/data/base/16384/17359 deleted file mode 100644 index e69de29bb..000000000 diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17362 b/zbx_env/var/lib/postgresql/data/base/16384/17362 deleted file mode 100644 index 15842db32..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/17362 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17364 b/zbx_env/var/lib/postgresql/data/base/16384/17364 deleted file mode 100644 index 37b0d650e..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/17364 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17365 b/zbx_env/var/lib/postgresql/data/base/16384/17365 deleted file mode 100644 index 23dd4dc29..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/17365 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17366 b/zbx_env/var/lib/postgresql/data/base/16384/17366 deleted file mode 100644 index e69de29bb..000000000 diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17369 b/zbx_env/var/lib/postgresql/data/base/16384/17369 deleted file mode 100644 index 01ae67a94..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/17369 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17371 b/zbx_env/var/lib/postgresql/data/base/16384/17371 deleted file mode 100644 index 7586189d6..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/17371 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17372 b/zbx_env/var/lib/postgresql/data/base/16384/17372 deleted file mode 100644 index b6676bd23..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/17372 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17373 b/zbx_env/var/lib/postgresql/data/base/16384/17373 deleted file mode 100644 index e69de29bb..000000000 diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17384 b/zbx_env/var/lib/postgresql/data/base/16384/17384 deleted file mode 100644 index 3ff8821a6..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/17384 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17386 b/zbx_env/var/lib/postgresql/data/base/16384/17386 deleted file mode 100644 index e69de29bb..000000000 diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17389 b/zbx_env/var/lib/postgresql/data/base/16384/17389 deleted file mode 100644 index 48822d388..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/17389 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17391 b/zbx_env/var/lib/postgresql/data/base/16384/17391 deleted file mode 100644 index f51bd4d10..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/17391 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17392 b/zbx_env/var/lib/postgresql/data/base/16384/17392 deleted file mode 100644 index 78a44819d..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/17392 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17393 b/zbx_env/var/lib/postgresql/data/base/16384/17393 deleted file mode 100644 index 6d17cf9d1..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/17393 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17398 b/zbx_env/var/lib/postgresql/data/base/16384/17398 deleted file mode 100644 index e69de29bb..000000000 diff --git a/zbx_env/var/lib/postgresql/data/base/16384/174 b/zbx_env/var/lib/postgresql/data/base/16384/174 deleted file mode 100644 index edad2c14c..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/174 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17400 b/zbx_env/var/lib/postgresql/data/base/16384/17400 deleted file mode 100644 index 741a2b42e..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/17400 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17401 b/zbx_env/var/lib/postgresql/data/base/16384/17401 deleted file mode 100644 index 75f3c7d32..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/17401 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17403 b/zbx_env/var/lib/postgresql/data/base/16384/17403 deleted file mode 100644 index fb87e9c42..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/17403 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17404 b/zbx_env/var/lib/postgresql/data/base/16384/17404 deleted file mode 100644 index 6d17cf9d1..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/17404 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17411 b/zbx_env/var/lib/postgresql/data/base/16384/17411 deleted file mode 100644 index 5cf451744..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/17411 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17413 b/zbx_env/var/lib/postgresql/data/base/16384/17413 deleted file mode 100644 index bd66a2865..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/17413 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17414 b/zbx_env/var/lib/postgresql/data/base/16384/17414 deleted file mode 100644 index 6d17cf9d1..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/17414 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17419 b/zbx_env/var/lib/postgresql/data/base/16384/17419 deleted file mode 100644 index ffe2b2f92..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/17419 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17421 b/zbx_env/var/lib/postgresql/data/base/16384/17421 deleted file mode 100644 index e69de29bb..000000000 diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17433 b/zbx_env/var/lib/postgresql/data/base/16384/17433 deleted file mode 100644 index e69de29bb..000000000 diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17435 b/zbx_env/var/lib/postgresql/data/base/16384/17435 deleted file mode 100644 index 54c99567c..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/17435 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17436 b/zbx_env/var/lib/postgresql/data/base/16384/17436 deleted file mode 100644 index 38c3c638f..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/17436 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17438 b/zbx_env/var/lib/postgresql/data/base/16384/17438 deleted file mode 100644 index bb8ec66c5..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/17438 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17439 b/zbx_env/var/lib/postgresql/data/base/16384/17439 deleted file mode 100644 index cfb064f58..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/17439 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17440 b/zbx_env/var/lib/postgresql/data/base/16384/17440 deleted file mode 100644 index b55b03797..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/17440 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17441 b/zbx_env/var/lib/postgresql/data/base/16384/17441 deleted file mode 100644 index 8f3aa7f2c..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/17441 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17442 b/zbx_env/var/lib/postgresql/data/base/16384/17442 deleted file mode 100644 index 7f018eb63..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/17442 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17443 b/zbx_env/var/lib/postgresql/data/base/16384/17443 deleted file mode 100644 index 2244eec1d..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/17443 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17444 b/zbx_env/var/lib/postgresql/data/base/16384/17444 deleted file mode 100644 index 4f14f5709..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/17444 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17445 b/zbx_env/var/lib/postgresql/data/base/16384/17445 deleted file mode 100644 index e69de29bb..000000000 diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17451 b/zbx_env/var/lib/postgresql/data/base/16384/17451 deleted file mode 100644 index 8687d0a85..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/17451 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17452 b/zbx_env/var/lib/postgresql/data/base/16384/17452 deleted file mode 100644 index e69de29bb..000000000 diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17458 b/zbx_env/var/lib/postgresql/data/base/16384/17458 deleted file mode 100644 index 9a651c5ab..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/17458 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17459 b/zbx_env/var/lib/postgresql/data/base/16384/17459 deleted file mode 100644 index e69de29bb..000000000 diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17465 b/zbx_env/var/lib/postgresql/data/base/16384/17465 deleted file mode 100644 index 1adb81468..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/17465 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17466 b/zbx_env/var/lib/postgresql/data/base/16384/17466 deleted file mode 100644 index e69de29bb..000000000 diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17476 b/zbx_env/var/lib/postgresql/data/base/16384/17476 deleted file mode 100644 index e69de29bb..000000000 diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17478 b/zbx_env/var/lib/postgresql/data/base/16384/17478 deleted file mode 100644 index 8d779fa1f..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/17478 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17479 b/zbx_env/var/lib/postgresql/data/base/16384/17479 deleted file mode 100644 index b2ba6c8c2..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/17479 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17480 b/zbx_env/var/lib/postgresql/data/base/16384/17480 deleted file mode 100644 index e69de29bb..000000000 diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17486 b/zbx_env/var/lib/postgresql/data/base/16384/17486 deleted file mode 100644 index e69de29bb..000000000 diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17488 b/zbx_env/var/lib/postgresql/data/base/16384/17488 deleted file mode 100644 index 0fb53c8cf..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/17488 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17489 b/zbx_env/var/lib/postgresql/data/base/16384/17489 deleted file mode 100644 index 5f6589fe8..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/17489 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17490 b/zbx_env/var/lib/postgresql/data/base/16384/17490 deleted file mode 100644 index 6d17cf9d1..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/17490 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17492 b/zbx_env/var/lib/postgresql/data/base/16384/17492 deleted file mode 100644 index e69de29bb..000000000 diff --git a/zbx_env/var/lib/postgresql/data/base/16384/175 b/zbx_env/var/lib/postgresql/data/base/16384/175 deleted file mode 100644 index a8041c693..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/175 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17507 b/zbx_env/var/lib/postgresql/data/base/16384/17507 deleted file mode 100644 index e69de29bb..000000000 diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17509 b/zbx_env/var/lib/postgresql/data/base/16384/17509 deleted file mode 100644 index 2ee907f20..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/17509 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17510 b/zbx_env/var/lib/postgresql/data/base/16384/17510 deleted file mode 100644 index e5cb32f06..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/17510 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17512 b/zbx_env/var/lib/postgresql/data/base/16384/17512 deleted file mode 100644 index c2db46eca..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/17512 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17513 b/zbx_env/var/lib/postgresql/data/base/16384/17513 deleted file mode 100644 index 6d17cf9d1..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/17513 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17515 b/zbx_env/var/lib/postgresql/data/base/16384/17515 deleted file mode 100644 index e69de29bb..000000000 diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17525 b/zbx_env/var/lib/postgresql/data/base/16384/17525 deleted file mode 100644 index d8fa12f90..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/17525 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17527 b/zbx_env/var/lib/postgresql/data/base/16384/17527 deleted file mode 100644 index f0a9e8e0d..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/17527 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17528 b/zbx_env/var/lib/postgresql/data/base/16384/17528 deleted file mode 100644 index e69de29bb..000000000 diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17538 b/zbx_env/var/lib/postgresql/data/base/16384/17538 deleted file mode 100644 index fa58461a7..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/17538 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17540 b/zbx_env/var/lib/postgresql/data/base/16384/17540 deleted file mode 100644 index 87d5f3620..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/17540 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17541 b/zbx_env/var/lib/postgresql/data/base/16384/17541 deleted file mode 100644 index e132caa5e..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/17541 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17542 b/zbx_env/var/lib/postgresql/data/base/16384/17542 deleted file mode 100644 index e69de29bb..000000000 diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17550 b/zbx_env/var/lib/postgresql/data/base/16384/17550 deleted file mode 100644 index b35e2d5bf..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/17550 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17552 b/zbx_env/var/lib/postgresql/data/base/16384/17552 deleted file mode 100644 index e69de29bb..000000000 diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17560 b/zbx_env/var/lib/postgresql/data/base/16384/17560 deleted file mode 100644 index 6cef758eb..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/17560 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17562 b/zbx_env/var/lib/postgresql/data/base/16384/17562 deleted file mode 100644 index e69de29bb..000000000 diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17568 b/zbx_env/var/lib/postgresql/data/base/16384/17568 deleted file mode 100644 index 13de8639f..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/17568 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17570 b/zbx_env/var/lib/postgresql/data/base/16384/17570 deleted file mode 100644 index 12a780867..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/17570 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17571 b/zbx_env/var/lib/postgresql/data/base/16384/17571 deleted file mode 100644 index 2feee75fd..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/17571 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17572 b/zbx_env/var/lib/postgresql/data/base/16384/17572 deleted file mode 100644 index f7bbec5fa..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/17572 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17573 b/zbx_env/var/lib/postgresql/data/base/16384/17573 deleted file mode 100644 index 6d17cf9d1..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/17573 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17583 b/zbx_env/var/lib/postgresql/data/base/16384/17583 deleted file mode 100644 index 6d929e08c..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/17583 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17585 b/zbx_env/var/lib/postgresql/data/base/16384/17585 deleted file mode 100644 index ab7598352..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/17585 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17586 b/zbx_env/var/lib/postgresql/data/base/16384/17586 deleted file mode 100644 index d9a337cb5..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/17586 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17587 b/zbx_env/var/lib/postgresql/data/base/16384/17587 deleted file mode 100644 index e69de29bb..000000000 diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17594 b/zbx_env/var/lib/postgresql/data/base/16384/17594 deleted file mode 100644 index e69de29bb..000000000 diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17596 b/zbx_env/var/lib/postgresql/data/base/16384/17596 deleted file mode 100644 index f5f9834f3..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/17596 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17597 b/zbx_env/var/lib/postgresql/data/base/16384/17597 deleted file mode 100644 index 46bad6391..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/17597 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17599 b/zbx_env/var/lib/postgresql/data/base/16384/17599 deleted file mode 100644 index 8edf34734..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/17599 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17600 b/zbx_env/var/lib/postgresql/data/base/16384/17600 deleted file mode 100644 index e69de29bb..000000000 diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17605 b/zbx_env/var/lib/postgresql/data/base/16384/17605 deleted file mode 100644 index 7e52837db..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/17605 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17607 b/zbx_env/var/lib/postgresql/data/base/16384/17607 deleted file mode 100644 index 586be81d3..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/17607 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17608 b/zbx_env/var/lib/postgresql/data/base/16384/17608 deleted file mode 100644 index acb31624c..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/17608 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17609 b/zbx_env/var/lib/postgresql/data/base/16384/17609 deleted file mode 100644 index e69de29bb..000000000 diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17617 b/zbx_env/var/lib/postgresql/data/base/16384/17617 deleted file mode 100644 index cb80ed30b..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/17617 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17619 b/zbx_env/var/lib/postgresql/data/base/16384/17619 deleted file mode 100644 index 95616f3cf..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/17619 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17620 b/zbx_env/var/lib/postgresql/data/base/16384/17620 deleted file mode 100644 index 6d17cf9d1..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/17620 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17622 b/zbx_env/var/lib/postgresql/data/base/16384/17622 deleted file mode 100644 index e69de29bb..000000000 diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17632 b/zbx_env/var/lib/postgresql/data/base/16384/17632 deleted file mode 100644 index 8ea6e1bef..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/17632 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17634 b/zbx_env/var/lib/postgresql/data/base/16384/17634 deleted file mode 100644 index dc2ff8eaa..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/17634 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17635 b/zbx_env/var/lib/postgresql/data/base/16384/17635 deleted file mode 100644 index e69de29bb..000000000 diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17641 b/zbx_env/var/lib/postgresql/data/base/16384/17641 deleted file mode 100644 index 5e357cf78..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/17641 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17643 b/zbx_env/var/lib/postgresql/data/base/16384/17643 deleted file mode 100644 index dbe5f245a..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/17643 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17644 b/zbx_env/var/lib/postgresql/data/base/16384/17644 deleted file mode 100644 index e69de29bb..000000000 diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17654 b/zbx_env/var/lib/postgresql/data/base/16384/17654 deleted file mode 100644 index 95fdbe277..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/17654 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17656 b/zbx_env/var/lib/postgresql/data/base/16384/17656 deleted file mode 100644 index bc7eefe94..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/17656 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17657 b/zbx_env/var/lib/postgresql/data/base/16384/17657 deleted file mode 100644 index 83b7a8839..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/17657 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17658 b/zbx_env/var/lib/postgresql/data/base/16384/17658 deleted file mode 100644 index e69de29bb..000000000 diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17664 b/zbx_env/var/lib/postgresql/data/base/16384/17664 deleted file mode 100644 index 0c5cfe697..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/17664 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17666 b/zbx_env/var/lib/postgresql/data/base/16384/17666 deleted file mode 100644 index 1b3d520d7..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/17666 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17667 b/zbx_env/var/lib/postgresql/data/base/16384/17667 deleted file mode 100644 index 6d17cf9d1..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/17667 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17671 b/zbx_env/var/lib/postgresql/data/base/16384/17671 deleted file mode 100644 index 98eb32ba9..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/17671 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17673 b/zbx_env/var/lib/postgresql/data/base/16384/17673 deleted file mode 100644 index e69de29bb..000000000 diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17676 b/zbx_env/var/lib/postgresql/data/base/16384/17676 deleted file mode 100644 index d352db4f9..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/17676 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17678 b/zbx_env/var/lib/postgresql/data/base/16384/17678 deleted file mode 100644 index 402afa9fc..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/17678 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17679 b/zbx_env/var/lib/postgresql/data/base/16384/17679 deleted file mode 100644 index e69de29bb..000000000 diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17753 b/zbx_env/var/lib/postgresql/data/base/16384/17753 deleted file mode 100644 index e69de29bb..000000000 diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17755 b/zbx_env/var/lib/postgresql/data/base/16384/17755 deleted file mode 100644 index c50488bc6..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/17755 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17756 b/zbx_env/var/lib/postgresql/data/base/16384/17756 deleted file mode 100644 index 25dac0442..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/17756 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17758 b/zbx_env/var/lib/postgresql/data/base/16384/17758 deleted file mode 100644 index e69de29bb..000000000 diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17763 b/zbx_env/var/lib/postgresql/data/base/16384/17763 deleted file mode 100644 index c0b5be66c..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/17763 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17765 b/zbx_env/var/lib/postgresql/data/base/16384/17765 deleted file mode 100644 index 8b3f54553..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/17765 and /dev/null 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 deleted file mode 100644 index 6b4fbb37b..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/17765_fsm and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17771 b/zbx_env/var/lib/postgresql/data/base/16384/17771 deleted file mode 100644 index f80d63a53..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/17771 and /dev/null 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 deleted file mode 100644 index 6b4fbb37b..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/17771_fsm and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17773 b/zbx_env/var/lib/postgresql/data/base/16384/17773 deleted file mode 100644 index 7dea0c276..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/17773 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17774 b/zbx_env/var/lib/postgresql/data/base/16384/17774 deleted file mode 100644 index 28c0d3d02..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/17774 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17776 b/zbx_env/var/lib/postgresql/data/base/16384/17776 deleted file mode 100644 index 5e0ad138d..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/17776 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17777 b/zbx_env/var/lib/postgresql/data/base/16384/17777 deleted file mode 100644 index ca5ea44f2..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/17777 and /dev/null 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 deleted file mode 100644 index 6b4fbb37b..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/17777_fsm and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17783 b/zbx_env/var/lib/postgresql/data/base/16384/17783 deleted file mode 100644 index 89bb8011f..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/17783 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17785 b/zbx_env/var/lib/postgresql/data/base/16384/17785 deleted file mode 100644 index 4e7fe5858..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/17785 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17786 b/zbx_env/var/lib/postgresql/data/base/16384/17786 deleted file mode 100644 index a5c3b75b0..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/17786 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17787 b/zbx_env/var/lib/postgresql/data/base/16384/17787 deleted file mode 100644 index 6d17cf9d1..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/17787 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17793 b/zbx_env/var/lib/postgresql/data/base/16384/17793 deleted file mode 100644 index 8921464e5..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/17793 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17795 b/zbx_env/var/lib/postgresql/data/base/16384/17795 deleted file mode 100644 index e69de29bb..000000000 diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17798 b/zbx_env/var/lib/postgresql/data/base/16384/17798 deleted file mode 100644 index cfd6ccbdb..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/17798 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17800 b/zbx_env/var/lib/postgresql/data/base/16384/17800 deleted file mode 100644 index 6d17cf9d1..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/17800 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17810 b/zbx_env/var/lib/postgresql/data/base/16384/17810 deleted file mode 100644 index fbfefa48c..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/17810 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17812 b/zbx_env/var/lib/postgresql/data/base/16384/17812 deleted file mode 100644 index 307959e65..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/17812 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17813 b/zbx_env/var/lib/postgresql/data/base/16384/17813 deleted file mode 100644 index b4745656a..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/17813 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17814 b/zbx_env/var/lib/postgresql/data/base/16384/17814 deleted file mode 100644 index 6d17cf9d1..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/17814 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17820 b/zbx_env/var/lib/postgresql/data/base/16384/17820 deleted file mode 100644 index 2d59aa078..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/17820 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17822 b/zbx_env/var/lib/postgresql/data/base/16384/17822 deleted file mode 100644 index 0767a1bdc..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/17822 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17823 b/zbx_env/var/lib/postgresql/data/base/16384/17823 deleted file mode 100644 index e69de29bb..000000000 diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17826 b/zbx_env/var/lib/postgresql/data/base/16384/17826 deleted file mode 100644 index 1bfaffb3a..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/17826 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17828 b/zbx_env/var/lib/postgresql/data/base/16384/17828 deleted file mode 100644 index c5c778e18..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/17828 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17829 b/zbx_env/var/lib/postgresql/data/base/16384/17829 deleted file mode 100644 index 6d17cf9d1..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/17829 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17832 b/zbx_env/var/lib/postgresql/data/base/16384/17832 deleted file mode 100644 index 6849a455a..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/17832 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17834 b/zbx_env/var/lib/postgresql/data/base/16384/17834 deleted file mode 100644 index 3161d1b9f..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/17834 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17835 b/zbx_env/var/lib/postgresql/data/base/16384/17835 deleted file mode 100644 index 1bb78f596..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/17835 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17836 b/zbx_env/var/lib/postgresql/data/base/16384/17836 deleted file mode 100644 index 294f4016d..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/17836 and /dev/null 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 deleted file mode 100644 index 6b4fbb37b..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/17836_fsm and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17842 b/zbx_env/var/lib/postgresql/data/base/16384/17842 deleted file mode 100644 index 41babeff6..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/17842 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17844 b/zbx_env/var/lib/postgresql/data/base/16384/17844 deleted file mode 100644 index 1dfc800ef..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/17844 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17845 b/zbx_env/var/lib/postgresql/data/base/16384/17845 deleted file mode 100644 index 6d17cf9d1..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/17845 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17849 b/zbx_env/var/lib/postgresql/data/base/16384/17849 deleted file mode 100644 index 9695ba0b4..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/17849 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17851 b/zbx_env/var/lib/postgresql/data/base/16384/17851 deleted file mode 100644 index 4871b2b47..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/17851 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17852 b/zbx_env/var/lib/postgresql/data/base/16384/17852 deleted file mode 100644 index 72bdaa17e..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/17852 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17853 b/zbx_env/var/lib/postgresql/data/base/16384/17853 deleted file mode 100644 index 6d17cf9d1..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/17853 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17856 b/zbx_env/var/lib/postgresql/data/base/16384/17856 deleted file mode 100644 index 06a15d44e..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/17856 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17858 b/zbx_env/var/lib/postgresql/data/base/16384/17858 deleted file mode 100644 index bba4d1af8..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/17858 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17859 b/zbx_env/var/lib/postgresql/data/base/16384/17859 deleted file mode 100644 index 730a4bf53..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/17859 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17860 b/zbx_env/var/lib/postgresql/data/base/16384/17860 deleted file mode 100644 index e69de29bb..000000000 diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17866 b/zbx_env/var/lib/postgresql/data/base/16384/17866 deleted file mode 100644 index e47636dec..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/17866 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17868 b/zbx_env/var/lib/postgresql/data/base/16384/17868 deleted file mode 100644 index cd15e7b20..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/17868 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17869 b/zbx_env/var/lib/postgresql/data/base/16384/17869 deleted file mode 100644 index 86e772358..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/17869 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17870 b/zbx_env/var/lib/postgresql/data/base/16384/17870 deleted file mode 100644 index e69de29bb..000000000 diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17874 b/zbx_env/var/lib/postgresql/data/base/16384/17874 deleted file mode 100644 index 3821d1318..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/17874 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17876 b/zbx_env/var/lib/postgresql/data/base/16384/17876 deleted file mode 100644 index e69de29bb..000000000 diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17881 b/zbx_env/var/lib/postgresql/data/base/16384/17881 deleted file mode 100644 index e69de29bb..000000000 diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17883 b/zbx_env/var/lib/postgresql/data/base/16384/17883 deleted file mode 100644 index 3ebd8079d..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/17883 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17884 b/zbx_env/var/lib/postgresql/data/base/16384/17884 deleted file mode 100644 index 175ec683a..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/17884 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17886 b/zbx_env/var/lib/postgresql/data/base/16384/17886 deleted file mode 100644 index c53281d38..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/17886 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17887 b/zbx_env/var/lib/postgresql/data/base/16384/17887 deleted file mode 100644 index e69de29bb..000000000 diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17892 b/zbx_env/var/lib/postgresql/data/base/16384/17892 deleted file mode 100644 index e69de29bb..000000000 diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17894 b/zbx_env/var/lib/postgresql/data/base/16384/17894 deleted file mode 100644 index 346520ce0..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/17894 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17895 b/zbx_env/var/lib/postgresql/data/base/16384/17895 deleted file mode 100644 index 33abb1379..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/17895 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17897 b/zbx_env/var/lib/postgresql/data/base/16384/17897 deleted file mode 100644 index cda5b4f81..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/17897 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17898 b/zbx_env/var/lib/postgresql/data/base/16384/17898 deleted file mode 100644 index e69de29bb..000000000 diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17908 b/zbx_env/var/lib/postgresql/data/base/16384/17908 deleted file mode 100644 index d5e76f64e..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/17908 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17910 b/zbx_env/var/lib/postgresql/data/base/16384/17910 deleted file mode 100644 index fa2f80b91..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/17910 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17911 b/zbx_env/var/lib/postgresql/data/base/16384/17911 deleted file mode 100644 index e913d2cac..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/17911 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17912 b/zbx_env/var/lib/postgresql/data/base/16384/17912 deleted file mode 100644 index 44f374309..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/17912 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17913 b/zbx_env/var/lib/postgresql/data/base/16384/17913 deleted file mode 100644 index e69de29bb..000000000 diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17918 b/zbx_env/var/lib/postgresql/data/base/16384/17918 deleted file mode 100644 index e69de29bb..000000000 diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17920 b/zbx_env/var/lib/postgresql/data/base/16384/17920 deleted file mode 100644 index 589318bc4..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/17920 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17921 b/zbx_env/var/lib/postgresql/data/base/16384/17921 deleted file mode 100644 index 0b66ba640..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/17921 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17923 b/zbx_env/var/lib/postgresql/data/base/16384/17923 deleted file mode 100644 index 553132d95..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/17923 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17924 b/zbx_env/var/lib/postgresql/data/base/16384/17924 deleted file mode 100644 index e6cef9d12..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/17924 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17925 b/zbx_env/var/lib/postgresql/data/base/16384/17925 deleted file mode 100644 index e69de29bb..000000000 diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17928 b/zbx_env/var/lib/postgresql/data/base/16384/17928 deleted file mode 100644 index ed14fff62..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/17928 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17930 b/zbx_env/var/lib/postgresql/data/base/16384/17930 deleted file mode 100644 index 655cc1bad..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/17930 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17931 b/zbx_env/var/lib/postgresql/data/base/16384/17931 deleted file mode 100644 index 108b3dfc2..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/17931 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17932 b/zbx_env/var/lib/postgresql/data/base/16384/17932 deleted file mode 100644 index e69de29bb..000000000 diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17940 b/zbx_env/var/lib/postgresql/data/base/16384/17940 deleted file mode 100644 index e69de29bb..000000000 diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17942 b/zbx_env/var/lib/postgresql/data/base/16384/17942 deleted file mode 100644 index 640f808ce..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/17942 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17943 b/zbx_env/var/lib/postgresql/data/base/16384/17943 deleted file mode 100644 index 9ee1501e1..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/17943 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17945 b/zbx_env/var/lib/postgresql/data/base/16384/17945 deleted file mode 100644 index 4258da0c8..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/17945 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17946 b/zbx_env/var/lib/postgresql/data/base/16384/17946 deleted file mode 100644 index 631a3e3ba..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/17946 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17947 b/zbx_env/var/lib/postgresql/data/base/16384/17947 deleted file mode 100644 index e69de29bb..000000000 diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17951 b/zbx_env/var/lib/postgresql/data/base/16384/17951 deleted file mode 100644 index 1d0783588..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/17951 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17953 b/zbx_env/var/lib/postgresql/data/base/16384/17953 deleted file mode 100644 index 7b213dc75..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/17953 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17954 b/zbx_env/var/lib/postgresql/data/base/16384/17954 deleted file mode 100644 index e69de29bb..000000000 diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17958 b/zbx_env/var/lib/postgresql/data/base/16384/17958 deleted file mode 100644 index 13b7c71fc..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/17958 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17960 b/zbx_env/var/lib/postgresql/data/base/16384/17960 deleted file mode 100644 index e69de29bb..000000000 diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17964 b/zbx_env/var/lib/postgresql/data/base/16384/17964 deleted file mode 100644 index 7e56cef35..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/17964 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17966 b/zbx_env/var/lib/postgresql/data/base/16384/17966 deleted file mode 100644 index 82fda0d61..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/17966 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17967 b/zbx_env/var/lib/postgresql/data/base/16384/17967 deleted file mode 100644 index e69de29bb..000000000 diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17972 b/zbx_env/var/lib/postgresql/data/base/16384/17972 deleted file mode 100644 index e69de29bb..000000000 diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17974 b/zbx_env/var/lib/postgresql/data/base/16384/17974 deleted file mode 100644 index 45cff33b4..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/17974 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17975 b/zbx_env/var/lib/postgresql/data/base/16384/17975 deleted file mode 100644 index 716ef2d12..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/17975 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17977 b/zbx_env/var/lib/postgresql/data/base/16384/17977 deleted file mode 100644 index e69de29bb..000000000 diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17983 b/zbx_env/var/lib/postgresql/data/base/16384/17983 deleted file mode 100644 index e69de29bb..000000000 diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17985 b/zbx_env/var/lib/postgresql/data/base/16384/17985 deleted file mode 100644 index 18f969d77..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/17985 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17986 b/zbx_env/var/lib/postgresql/data/base/16384/17986 deleted file mode 100644 index 1877abcef..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/17986 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17988 b/zbx_env/var/lib/postgresql/data/base/16384/17988 deleted file mode 100644 index e69de29bb..000000000 diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17992 b/zbx_env/var/lib/postgresql/data/base/16384/17992 deleted file mode 100644 index 58b29a3e7..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/17992 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17994 b/zbx_env/var/lib/postgresql/data/base/16384/17994 deleted file mode 100644 index f2180ae9a..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/17994 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/17995 b/zbx_env/var/lib/postgresql/data/base/16384/17995 deleted file mode 100644 index e69de29bb..000000000 diff --git a/zbx_env/var/lib/postgresql/data/base/16384/18001 b/zbx_env/var/lib/postgresql/data/base/16384/18001 deleted file mode 100644 index 0f1808bd6..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/18001 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/18003 b/zbx_env/var/lib/postgresql/data/base/16384/18003 deleted file mode 100644 index d1e181aea..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/18003 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/18004 b/zbx_env/var/lib/postgresql/data/base/16384/18004 deleted file mode 100644 index e69de29bb..000000000 diff --git a/zbx_env/var/lib/postgresql/data/base/16384/18007 b/zbx_env/var/lib/postgresql/data/base/16384/18007 deleted file mode 100644 index 1339c3faa..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/18007 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/18009 b/zbx_env/var/lib/postgresql/data/base/16384/18009 deleted file mode 100644 index 12f3be4dd..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/18009 and /dev/null 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 deleted file mode 100644 index 6b4fbb37b..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/18009_fsm and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/18015 b/zbx_env/var/lib/postgresql/data/base/16384/18015 deleted file mode 100644 index 2ca1bc7b5..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/18015 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/18017 b/zbx_env/var/lib/postgresql/data/base/16384/18017 deleted file mode 100644 index d96deab78..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/18017 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/18018 b/zbx_env/var/lib/postgresql/data/base/16384/18018 deleted file mode 100644 index e69de29bb..000000000 diff --git a/zbx_env/var/lib/postgresql/data/base/16384/18030 b/zbx_env/var/lib/postgresql/data/base/16384/18030 deleted file mode 100644 index e69de29bb..000000000 diff --git a/zbx_env/var/lib/postgresql/data/base/16384/18032 b/zbx_env/var/lib/postgresql/data/base/16384/18032 deleted file mode 100644 index 1689f2a37..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/18032 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/18033 b/zbx_env/var/lib/postgresql/data/base/16384/18033 deleted file mode 100644 index 40f3e651b..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/18033 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/18035 b/zbx_env/var/lib/postgresql/data/base/16384/18035 deleted file mode 100644 index e69de29bb..000000000 diff --git a/zbx_env/var/lib/postgresql/data/base/16384/18040 b/zbx_env/var/lib/postgresql/data/base/16384/18040 deleted file mode 100644 index e69de29bb..000000000 diff --git a/zbx_env/var/lib/postgresql/data/base/16384/18042 b/zbx_env/var/lib/postgresql/data/base/16384/18042 deleted file mode 100644 index 08800ef30..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/18042 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/18043 b/zbx_env/var/lib/postgresql/data/base/16384/18043 deleted file mode 100644 index 07584945d..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/18043 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/18045 b/zbx_env/var/lib/postgresql/data/base/16384/18045 deleted file mode 100644 index e69de29bb..000000000 diff --git a/zbx_env/var/lib/postgresql/data/base/16384/18048 b/zbx_env/var/lib/postgresql/data/base/16384/18048 deleted file mode 100644 index 1f96b6966..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/18048 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/18050 b/zbx_env/var/lib/postgresql/data/base/16384/18050 deleted file mode 100644 index 6d17cf9d1..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/18050 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/18069 b/zbx_env/var/lib/postgresql/data/base/16384/18069 deleted file mode 100644 index e69de29bb..000000000 diff --git a/zbx_env/var/lib/postgresql/data/base/16384/18071 b/zbx_env/var/lib/postgresql/data/base/16384/18071 deleted file mode 100644 index aa6bde9ed..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/18071 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/18072 b/zbx_env/var/lib/postgresql/data/base/16384/18072 deleted file mode 100644 index 49a4f830b..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/18072 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/18074 b/zbx_env/var/lib/postgresql/data/base/16384/18074 deleted file mode 100644 index 361fb7b1d..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/18074 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/18075 b/zbx_env/var/lib/postgresql/data/base/16384/18075 deleted file mode 100644 index e69de29bb..000000000 diff --git a/zbx_env/var/lib/postgresql/data/base/16384/18078 b/zbx_env/var/lib/postgresql/data/base/16384/18078 deleted file mode 100644 index b3df5c3f4..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/18078 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/18080 b/zbx_env/var/lib/postgresql/data/base/16384/18080 deleted file mode 100644 index eb3f421e3..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/18080 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/18081 b/zbx_env/var/lib/postgresql/data/base/16384/18081 deleted file mode 100644 index e69de29bb..000000000 diff --git a/zbx_env/var/lib/postgresql/data/base/16384/18087 b/zbx_env/var/lib/postgresql/data/base/16384/18087 deleted file mode 100644 index e69de29bb..000000000 diff --git a/zbx_env/var/lib/postgresql/data/base/16384/18089 b/zbx_env/var/lib/postgresql/data/base/16384/18089 deleted file mode 100644 index 6710ca48e..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/18089 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/18090 b/zbx_env/var/lib/postgresql/data/base/16384/18090 deleted file mode 100644 index 59e1d5815..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/18090 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/18092 b/zbx_env/var/lib/postgresql/data/base/16384/18092 deleted file mode 100644 index 20b83a157..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/18092 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/18093 b/zbx_env/var/lib/postgresql/data/base/16384/18093 deleted file mode 100644 index e69de29bb..000000000 diff --git a/zbx_env/var/lib/postgresql/data/base/16384/18099 b/zbx_env/var/lib/postgresql/data/base/16384/18099 deleted file mode 100644 index e69de29bb..000000000 diff --git a/zbx_env/var/lib/postgresql/data/base/16384/18101 b/zbx_env/var/lib/postgresql/data/base/16384/18101 deleted file mode 100644 index 36242ba78..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/18101 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/18102 b/zbx_env/var/lib/postgresql/data/base/16384/18102 deleted file mode 100644 index cd644b0cb..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/18102 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/18104 b/zbx_env/var/lib/postgresql/data/base/16384/18104 deleted file mode 100644 index de6251d84..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/18104 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/18105 b/zbx_env/var/lib/postgresql/data/base/16384/18105 deleted file mode 100644 index 6d17cf9d1..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/18105 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/18109 b/zbx_env/var/lib/postgresql/data/base/16384/18109 deleted file mode 100644 index 6e566c3d6..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/18109 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/18111 b/zbx_env/var/lib/postgresql/data/base/16384/18111 deleted file mode 100644 index e69de29bb..000000000 diff --git a/zbx_env/var/lib/postgresql/data/base/16384/18115 b/zbx_env/var/lib/postgresql/data/base/16384/18115 deleted file mode 100644 index 28c258825..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/18115 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/18117 b/zbx_env/var/lib/postgresql/data/base/16384/18117 deleted file mode 100644 index a195056df..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/18117 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/18118 b/zbx_env/var/lib/postgresql/data/base/16384/18118 deleted file mode 100644 index e69de29bb..000000000 diff --git a/zbx_env/var/lib/postgresql/data/base/16384/18122 b/zbx_env/var/lib/postgresql/data/base/16384/18122 deleted file mode 100644 index 3566e7962..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/18122 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/18124 b/zbx_env/var/lib/postgresql/data/base/16384/18124 deleted file mode 100644 index a01dc5a3c..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/18124 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/18125 b/zbx_env/var/lib/postgresql/data/base/16384/18125 deleted file mode 100644 index 6d17cf9d1..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/18125 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/18134 b/zbx_env/var/lib/postgresql/data/base/16384/18134 deleted file mode 100644 index e69de29bb..000000000 diff --git a/zbx_env/var/lib/postgresql/data/base/16384/18136 b/zbx_env/var/lib/postgresql/data/base/16384/18136 deleted file mode 100644 index e725e5a2d..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/18136 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/18137 b/zbx_env/var/lib/postgresql/data/base/16384/18137 deleted file mode 100644 index 333fabeb1..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/18137 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/18139 b/zbx_env/var/lib/postgresql/data/base/16384/18139 deleted file mode 100644 index cf8f23f36..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/18139 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/18140 b/zbx_env/var/lib/postgresql/data/base/16384/18140 deleted file mode 100644 index e69de29bb..000000000 diff --git a/zbx_env/var/lib/postgresql/data/base/16384/18147 b/zbx_env/var/lib/postgresql/data/base/16384/18147 deleted file mode 100644 index e69de29bb..000000000 diff --git a/zbx_env/var/lib/postgresql/data/base/16384/18149 b/zbx_env/var/lib/postgresql/data/base/16384/18149 deleted file mode 100644 index 2b2af072f..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/18149 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/18150 b/zbx_env/var/lib/postgresql/data/base/16384/18150 deleted file mode 100644 index 6a2d33ae2..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/18150 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/18152 b/zbx_env/var/lib/postgresql/data/base/16384/18152 deleted file mode 100644 index 93959e0eb..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/18152 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/18153 b/zbx_env/var/lib/postgresql/data/base/16384/18153 deleted file mode 100644 index 9a38f1878..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/18153 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/18154 b/zbx_env/var/lib/postgresql/data/base/16384/18154 deleted file mode 100644 index 193014ab5..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/18154 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/18155 b/zbx_env/var/lib/postgresql/data/base/16384/18155 deleted file mode 100644 index 3466439a0..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/18155 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/18156 b/zbx_env/var/lib/postgresql/data/base/16384/18156 deleted file mode 100644 index 4023ff139..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/18156 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/18157 b/zbx_env/var/lib/postgresql/data/base/16384/18157 deleted file mode 100644 index 2a263b395..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/18157 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/18158 b/zbx_env/var/lib/postgresql/data/base/16384/18158 deleted file mode 100644 index 6d17cf9d1..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/18158 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/2187 b/zbx_env/var/lib/postgresql/data/base/16384/2187 deleted file mode 100644 index d39a0b782..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/2187 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/2224 b/zbx_env/var/lib/postgresql/data/base/16384/2224 deleted file mode 100644 index 6d17cf9d1..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/2224 and /dev/null 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 deleted file mode 100644 index e69de29bb..000000000 diff --git a/zbx_env/var/lib/postgresql/data/base/16384/2328 b/zbx_env/var/lib/postgresql/data/base/16384/2328 deleted file mode 100644 index e69de29bb..000000000 diff --git a/zbx_env/var/lib/postgresql/data/base/16384/2328_vm b/zbx_env/var/lib/postgresql/data/base/16384/2328_vm deleted file mode 100644 index e69de29bb..000000000 diff --git a/zbx_env/var/lib/postgresql/data/base/16384/2336 b/zbx_env/var/lib/postgresql/data/base/16384/2336 deleted file mode 100644 index e69de29bb..000000000 diff --git a/zbx_env/var/lib/postgresql/data/base/16384/2336_vm b/zbx_env/var/lib/postgresql/data/base/16384/2336_vm deleted file mode 100644 index e69de29bb..000000000 diff --git a/zbx_env/var/lib/postgresql/data/base/16384/2337 b/zbx_env/var/lib/postgresql/data/base/16384/2337 deleted file mode 100644 index c16658041..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/2337 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/2600 b/zbx_env/var/lib/postgresql/data/base/16384/2600 deleted file mode 100644 index 980d98e71..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/2600 and /dev/null 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 deleted file mode 100644 index e63ffab3e..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/2600_fsm and /dev/null 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 deleted file mode 100644 index be059bc07..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/2600_vm and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/2601 b/zbx_env/var/lib/postgresql/data/base/16384/2601 deleted file mode 100644 index 1d44fa56b..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/2601 and /dev/null 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 deleted file mode 100644 index 0908076c0..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/2601_fsm and /dev/null 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 deleted file mode 100644 index 2aa5dcdb5..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/2601_vm and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/2602 b/zbx_env/var/lib/postgresql/data/base/16384/2602 deleted file mode 100644 index 66f5754af..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/2602 and /dev/null 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 deleted file mode 100644 index 5ed43b88a..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/2602_fsm and /dev/null 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 deleted file mode 100644 index d1b65bdb8..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/2602_vm and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/2603 b/zbx_env/var/lib/postgresql/data/base/16384/2603 deleted file mode 100644 index a51df6676..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/2603 and /dev/null 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 deleted file mode 100644 index f507d0e9f..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/2603_fsm and /dev/null 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 deleted file mode 100644 index 95728db4a..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/2603_vm and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/2604 b/zbx_env/var/lib/postgresql/data/base/16384/2604 deleted file mode 100644 index d561582c9..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/2604 and /dev/null 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 deleted file mode 100644 index 6b4fbb37b..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/2604_fsm and /dev/null 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 deleted file mode 100644 index e69de29bb..000000000 diff --git a/zbx_env/var/lib/postgresql/data/base/16384/2605 b/zbx_env/var/lib/postgresql/data/base/16384/2605 deleted file mode 100644 index 45f16c079..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/2605 and /dev/null 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 deleted file mode 100644 index c1b0e039f..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/2605_fsm and /dev/null 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 deleted file mode 100644 index bd231050a..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/2605_vm and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/2606 b/zbx_env/var/lib/postgresql/data/base/16384/2606 deleted file mode 100644 index bd6e8ae33..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/2606 and /dev/null 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 deleted file mode 100644 index d37e4dd05..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/2606_fsm and /dev/null 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 deleted file mode 100644 index 4301f6b95..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/2606_vm and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/2607 b/zbx_env/var/lib/postgresql/data/base/16384/2607 deleted file mode 100644 index 1ecadcbc8..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/2607 and /dev/null 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 deleted file mode 100644 index 5b066f1a3..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/2607_fsm and /dev/null 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 deleted file mode 100644 index 913a86769..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/2607_vm and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/2608 b/zbx_env/var/lib/postgresql/data/base/16384/2608 deleted file mode 100644 index 779d36c76..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/2608 and /dev/null 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 deleted file mode 100644 index 106a100e5..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/2608_fsm and /dev/null 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 deleted file mode 100644 index b4ec88c13..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/2608_vm and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/2609 b/zbx_env/var/lib/postgresql/data/base/16384/2609 deleted file mode 100644 index 55d48b226..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/2609 and /dev/null 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 deleted file mode 100644 index 8fa6e5fa6..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/2609_fsm and /dev/null 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 deleted file mode 100644 index a459f2c88..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/2609_vm and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/2610 b/zbx_env/var/lib/postgresql/data/base/16384/2610 deleted file mode 100644 index 694000b01..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/2610 and /dev/null 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 deleted file mode 100644 index 6a556770a..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/2610_fsm and /dev/null 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 deleted file mode 100644 index a2cb5435a..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/2610_vm and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/2611 b/zbx_env/var/lib/postgresql/data/base/16384/2611 deleted file mode 100644 index e69de29bb..000000000 diff --git a/zbx_env/var/lib/postgresql/data/base/16384/2611_vm b/zbx_env/var/lib/postgresql/data/base/16384/2611_vm deleted file mode 100644 index e69de29bb..000000000 diff --git a/zbx_env/var/lib/postgresql/data/base/16384/2612 b/zbx_env/var/lib/postgresql/data/base/16384/2612 deleted file mode 100644 index 92362df9a..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/2612 and /dev/null 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 deleted file mode 100644 index 877976acf..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/2612_fsm and /dev/null 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 deleted file mode 100644 index 27aad7785..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/2612_vm and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/2613 b/zbx_env/var/lib/postgresql/data/base/16384/2613 deleted file mode 100644 index e69de29bb..000000000 diff --git a/zbx_env/var/lib/postgresql/data/base/16384/2613_vm b/zbx_env/var/lib/postgresql/data/base/16384/2613_vm deleted file mode 100644 index e69de29bb..000000000 diff --git a/zbx_env/var/lib/postgresql/data/base/16384/2615 b/zbx_env/var/lib/postgresql/data/base/16384/2615 deleted file mode 100644 index f81cca3d5..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/2615 and /dev/null 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 deleted file mode 100644 index 948882ce6..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/2615_fsm and /dev/null 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 deleted file mode 100644 index 0ceaa2a80..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/2615_vm and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/2616 b/zbx_env/var/lib/postgresql/data/base/16384/2616 deleted file mode 100644 index 19f42857d..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/2616 and /dev/null 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 deleted file mode 100644 index 995a05b3c..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/2616_fsm and /dev/null 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 deleted file mode 100644 index dfb995f88..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/2616_vm and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/2617 b/zbx_env/var/lib/postgresql/data/base/16384/2617 deleted file mode 100644 index d989d35e2..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/2617 and /dev/null 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 deleted file mode 100644 index cb2a806b3..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/2617_fsm and /dev/null 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 deleted file mode 100644 index 678b7f7f3..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/2617_vm and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/2618 b/zbx_env/var/lib/postgresql/data/base/16384/2618 deleted file mode 100644 index 8a17c1706..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/2618 and /dev/null 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 deleted file mode 100644 index 2379916aa..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/2618_fsm and /dev/null 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 deleted file mode 100644 index 4b06dd76e..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/2618_vm and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/2619 b/zbx_env/var/lib/postgresql/data/base/16384/2619 deleted file mode 100644 index c14ecd8fa..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/2619 and /dev/null 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 deleted file mode 100644 index 81f80a5b6..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/2619_fsm and /dev/null 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 deleted file mode 100644 index 554e94eb4..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/2619_vm and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/2620 b/zbx_env/var/lib/postgresql/data/base/16384/2620 deleted file mode 100644 index e2c8fe92d..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/2620 and /dev/null 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 deleted file mode 100644 index 6b4fbb37b..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/2620_fsm and /dev/null 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 deleted file mode 100644 index e69de29bb..000000000 diff --git a/zbx_env/var/lib/postgresql/data/base/16384/2650 b/zbx_env/var/lib/postgresql/data/base/16384/2650 deleted file mode 100644 index 8a0d71d50..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/2650 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/2651 b/zbx_env/var/lib/postgresql/data/base/16384/2651 deleted file mode 100644 index 29e245e35..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/2651 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/2652 b/zbx_env/var/lib/postgresql/data/base/16384/2652 deleted file mode 100644 index 9e26143e4..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/2652 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/2653 b/zbx_env/var/lib/postgresql/data/base/16384/2653 deleted file mode 100644 index e02db67df..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/2653 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/2654 b/zbx_env/var/lib/postgresql/data/base/16384/2654 deleted file mode 100644 index 95363af10..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/2654 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/2655 b/zbx_env/var/lib/postgresql/data/base/16384/2655 deleted file mode 100644 index a9a12adf9..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/2655 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/2656 b/zbx_env/var/lib/postgresql/data/base/16384/2656 deleted file mode 100644 index 3f24964ff..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/2656 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/2657 b/zbx_env/var/lib/postgresql/data/base/16384/2657 deleted file mode 100644 index 12d3ab069..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/2657 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/2658 b/zbx_env/var/lib/postgresql/data/base/16384/2658 deleted file mode 100644 index 77a8284dd..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/2658 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/2659 b/zbx_env/var/lib/postgresql/data/base/16384/2659 deleted file mode 100644 index 671c271cd..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/2659 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/2660 b/zbx_env/var/lib/postgresql/data/base/16384/2660 deleted file mode 100644 index d16f41a42..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/2660 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/2661 b/zbx_env/var/lib/postgresql/data/base/16384/2661 deleted file mode 100644 index 59ade838f..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/2661 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/2662 b/zbx_env/var/lib/postgresql/data/base/16384/2662 deleted file mode 100644 index e645ffea3..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/2662 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/2663 b/zbx_env/var/lib/postgresql/data/base/16384/2663 deleted file mode 100644 index fcada35b5..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/2663 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/2664 b/zbx_env/var/lib/postgresql/data/base/16384/2664 deleted file mode 100644 index 8c5f1989e..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/2664 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/2665 b/zbx_env/var/lib/postgresql/data/base/16384/2665 deleted file mode 100644 index 63ca88a3e..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/2665 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/2666 b/zbx_env/var/lib/postgresql/data/base/16384/2666 deleted file mode 100644 index e7c92d1f5..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/2666 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/2667 b/zbx_env/var/lib/postgresql/data/base/16384/2667 deleted file mode 100644 index 5755a624a..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/2667 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/2668 b/zbx_env/var/lib/postgresql/data/base/16384/2668 deleted file mode 100644 index 11a6b5270..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/2668 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/2669 b/zbx_env/var/lib/postgresql/data/base/16384/2669 deleted file mode 100644 index 79d31ebcc..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/2669 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/2670 b/zbx_env/var/lib/postgresql/data/base/16384/2670 deleted file mode 100644 index 6184b908d..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/2670 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/2673 b/zbx_env/var/lib/postgresql/data/base/16384/2673 deleted file mode 100644 index c90a21c3d..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/2673 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/2674 b/zbx_env/var/lib/postgresql/data/base/16384/2674 deleted file mode 100644 index 4c9c767f4..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/2674 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/2675 b/zbx_env/var/lib/postgresql/data/base/16384/2675 deleted file mode 100644 index c88a53bd5..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/2675 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/2678 b/zbx_env/var/lib/postgresql/data/base/16384/2678 deleted file mode 100644 index aa38595d1..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/2678 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/2679 b/zbx_env/var/lib/postgresql/data/base/16384/2679 deleted file mode 100644 index ee7f8c45b..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/2679 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/2680 b/zbx_env/var/lib/postgresql/data/base/16384/2680 deleted file mode 100644 index 876da95b2..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/2680 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/2681 b/zbx_env/var/lib/postgresql/data/base/16384/2681 deleted file mode 100644 index 4987623fd..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/2681 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/2682 b/zbx_env/var/lib/postgresql/data/base/16384/2682 deleted file mode 100644 index 7943e766e..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/2682 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/2683 b/zbx_env/var/lib/postgresql/data/base/16384/2683 deleted file mode 100644 index 636f10144..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/2683 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/2684 b/zbx_env/var/lib/postgresql/data/base/16384/2684 deleted file mode 100644 index f54f9598d..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/2684 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/2685 b/zbx_env/var/lib/postgresql/data/base/16384/2685 deleted file mode 100644 index 95d7fde28..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/2685 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/2686 b/zbx_env/var/lib/postgresql/data/base/16384/2686 deleted file mode 100644 index bc86cec09..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/2686 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/2687 b/zbx_env/var/lib/postgresql/data/base/16384/2687 deleted file mode 100644 index f080504d5..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/2687 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/2688 b/zbx_env/var/lib/postgresql/data/base/16384/2688 deleted file mode 100644 index 47572a662..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/2688 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/2689 b/zbx_env/var/lib/postgresql/data/base/16384/2689 deleted file mode 100644 index 4333d769f..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/2689 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/2690 b/zbx_env/var/lib/postgresql/data/base/16384/2690 deleted file mode 100644 index 89fab01a4..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/2690 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/2691 b/zbx_env/var/lib/postgresql/data/base/16384/2691 deleted file mode 100644 index 08dade0dd..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/2691 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/2692 b/zbx_env/var/lib/postgresql/data/base/16384/2692 deleted file mode 100644 index 150467201..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/2692 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/2693 b/zbx_env/var/lib/postgresql/data/base/16384/2693 deleted file mode 100644 index ef76c5b32..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/2693 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/2696 b/zbx_env/var/lib/postgresql/data/base/16384/2696 deleted file mode 100644 index 69014bb1f..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/2696 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/2699 b/zbx_env/var/lib/postgresql/data/base/16384/2699 deleted file mode 100644 index 0c587e2b3..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/2699 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/2701 b/zbx_env/var/lib/postgresql/data/base/16384/2701 deleted file mode 100644 index b4dd16482..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/2701 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/2702 b/zbx_env/var/lib/postgresql/data/base/16384/2702 deleted file mode 100644 index ff7cb22e7..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/2702 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/2703 b/zbx_env/var/lib/postgresql/data/base/16384/2703 deleted file mode 100644 index acff6ee2a..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/2703 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/2704 b/zbx_env/var/lib/postgresql/data/base/16384/2704 deleted file mode 100644 index ff285084f..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/2704 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/2753 b/zbx_env/var/lib/postgresql/data/base/16384/2753 deleted file mode 100644 index 73f903165..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/2753 and /dev/null 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 deleted file mode 100644 index 0787df53d..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/2753_fsm and /dev/null 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 deleted file mode 100644 index 6c8ced900..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/2753_vm and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/2754 b/zbx_env/var/lib/postgresql/data/base/16384/2754 deleted file mode 100644 index 5a44a7962..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/2754 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/2755 b/zbx_env/var/lib/postgresql/data/base/16384/2755 deleted file mode 100644 index fac11c420..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/2755 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/2756 b/zbx_env/var/lib/postgresql/data/base/16384/2756 deleted file mode 100644 index 5b9bc166b..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/2756 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/2757 b/zbx_env/var/lib/postgresql/data/base/16384/2757 deleted file mode 100644 index 1bade66ff..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/2757 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/2830 b/zbx_env/var/lib/postgresql/data/base/16384/2830 deleted file mode 100644 index e69de29bb..000000000 diff --git a/zbx_env/var/lib/postgresql/data/base/16384/2830_vm b/zbx_env/var/lib/postgresql/data/base/16384/2830_vm deleted file mode 100644 index e69de29bb..000000000 diff --git a/zbx_env/var/lib/postgresql/data/base/16384/2831 b/zbx_env/var/lib/postgresql/data/base/16384/2831 deleted file mode 100644 index b0c0ed88c..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/2831 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/2832 b/zbx_env/var/lib/postgresql/data/base/16384/2832 deleted file mode 100644 index e69de29bb..000000000 diff --git a/zbx_env/var/lib/postgresql/data/base/16384/2832_vm b/zbx_env/var/lib/postgresql/data/base/16384/2832_vm deleted file mode 100644 index e69de29bb..000000000 diff --git a/zbx_env/var/lib/postgresql/data/base/16384/2833 b/zbx_env/var/lib/postgresql/data/base/16384/2833 deleted file mode 100644 index e70ee62b0..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/2833 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/2834 b/zbx_env/var/lib/postgresql/data/base/16384/2834 deleted file mode 100644 index e69de29bb..000000000 diff --git a/zbx_env/var/lib/postgresql/data/base/16384/2834_vm b/zbx_env/var/lib/postgresql/data/base/16384/2834_vm deleted file mode 100644 index e69de29bb..000000000 diff --git a/zbx_env/var/lib/postgresql/data/base/16384/2835 b/zbx_env/var/lib/postgresql/data/base/16384/2835 deleted file mode 100644 index c65e18b5e..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/2835 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/2836 b/zbx_env/var/lib/postgresql/data/base/16384/2836 deleted file mode 100644 index e69de29bb..000000000 diff --git a/zbx_env/var/lib/postgresql/data/base/16384/2836_vm b/zbx_env/var/lib/postgresql/data/base/16384/2836_vm deleted file mode 100644 index e69de29bb..000000000 diff --git a/zbx_env/var/lib/postgresql/data/base/16384/2837 b/zbx_env/var/lib/postgresql/data/base/16384/2837 deleted file mode 100644 index 4ef00f573..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/2837 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/2838 b/zbx_env/var/lib/postgresql/data/base/16384/2838 deleted file mode 100644 index 5efb4501d..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/2838 and /dev/null 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 deleted file mode 100644 index 72ba496ec..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/2838_fsm and /dev/null 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 deleted file mode 100644 index 962055edb..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/2838_vm and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/2839 b/zbx_env/var/lib/postgresql/data/base/16384/2839 deleted file mode 100644 index 9b1c1e571..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/2839 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/2840 b/zbx_env/var/lib/postgresql/data/base/16384/2840 deleted file mode 100644 index 840ad144c..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/2840 and /dev/null 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 deleted file mode 100644 index 7d14d0cfe..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/2840_fsm and /dev/null 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 deleted file mode 100644 index fee0e0473..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/2840_vm and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/2841 b/zbx_env/var/lib/postgresql/data/base/16384/2841 deleted file mode 100644 index 44212c4cd..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/2841 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/2995 b/zbx_env/var/lib/postgresql/data/base/16384/2995 deleted file mode 100644 index e69de29bb..000000000 diff --git a/zbx_env/var/lib/postgresql/data/base/16384/2995_vm b/zbx_env/var/lib/postgresql/data/base/16384/2995_vm deleted file mode 100644 index e69de29bb..000000000 diff --git a/zbx_env/var/lib/postgresql/data/base/16384/2996 b/zbx_env/var/lib/postgresql/data/base/16384/2996 deleted file mode 100644 index a1e392a5f..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/2996 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/3079 b/zbx_env/var/lib/postgresql/data/base/16384/3079 deleted file mode 100644 index 2ac5237cb..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/3079 and /dev/null 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 deleted file mode 100644 index 7732d22b7..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/3079_fsm and /dev/null 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 deleted file mode 100644 index 44a2ff91e..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/3079_vm and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/3080 b/zbx_env/var/lib/postgresql/data/base/16384/3080 deleted file mode 100644 index 91f8d4902..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/3080 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/3081 b/zbx_env/var/lib/postgresql/data/base/16384/3081 deleted file mode 100644 index 8bc74ec63..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/3081 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/3085 b/zbx_env/var/lib/postgresql/data/base/16384/3085 deleted file mode 100644 index 05c256fa5..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/3085 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/3118 b/zbx_env/var/lib/postgresql/data/base/16384/3118 deleted file mode 100644 index e69de29bb..000000000 diff --git a/zbx_env/var/lib/postgresql/data/base/16384/3118_vm b/zbx_env/var/lib/postgresql/data/base/16384/3118_vm deleted file mode 100644 index e69de29bb..000000000 diff --git a/zbx_env/var/lib/postgresql/data/base/16384/3119 b/zbx_env/var/lib/postgresql/data/base/16384/3119 deleted file mode 100644 index cdf9c180f..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/3119 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/3164 b/zbx_env/var/lib/postgresql/data/base/16384/3164 deleted file mode 100644 index a58c39469..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/3164 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/3256 b/zbx_env/var/lib/postgresql/data/base/16384/3256 deleted file mode 100644 index e69de29bb..000000000 diff --git a/zbx_env/var/lib/postgresql/data/base/16384/3256_vm b/zbx_env/var/lib/postgresql/data/base/16384/3256_vm deleted file mode 100644 index e69de29bb..000000000 diff --git a/zbx_env/var/lib/postgresql/data/base/16384/3257 b/zbx_env/var/lib/postgresql/data/base/16384/3257 deleted file mode 100644 index fb1ff935a..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/3257 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/3258 b/zbx_env/var/lib/postgresql/data/base/16384/3258 deleted file mode 100644 index 0b6aca02a..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/3258 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/3350 b/zbx_env/var/lib/postgresql/data/base/16384/3350 deleted file mode 100644 index e69de29bb..000000000 diff --git a/zbx_env/var/lib/postgresql/data/base/16384/3350_vm b/zbx_env/var/lib/postgresql/data/base/16384/3350_vm deleted file mode 100644 index e69de29bb..000000000 diff --git a/zbx_env/var/lib/postgresql/data/base/16384/3351 b/zbx_env/var/lib/postgresql/data/base/16384/3351 deleted file mode 100644 index 485a7f339..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/3351 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/3379 b/zbx_env/var/lib/postgresql/data/base/16384/3379 deleted file mode 100644 index 2b3165f78..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/3379 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/3380 b/zbx_env/var/lib/postgresql/data/base/16384/3380 deleted file mode 100644 index 262c95057..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/3380 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/3381 b/zbx_env/var/lib/postgresql/data/base/16384/3381 deleted file mode 100644 index e69de29bb..000000000 diff --git a/zbx_env/var/lib/postgresql/data/base/16384/3381_vm b/zbx_env/var/lib/postgresql/data/base/16384/3381_vm deleted file mode 100644 index e69de29bb..000000000 diff --git a/zbx_env/var/lib/postgresql/data/base/16384/3394 b/zbx_env/var/lib/postgresql/data/base/16384/3394 deleted file mode 100644 index b6a9edeae..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/3394 and /dev/null 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 deleted file mode 100644 index 9bf23e33a..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/3394_fsm and /dev/null 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 deleted file mode 100644 index 450f3d7c2..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/3394_vm and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/3395 b/zbx_env/var/lib/postgresql/data/base/16384/3395 deleted file mode 100644 index 5bd6238c1..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/3395 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/3439 b/zbx_env/var/lib/postgresql/data/base/16384/3439 deleted file mode 100644 index e69de29bb..000000000 diff --git a/zbx_env/var/lib/postgresql/data/base/16384/3439_vm b/zbx_env/var/lib/postgresql/data/base/16384/3439_vm deleted file mode 100644 index e69de29bb..000000000 diff --git a/zbx_env/var/lib/postgresql/data/base/16384/3440 b/zbx_env/var/lib/postgresql/data/base/16384/3440 deleted file mode 100644 index bae4de162..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/3440 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/3455 b/zbx_env/var/lib/postgresql/data/base/16384/3455 deleted file mode 100644 index aee263080..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/3455 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/3456 b/zbx_env/var/lib/postgresql/data/base/16384/3456 deleted file mode 100644 index 2bc0341f9..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/3456 and /dev/null 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 deleted file mode 100644 index ea43ee9d4..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/3456_fsm and /dev/null 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 deleted file mode 100644 index 7ac9233fc..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/3456_vm and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/3466 b/zbx_env/var/lib/postgresql/data/base/16384/3466 deleted file mode 100644 index e69de29bb..000000000 diff --git a/zbx_env/var/lib/postgresql/data/base/16384/3466_vm b/zbx_env/var/lib/postgresql/data/base/16384/3466_vm deleted file mode 100644 index e69de29bb..000000000 diff --git a/zbx_env/var/lib/postgresql/data/base/16384/3467 b/zbx_env/var/lib/postgresql/data/base/16384/3467 deleted file mode 100644 index d28a66e55..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/3467 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/3468 b/zbx_env/var/lib/postgresql/data/base/16384/3468 deleted file mode 100644 index 79b6e9472..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/3468 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/3501 b/zbx_env/var/lib/postgresql/data/base/16384/3501 deleted file mode 100644 index e69de29bb..000000000 diff --git a/zbx_env/var/lib/postgresql/data/base/16384/3501_vm b/zbx_env/var/lib/postgresql/data/base/16384/3501_vm deleted file mode 100644 index e69de29bb..000000000 diff --git a/zbx_env/var/lib/postgresql/data/base/16384/3502 b/zbx_env/var/lib/postgresql/data/base/16384/3502 deleted file mode 100644 index 061a18dc6..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/3502 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/3503 b/zbx_env/var/lib/postgresql/data/base/16384/3503 deleted file mode 100644 index ebd24c5cb..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/3503 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/3534 b/zbx_env/var/lib/postgresql/data/base/16384/3534 deleted file mode 100644 index 4fdd31ed7..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/3534 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/3541 b/zbx_env/var/lib/postgresql/data/base/16384/3541 deleted file mode 100644 index ad69913a9..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/3541 and /dev/null 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 deleted file mode 100644 index 62f015667..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/3541_fsm and /dev/null 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 deleted file mode 100644 index 338f46301..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/3541_vm and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/3542 b/zbx_env/var/lib/postgresql/data/base/16384/3542 deleted file mode 100644 index bf7c3330f..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/3542 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/3574 b/zbx_env/var/lib/postgresql/data/base/16384/3574 deleted file mode 100644 index 0861ca0e2..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/3574 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/3575 b/zbx_env/var/lib/postgresql/data/base/16384/3575 deleted file mode 100644 index 2b57a8ed5..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/3575 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/3576 b/zbx_env/var/lib/postgresql/data/base/16384/3576 deleted file mode 100644 index e69de29bb..000000000 diff --git a/zbx_env/var/lib/postgresql/data/base/16384/3576_vm b/zbx_env/var/lib/postgresql/data/base/16384/3576_vm deleted file mode 100644 index e69de29bb..000000000 diff --git a/zbx_env/var/lib/postgresql/data/base/16384/3596 b/zbx_env/var/lib/postgresql/data/base/16384/3596 deleted file mode 100644 index e69de29bb..000000000 diff --git a/zbx_env/var/lib/postgresql/data/base/16384/3596_vm b/zbx_env/var/lib/postgresql/data/base/16384/3596_vm deleted file mode 100644 index e69de29bb..000000000 diff --git a/zbx_env/var/lib/postgresql/data/base/16384/3597 b/zbx_env/var/lib/postgresql/data/base/16384/3597 deleted file mode 100644 index 8684c812e..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/3597 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/3598 b/zbx_env/var/lib/postgresql/data/base/16384/3598 deleted file mode 100644 index e69de29bb..000000000 diff --git a/zbx_env/var/lib/postgresql/data/base/16384/3598_vm b/zbx_env/var/lib/postgresql/data/base/16384/3598_vm deleted file mode 100644 index e69de29bb..000000000 diff --git a/zbx_env/var/lib/postgresql/data/base/16384/3599 b/zbx_env/var/lib/postgresql/data/base/16384/3599 deleted file mode 100644 index d48e4a663..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/3599 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/3600 b/zbx_env/var/lib/postgresql/data/base/16384/3600 deleted file mode 100644 index 6f5b9c650..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/3600 and /dev/null 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 deleted file mode 100644 index ffd4b1594..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/3600_fsm and /dev/null 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 deleted file mode 100644 index eda7dfa8b..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/3600_vm and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/3601 b/zbx_env/var/lib/postgresql/data/base/16384/3601 deleted file mode 100644 index 065e4e19a..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/3601 and /dev/null 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 deleted file mode 100644 index 7732d22b7..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/3601_fsm and /dev/null 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 deleted file mode 100644 index ccebc9717..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/3601_vm and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/3602 b/zbx_env/var/lib/postgresql/data/base/16384/3602 deleted file mode 100644 index a4991530e..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/3602 and /dev/null 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 deleted file mode 100644 index 7cbf83404..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/3602_fsm and /dev/null 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 deleted file mode 100644 index 51db8d829..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/3602_vm and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/3603 b/zbx_env/var/lib/postgresql/data/base/16384/3603 deleted file mode 100644 index 7ec261796..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/3603 and /dev/null 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 deleted file mode 100644 index 6d00d6859..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/3603_fsm and /dev/null 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 deleted file mode 100644 index d7c5456fe..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/3603_vm and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/3604 b/zbx_env/var/lib/postgresql/data/base/16384/3604 deleted file mode 100644 index 8c2e843bd..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/3604 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/3605 b/zbx_env/var/lib/postgresql/data/base/16384/3605 deleted file mode 100644 index 4c51aeb50..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/3605 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/3606 b/zbx_env/var/lib/postgresql/data/base/16384/3606 deleted file mode 100644 index 973f81de1..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/3606 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/3607 b/zbx_env/var/lib/postgresql/data/base/16384/3607 deleted file mode 100644 index bb91efdd3..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/3607 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/3608 b/zbx_env/var/lib/postgresql/data/base/16384/3608 deleted file mode 100644 index edd6032b2..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/3608 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/3609 b/zbx_env/var/lib/postgresql/data/base/16384/3609 deleted file mode 100644 index d723790f6..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/3609 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/3712 b/zbx_env/var/lib/postgresql/data/base/16384/3712 deleted file mode 100644 index 972327c1f..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/3712 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/3764 b/zbx_env/var/lib/postgresql/data/base/16384/3764 deleted file mode 100644 index 8b7953258..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/3764 and /dev/null 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 deleted file mode 100644 index d041693e8..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/3764_fsm and /dev/null 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 deleted file mode 100644 index 81e9a8d75..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/3764_vm and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/3766 b/zbx_env/var/lib/postgresql/data/base/16384/3766 deleted file mode 100644 index adc6bd05b..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/3766 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/3767 b/zbx_env/var/lib/postgresql/data/base/16384/3767 deleted file mode 100644 index 8a13ca18a..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/3767 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/3997 b/zbx_env/var/lib/postgresql/data/base/16384/3997 deleted file mode 100644 index 8bef1d51c..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/3997 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/5002 b/zbx_env/var/lib/postgresql/data/base/16384/5002 deleted file mode 100644 index 0f41bca5f..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/5002 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/548 b/zbx_env/var/lib/postgresql/data/base/16384/548 deleted file mode 100644 index 95a149a1b..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/548 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/549 b/zbx_env/var/lib/postgresql/data/base/16384/549 deleted file mode 100644 index b8d72f418..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/549 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/6102 b/zbx_env/var/lib/postgresql/data/base/16384/6102 deleted file mode 100644 index e69de29bb..000000000 diff --git a/zbx_env/var/lib/postgresql/data/base/16384/6102_vm b/zbx_env/var/lib/postgresql/data/base/16384/6102_vm deleted file mode 100644 index e69de29bb..000000000 diff --git a/zbx_env/var/lib/postgresql/data/base/16384/6104 b/zbx_env/var/lib/postgresql/data/base/16384/6104 deleted file mode 100644 index e69de29bb..000000000 diff --git a/zbx_env/var/lib/postgresql/data/base/16384/6104_vm b/zbx_env/var/lib/postgresql/data/base/16384/6104_vm deleted file mode 100644 index e69de29bb..000000000 diff --git a/zbx_env/var/lib/postgresql/data/base/16384/6106 b/zbx_env/var/lib/postgresql/data/base/16384/6106 deleted file mode 100644 index e69de29bb..000000000 diff --git a/zbx_env/var/lib/postgresql/data/base/16384/6106_vm b/zbx_env/var/lib/postgresql/data/base/16384/6106_vm deleted file mode 100644 index e69de29bb..000000000 diff --git a/zbx_env/var/lib/postgresql/data/base/16384/6110 b/zbx_env/var/lib/postgresql/data/base/16384/6110 deleted file mode 100644 index 88905e93c..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/6110 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/6111 b/zbx_env/var/lib/postgresql/data/base/16384/6111 deleted file mode 100644 index fc5fe1e60..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/6111 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/6112 b/zbx_env/var/lib/postgresql/data/base/16384/6112 deleted file mode 100644 index 2c009e3c0..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/6112 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/6113 b/zbx_env/var/lib/postgresql/data/base/16384/6113 deleted file mode 100644 index 09ca7f38a..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/6113 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/6117 b/zbx_env/var/lib/postgresql/data/base/16384/6117 deleted file mode 100644 index b2a8f2639..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/6117 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/826 b/zbx_env/var/lib/postgresql/data/base/16384/826 deleted file mode 100644 index e69de29bb..000000000 diff --git a/zbx_env/var/lib/postgresql/data/base/16384/826_vm b/zbx_env/var/lib/postgresql/data/base/16384/826_vm deleted file mode 100644 index e69de29bb..000000000 diff --git a/zbx_env/var/lib/postgresql/data/base/16384/827 b/zbx_env/var/lib/postgresql/data/base/16384/827 deleted file mode 100644 index 45ca171f5..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/827 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/base/16384/828 b/zbx_env/var/lib/postgresql/data/base/16384/828 deleted file mode 100644 index 9543d4d5d..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/828 and /dev/null 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 deleted file mode 100644 index f599e28b8..000000000 --- a/zbx_env/var/lib/postgresql/data/base/16384/PG_VERSION +++ /dev/null @@ -1 +0,0 @@ -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 deleted file mode 100644 index 428c97e9a..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/pg_filenode.map and /dev/null 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 deleted file mode 100644 index e41c55633..000000000 Binary files a/zbx_env/var/lib/postgresql/data/base/16384/pg_internal.init and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/global/1136 b/zbx_env/var/lib/postgresql/data/global/1136 deleted file mode 100644 index 3d03f0bde..000000000 Binary files a/zbx_env/var/lib/postgresql/data/global/1136 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/global/1136_fsm b/zbx_env/var/lib/postgresql/data/global/1136_fsm deleted file mode 100644 index 929c96e71..000000000 Binary files a/zbx_env/var/lib/postgresql/data/global/1136_fsm and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/global/1136_vm b/zbx_env/var/lib/postgresql/data/global/1136_vm deleted file mode 100644 index 99e2a263f..000000000 Binary files a/zbx_env/var/lib/postgresql/data/global/1136_vm and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/global/1137 b/zbx_env/var/lib/postgresql/data/global/1137 deleted file mode 100644 index c36f17ee1..000000000 Binary files a/zbx_env/var/lib/postgresql/data/global/1137 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/global/1213 b/zbx_env/var/lib/postgresql/data/global/1213 deleted file mode 100644 index bf1087ec0..000000000 Binary files a/zbx_env/var/lib/postgresql/data/global/1213 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/global/1213_fsm b/zbx_env/var/lib/postgresql/data/global/1213_fsm deleted file mode 100644 index 86074bee2..000000000 Binary files a/zbx_env/var/lib/postgresql/data/global/1213_fsm and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/global/1213_vm b/zbx_env/var/lib/postgresql/data/global/1213_vm deleted file mode 100644 index 7566dbed3..000000000 Binary files a/zbx_env/var/lib/postgresql/data/global/1213_vm and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/global/1214 b/zbx_env/var/lib/postgresql/data/global/1214 deleted file mode 100644 index ef06df2aa..000000000 Binary files a/zbx_env/var/lib/postgresql/data/global/1214 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/global/1214_fsm b/zbx_env/var/lib/postgresql/data/global/1214_fsm deleted file mode 100644 index a3a2de4dd..000000000 Binary files a/zbx_env/var/lib/postgresql/data/global/1214_fsm and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/global/1214_vm b/zbx_env/var/lib/postgresql/data/global/1214_vm deleted file mode 100644 index 22bfe7728..000000000 Binary files a/zbx_env/var/lib/postgresql/data/global/1214_vm and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/global/1232 b/zbx_env/var/lib/postgresql/data/global/1232 deleted file mode 100644 index 22f4c5898..000000000 Binary files a/zbx_env/var/lib/postgresql/data/global/1232 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/global/1233 b/zbx_env/var/lib/postgresql/data/global/1233 deleted file mode 100644 index 96bee7755..000000000 Binary files a/zbx_env/var/lib/postgresql/data/global/1233 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/global/1260 b/zbx_env/var/lib/postgresql/data/global/1260 deleted file mode 100644 index e6325f9e7..000000000 Binary files a/zbx_env/var/lib/postgresql/data/global/1260 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/global/1260_fsm b/zbx_env/var/lib/postgresql/data/global/1260_fsm deleted file mode 100644 index ecbfaee5e..000000000 Binary files a/zbx_env/var/lib/postgresql/data/global/1260_fsm and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/global/1260_vm b/zbx_env/var/lib/postgresql/data/global/1260_vm deleted file mode 100644 index aecaab830..000000000 Binary files a/zbx_env/var/lib/postgresql/data/global/1260_vm and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/global/1261 b/zbx_env/var/lib/postgresql/data/global/1261 deleted file mode 100644 index 479815f96..000000000 Binary files a/zbx_env/var/lib/postgresql/data/global/1261 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/global/1261_fsm b/zbx_env/var/lib/postgresql/data/global/1261_fsm deleted file mode 100644 index 7732d22b7..000000000 Binary files a/zbx_env/var/lib/postgresql/data/global/1261_fsm and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/global/1261_vm b/zbx_env/var/lib/postgresql/data/global/1261_vm deleted file mode 100644 index 4d1f70cb0..000000000 Binary files a/zbx_env/var/lib/postgresql/data/global/1261_vm and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/global/1262 b/zbx_env/var/lib/postgresql/data/global/1262 deleted file mode 100644 index 23fb762e5..000000000 Binary files a/zbx_env/var/lib/postgresql/data/global/1262 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/global/1262_fsm b/zbx_env/var/lib/postgresql/data/global/1262_fsm deleted file mode 100644 index b49966ffd..000000000 Binary files a/zbx_env/var/lib/postgresql/data/global/1262_fsm and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/global/1262_vm b/zbx_env/var/lib/postgresql/data/global/1262_vm deleted file mode 100644 index 2732d91f2..000000000 Binary files a/zbx_env/var/lib/postgresql/data/global/1262_vm and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/global/2396 b/zbx_env/var/lib/postgresql/data/global/2396 deleted file mode 100644 index 76e331342..000000000 Binary files a/zbx_env/var/lib/postgresql/data/global/2396 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/global/2396_fsm b/zbx_env/var/lib/postgresql/data/global/2396_fsm deleted file mode 100644 index 7a4f24f37..000000000 Binary files a/zbx_env/var/lib/postgresql/data/global/2396_fsm and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/global/2396_vm b/zbx_env/var/lib/postgresql/data/global/2396_vm deleted file mode 100644 index 3ed9e1a9f..000000000 Binary files a/zbx_env/var/lib/postgresql/data/global/2396_vm and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/global/2397 b/zbx_env/var/lib/postgresql/data/global/2397 deleted file mode 100644 index 8610ddf69..000000000 Binary files a/zbx_env/var/lib/postgresql/data/global/2397 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/global/2671 b/zbx_env/var/lib/postgresql/data/global/2671 deleted file mode 100644 index 9e849524f..000000000 Binary files a/zbx_env/var/lib/postgresql/data/global/2671 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/global/2672 b/zbx_env/var/lib/postgresql/data/global/2672 deleted file mode 100644 index 747918194..000000000 Binary files a/zbx_env/var/lib/postgresql/data/global/2672 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/global/2676 b/zbx_env/var/lib/postgresql/data/global/2676 deleted file mode 100644 index 09e7143c0..000000000 Binary files a/zbx_env/var/lib/postgresql/data/global/2676 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/global/2677 b/zbx_env/var/lib/postgresql/data/global/2677 deleted file mode 100644 index 0408d3a6f..000000000 Binary files a/zbx_env/var/lib/postgresql/data/global/2677 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/global/2694 b/zbx_env/var/lib/postgresql/data/global/2694 deleted file mode 100644 index 6b227a6f0..000000000 Binary files a/zbx_env/var/lib/postgresql/data/global/2694 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/global/2695 b/zbx_env/var/lib/postgresql/data/global/2695 deleted file mode 100644 index a258225cc..000000000 Binary files a/zbx_env/var/lib/postgresql/data/global/2695 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/global/2697 b/zbx_env/var/lib/postgresql/data/global/2697 deleted file mode 100644 index 390b1699e..000000000 Binary files a/zbx_env/var/lib/postgresql/data/global/2697 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/global/2698 b/zbx_env/var/lib/postgresql/data/global/2698 deleted file mode 100644 index eee330265..000000000 Binary files a/zbx_env/var/lib/postgresql/data/global/2698 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/global/2846 b/zbx_env/var/lib/postgresql/data/global/2846 deleted file mode 100644 index e69de29bb..000000000 diff --git a/zbx_env/var/lib/postgresql/data/global/2846_vm b/zbx_env/var/lib/postgresql/data/global/2846_vm deleted file mode 100644 index e69de29bb..000000000 diff --git a/zbx_env/var/lib/postgresql/data/global/2847 b/zbx_env/var/lib/postgresql/data/global/2847 deleted file mode 100644 index 218b4b153..000000000 Binary files a/zbx_env/var/lib/postgresql/data/global/2847 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/global/2964 b/zbx_env/var/lib/postgresql/data/global/2964 deleted file mode 100644 index e69de29bb..000000000 diff --git a/zbx_env/var/lib/postgresql/data/global/2964_vm b/zbx_env/var/lib/postgresql/data/global/2964_vm deleted file mode 100644 index e69de29bb..000000000 diff --git a/zbx_env/var/lib/postgresql/data/global/2965 b/zbx_env/var/lib/postgresql/data/global/2965 deleted file mode 100644 index 2938713fe..000000000 Binary files a/zbx_env/var/lib/postgresql/data/global/2965 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/global/2966 b/zbx_env/var/lib/postgresql/data/global/2966 deleted file mode 100644 index e69de29bb..000000000 diff --git a/zbx_env/var/lib/postgresql/data/global/2966_vm b/zbx_env/var/lib/postgresql/data/global/2966_vm deleted file mode 100644 index e69de29bb..000000000 diff --git a/zbx_env/var/lib/postgresql/data/global/2967 b/zbx_env/var/lib/postgresql/data/global/2967 deleted file mode 100644 index 3b693ef65..000000000 Binary files a/zbx_env/var/lib/postgresql/data/global/2967 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/global/3592 b/zbx_env/var/lib/postgresql/data/global/3592 deleted file mode 100644 index e69de29bb..000000000 diff --git a/zbx_env/var/lib/postgresql/data/global/3592_vm b/zbx_env/var/lib/postgresql/data/global/3592_vm deleted file mode 100644 index e69de29bb..000000000 diff --git a/zbx_env/var/lib/postgresql/data/global/3593 b/zbx_env/var/lib/postgresql/data/global/3593 deleted file mode 100644 index 075210a53..000000000 Binary files a/zbx_env/var/lib/postgresql/data/global/3593 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/global/4060 b/zbx_env/var/lib/postgresql/data/global/4060 deleted file mode 100644 index e69de29bb..000000000 diff --git a/zbx_env/var/lib/postgresql/data/global/4060_vm b/zbx_env/var/lib/postgresql/data/global/4060_vm deleted file mode 100644 index e69de29bb..000000000 diff --git a/zbx_env/var/lib/postgresql/data/global/4061 b/zbx_env/var/lib/postgresql/data/global/4061 deleted file mode 100644 index bfc103a3a..000000000 Binary files a/zbx_env/var/lib/postgresql/data/global/4061 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/global/6000 b/zbx_env/var/lib/postgresql/data/global/6000 deleted file mode 100644 index e69de29bb..000000000 diff --git a/zbx_env/var/lib/postgresql/data/global/6000_vm b/zbx_env/var/lib/postgresql/data/global/6000_vm deleted file mode 100644 index e69de29bb..000000000 diff --git a/zbx_env/var/lib/postgresql/data/global/6001 b/zbx_env/var/lib/postgresql/data/global/6001 deleted file mode 100644 index 4b5ca6738..000000000 Binary files a/zbx_env/var/lib/postgresql/data/global/6001 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/global/6002 b/zbx_env/var/lib/postgresql/data/global/6002 deleted file mode 100644 index f77a4bcd1..000000000 Binary files a/zbx_env/var/lib/postgresql/data/global/6002 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/global/6100 b/zbx_env/var/lib/postgresql/data/global/6100 deleted file mode 100644 index e69de29bb..000000000 diff --git a/zbx_env/var/lib/postgresql/data/global/6100_vm b/zbx_env/var/lib/postgresql/data/global/6100_vm deleted file mode 100644 index e69de29bb..000000000 diff --git a/zbx_env/var/lib/postgresql/data/global/6114 b/zbx_env/var/lib/postgresql/data/global/6114 deleted file mode 100644 index d4e882ddc..000000000 Binary files a/zbx_env/var/lib/postgresql/data/global/6114 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/global/6115 b/zbx_env/var/lib/postgresql/data/global/6115 deleted file mode 100644 index c0ad72970..000000000 Binary files a/zbx_env/var/lib/postgresql/data/global/6115 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/global/pg_control b/zbx_env/var/lib/postgresql/data/global/pg_control deleted file mode 100644 index 5e190989a..000000000 Binary files a/zbx_env/var/lib/postgresql/data/global/pg_control and /dev/null 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 deleted file mode 100644 index 8ee3a929c..000000000 Binary files a/zbx_env/var/lib/postgresql/data/global/pg_filenode.map and /dev/null 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 deleted file mode 100644 index c80f5b558..000000000 Binary files a/zbx_env/var/lib/postgresql/data/global/pg_internal.init and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/pg_hba.conf b/zbx_env/var/lib/postgresql/data/pg_hba.conf deleted file mode 100644 index b9a7ac198..000000000 --- a/zbx_env/var/lib/postgresql/data/pg_hba.conf +++ /dev/null @@ -1,95 +0,0 @@ -# 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 deleted file mode 100644 index a5870e644..000000000 --- a/zbx_env/var/lib/postgresql/data/pg_ident.conf +++ /dev/null @@ -1,42 +0,0 @@ -# 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 deleted file mode 100644 index ec451b0fa..000000000 Binary files a/zbx_env/var/lib/postgresql/data/pg_logical/replorigin_checkpoint and /dev/null 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 deleted file mode 100644 index 6d17cf9d1..000000000 Binary files a/zbx_env/var/lib/postgresql/data/pg_multixact/members/0000 and /dev/null 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 deleted file mode 100644 index 6d17cf9d1..000000000 Binary files a/zbx_env/var/lib/postgresql/data/pg_multixact/offsets/0000 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/pg_notify/0000 b/zbx_env/var/lib/postgresql/data/pg_notify/0000 deleted file mode 100644 index 6d17cf9d1..000000000 Binary files a/zbx_env/var/lib/postgresql/data/pg_notify/0000 and /dev/null 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 deleted file mode 100644 index 4e0719672..000000000 Binary files a/zbx_env/var/lib/postgresql/data/pg_stat_tmp/db_0.stat and /dev/null 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 deleted file mode 100644 index d9b7f192e..000000000 Binary files a/zbx_env/var/lib/postgresql/data/pg_stat_tmp/global.stat and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/pg_subtrans/0000 b/zbx_env/var/lib/postgresql/data/pg_subtrans/0000 deleted file mode 100644 index 6d17cf9d1..000000000 Binary files a/zbx_env/var/lib/postgresql/data/pg_subtrans/0000 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/pg_wal/000000010000000000000001 b/zbx_env/var/lib/postgresql/data/pg_wal/000000010000000000000001 deleted file mode 100644 index fc4447cd4..000000000 Binary files a/zbx_env/var/lib/postgresql/data/pg_wal/000000010000000000000001 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/pg_xact/0000 b/zbx_env/var/lib/postgresql/data/pg_xact/0000 deleted file mode 100644 index c8f3ee90f..000000000 Binary files a/zbx_env/var/lib/postgresql/data/pg_xact/0000 and /dev/null differ diff --git a/zbx_env/var/lib/postgresql/data/postgresql.auto.conf b/zbx_env/var/lib/postgresql/data/postgresql.auto.conf deleted file mode 100644 index af7125e18..000000000 --- a/zbx_env/var/lib/postgresql/data/postgresql.auto.conf +++ /dev/null @@ -1,2 +0,0 @@ -# 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 deleted file mode 100644 index 2aa405560..000000000 --- a/zbx_env/var/lib/postgresql/data/postgresql.conf +++ /dev/null @@ -1,658 +0,0 @@ -# ----------------------------- -# 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 deleted file mode 100644 index 15758abad..000000000 --- a/zbx_env/var/lib/postgresql/data/postmaster.opts +++ /dev/null @@ -1 +0,0 @@ -/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 deleted file mode 100644 index 4a6f2082e..000000000 --- a/zbx_env/var/lib/postgresql/data/postmaster.pid +++ /dev/null @@ -1,8 +0,0 @@ -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 deleted file mode 100644 index e69de29bb..000000000