Ad Widget

Collapse

Zabbix Proxy 8.0beta2: missing field "items.query"

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • Toorms
    Junior Member
    • Dec 2022
    • 11

    #1

    Zabbix Proxy 8.0beta2: missing field "items.query"

    Hello Community,

    in the latest image from Zabbix Proxy 8.0beta2

    Code:
    zabbix/zabbix-proxy-sqlite3@sha256:5be6f49243477e2c33d2e532d70a491326e8e6b35079244ec9ee90caf0119b04
    zabbix/zabbix-proxy-sqlite3:alpine-trunk
    I've got the following problem, without any changes in configuration or something else.

    Code:
    foo-srv-zapr01 | 12:20260925:055422.045 [configuration syncer #1] received configuration data from server at "monitor.idacen.de", datalen 498616
    foo-srv-zapr01 | 12:20260925:055422.047 [configuration syncer #1] cannot process received configuration data from server at "monitor.foobar.local": missing field "items.query"
    Did anyone else got these kind of problems after the latest trunk updates?

    For investigations, here are my compose.yml file

    Code:
    services:
    Zabbix-Proxy:
    container_name: mad-srv-zapr01
    restart: always
    image: zabbix/zabbix-proxy-sqlite3:alpine-trunk
    # image: zabbix/zabbix-proxy-sqlite3@sha256:fd9a923846fe632bbb01ac8f5c1ffc8daca af02d6c5ae05062895fbe8644d323
    environment:
    ZBX_TLSCONNECT: psk
    ZBX_TLSACCEPT: psk
    ZBX_TLSPSKIDENTITY: psk-id
    ZBX_HOSTNAME: foo-srv-zapr01
    ZBX_SERVER_HOST: monitor.foobar.local
    ZBX_TLSPSKFILE: /var/lib/zabbix/enc/zabbix_agentd.psk
    ZBX_SERVER_PORT: 10051
    ZBX_PASSIVESERVERS: 192.168.178.0/24,172.24.0.0/24
    ZBX_ACTIVESERVERS: 192.168.178.0/24,172.24.0.0/24
    volumes:
    - ./data/zabbix_agentd.psk:/var/lib/zabbix/enc/zabbix_agentd.psk
    - prxdatabase:/var/lib/zabbix/db_data
    ports:
    - 0.0.0.0:10051:10051
    ulimits:
    nofile:
    soft: 65536
    hard: 65536
    networks:
    static-network:
    ipv4_address: 172.20.128.2
    
    networks:
    static-network:
    ipam:
    config:
    - subnet: 172.20.0.0/16
    
    volumes:
    prxdatabase:
    Cheers
Working...