mirror of
https://github.com/zabbix/zabbix-docker.git
synced 2025-05-30 14:48:49 +02:00
Merge branch 'master' into 5.0
This commit is contained in:
commit
d6db212183
37
.github/ISSUE_TEMPLATE
vendored
Normal file
37
.github/ISSUE_TEMPLATE
vendored
Normal file
@ -0,0 +1,37 @@
|
|||||||
|
<!--- Please create issues about Zabbix images only. Zabbix official bug and feature tracker is available on https://support.zabbix.com/ -->
|
||||||
|
<!--- Verify first that your issue is not already reported on GitHub or covered in the Wiki -->
|
||||||
|
<!--- Have you had a look in the official Zabbix Documentation? -->
|
||||||
|
|
||||||
|
##### SUMMARY
|
||||||
|
<!--- Explain the problem briefly below -->
|
||||||
|
|
||||||
|
|
||||||
|
##### OS / ENVIRONMENT / Used docker-compose files
|
||||||
|
<!--- Provide all relevant information below, e.g. Docker/Container versions, used OS and OS-versions, which docker-compose_* template used -->
|
||||||
|
|
||||||
|
|
||||||
|
##### CONFIGURATION
|
||||||
|
<!--- Consider adding information about what .env_* files you changed or add the actual docker-compose you used -->
|
||||||
|
<!--- HINT: You can paste gist.github.com links for larger files -->
|
||||||
|
|
||||||
|
##### STEPS TO REPRODUCE
|
||||||
|
<!--- Describe exactly how to reproduce the problem, using a minimal test-case -->
|
||||||
|
|
||||||
|
<!--- Paste example commands between quotes below -->
|
||||||
|
```yaml
|
||||||
|
|
||||||
|
```
|
||||||
|
|
||||||
|
<!--- HINT: You can paste gist.github.com links for larger files -->
|
||||||
|
|
||||||
|
##### EXPECTED RESULTS
|
||||||
|
<!--- Describe what you expected to happen when running the steps above -->
|
||||||
|
|
||||||
|
|
||||||
|
##### ACTUAL RESULTS
|
||||||
|
<!--- Describe what actually happened. If possible run with extra verbosity (higher ZABBIX_LOGLEVEL) -->
|
||||||
|
|
||||||
|
<!--- Paste verbatim command output between quotes -->
|
||||||
|
```paste below
|
||||||
|
|
||||||
|
```
|
11
.github/workflows/CI.yml
vendored
11
.github/workflows/CI.yml
vendored
@ -43,6 +43,7 @@ jobs:
|
|||||||
- web-apache-pgsql
|
- web-apache-pgsql
|
||||||
- web-nginx-mysql
|
- web-nginx-mysql
|
||||||
- web-nginx-pgsql
|
- web-nginx-pgsql
|
||||||
|
- web-service
|
||||||
os:
|
os:
|
||||||
- alpine
|
- alpine
|
||||||
- ubuntu
|
- ubuntu
|
||||||
@ -73,11 +74,15 @@ jobs:
|
|||||||
id: platform
|
id: platform
|
||||||
run: |
|
run: |
|
||||||
DOCKER_PLATFORM="linux/amd64,linux/arm/v6,linux/arm/v7,linux/arm64,linux/s390x,linux/ppc64le"
|
DOCKER_PLATFORM="linux/amd64,linux/arm/v6,linux/arm/v7,linux/arm64,linux/s390x,linux/ppc64le"
|
||||||
|
|
||||||
if [ "${{ matrix.build }}" == "agent2" ]; then
|
if [ "${{ matrix.build }}" == "agent2" ]; then
|
||||||
DOCKER_PLATFORM="linux/amd64,linux/arm/v6,linux/arm/v7,linux/arm64,linux/ppc64le"
|
DOCKER_PLATFORM="linux/amd64,linux/arm/v6,linux/arm/v7,linux/arm64,linux/ppc64le"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
if [ "${{ matrix.build }}" == "web-service" ]; then
|
||||||
|
DOCKER_PLATFORM="linux/amd64,linux/arm64"
|
||||||
|
fi
|
||||||
|
|
||||||
if [ "${{ matrix.os }}" == "ubuntu" ]; then
|
if [ "${{ matrix.os }}" == "ubuntu" ]; then
|
||||||
DOCKER_PLATFORM="linux/amd64,linux/arm/v7,linux/arm64,linux/ppc64le"
|
DOCKER_PLATFORM="linux/amd64,linux/arm/v7,linux/arm64,linux/ppc64le"
|
||||||
fi
|
fi
|
||||||
@ -90,6 +95,10 @@ jobs:
|
|||||||
DOCKER_PLATFORM=${DOCKER_PLATFORM%",linux/ppc64le"}
|
DOCKER_PLATFORM=${DOCKER_PLATFORM%",linux/ppc64le"}
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
if [ "${{ matrix.build }}" == "web-service" ]; then
|
||||||
|
DOCKER_PLATFORM=${DOCKER_PLATFORM%",linux/ppc64le"}
|
||||||
|
fi
|
||||||
|
|
||||||
echo ::set-output name=list::${DOCKER_PLATFORM}
|
echo ::set-output name=list::${DOCKER_PLATFORM}
|
||||||
|
|
||||||
- name: Prepare environment (push)
|
- name: Prepare environment (push)
|
||||||
|
17
.github/workflows/dockerhub_description.yml
vendored
17
.github/workflows/dockerhub_description.yml
vendored
@ -20,16 +20,17 @@ jobs:
|
|||||||
build:
|
build:
|
||||||
- agent
|
- agent
|
||||||
- agent2
|
- agent2
|
||||||
- java-gateway
|
- java-gateway
|
||||||
- proxy-mysql
|
- proxy-mysql
|
||||||
- proxy-sqlite3
|
- proxy-sqlite3
|
||||||
- server-mysql
|
- server-mysql
|
||||||
- server-pgsql
|
- server-pgsql
|
||||||
- snmptraps
|
- snmptraps
|
||||||
- web-apache-mysql
|
- web-apache-mysql
|
||||||
- web-apache-pgsql
|
- web-apache-pgsql
|
||||||
- web-nginx-mysql
|
- web-nginx-mysql
|
||||||
- web-nginx-pgsql
|
- web-nginx-pgsql
|
||||||
|
- web-service
|
||||||
steps:
|
steps:
|
||||||
-
|
-
|
||||||
uses: actions/checkout@v2
|
uses: actions/checkout@v2
|
||||||
|
@ -24,7 +24,9 @@ This repository contains **Dockerfile** of [Zabbix](https://zabbix.com/) for [Do
|
|||||||
|
|
||||||
### Usage
|
### Usage
|
||||||
|
|
||||||
Please follow usage instructions of each Zabbix component image:
|
There is some documentation and examples in the [official Zabbix Documentation](https://www.zabbix.com/documentation/current/manual/installation/containers)!
|
||||||
|
|
||||||
|
Please also follow usage instructions of each Zabbix component image:
|
||||||
|
|
||||||
* [zabbix-appliance](https://hub.docker.com/r/zabbix/zabbix-appliance/) - Zabbix appliance with built-in MySQL server, Zabbix server, Zabbix Java Gateway and Zabbix frontend based on Nginx web-server
|
* [zabbix-appliance](https://hub.docker.com/r/zabbix/zabbix-appliance/) - Zabbix appliance with built-in MySQL server, Zabbix server, Zabbix Java Gateway and Zabbix frontend based on Nginx web-server
|
||||||
> **Important information: Zabbix Docker Appliance has been decommissioned (except Red Hat edition) and will not be available for 3.0.31, 4.0.19, 4.4.7, 5.0.0 and newer releases. Please use a separate Docker images for each component instead of the all-in-one solution.**
|
> **Important information: Zabbix Docker Appliance has been decommissioned (except Red Hat edition) and will not be available for 3.0.31, 4.0.19, 4.4.7, 5.0.0 and newer releases. Please use a separate Docker images for each component instead of the all-in-one solution.**
|
||||||
@ -42,9 +44,9 @@ Please follow usage instructions of each Zabbix component image:
|
|||||||
* [zabbix-java-gateway](https://hub.docker.com/r/zabbix/zabbix-java-gateway/) - Zabbix Java Gateway
|
* [zabbix-java-gateway](https://hub.docker.com/r/zabbix/zabbix-java-gateway/) - Zabbix Java Gateway
|
||||||
* [zabbix-snmptraps](https://hub.docker.com/r/zabbix/zabbix-snmptraps/) - Additional container image for Zabbix server and Zabbix proxy to support SNMP traps
|
* [zabbix-snmptraps](https://hub.docker.com/r/zabbix/zabbix-snmptraps/) - Additional container image for Zabbix server and Zabbix proxy to support SNMP traps
|
||||||
|
|
||||||
## Issues
|
## Issues and Wiki
|
||||||
|
|
||||||
If you have any problems with or questions about this image, please contact us through a [GitHub issue](https://github.com/zabbix/zabbix-docker/issues).
|
Be sure to check [the Wiki-page](https://github.com/zabbix/zabbix-docker/wiki) on common problems and questions. If you still have problems with or questions about the images, please contact us through a [GitHub issue](https://github.com/zabbix/zabbix-docker/issues).
|
||||||
|
|
||||||
## Contributing
|
## Contributing
|
||||||
|
|
||||||
|
@ -48,7 +48,7 @@ RUN set -eux && \
|
|||||||
automake \
|
automake \
|
||||||
libc6-dev \
|
libc6-dev \
|
||||||
make \
|
make \
|
||||||
openjdk-8-jdk \
|
openjdk-8-jdk-headless \
|
||||||
pkg-config \
|
pkg-config \
|
||||||
git \
|
git \
|
||||||
gcc && \
|
gcc && \
|
||||||
|
@ -186,6 +186,7 @@ ZBX_STARTPOLLERSUNREACHABLE=1
|
|||||||
ZBX_STARTTRAPPERS=5
|
ZBX_STARTTRAPPERS=5
|
||||||
ZBX_STARTPINGERS=1
|
ZBX_STARTPINGERS=1
|
||||||
ZBX_STARTDISCOVERERS=1
|
ZBX_STARTDISCOVERERS=1
|
||||||
|
ZBX_STARTHISTORYPOLLERS=1 # Available since 5.4.0
|
||||||
ZBX_STARTHTTPPOLLERS=1
|
ZBX_STARTHTTPPOLLERS=1
|
||||||
ZBX_JAVAGATEWAY=zabbix-java-gateway
|
ZBX_JAVAGATEWAY=zabbix-java-gateway
|
||||||
ZBX_JAVAGATEWAYPORT=10052
|
ZBX_JAVAGATEWAYPORT=10052
|
||||||
|
@ -186,6 +186,7 @@ ZBX_STARTPOLLERSUNREACHABLE=1
|
|||||||
ZBX_STARTTRAPPERS=5
|
ZBX_STARTTRAPPERS=5
|
||||||
ZBX_STARTPINGERS=1
|
ZBX_STARTPINGERS=1
|
||||||
ZBX_STARTDISCOVERERS=1
|
ZBX_STARTDISCOVERERS=1
|
||||||
|
ZBX_STARTHISTORYPOLLERS=1 # Available since 5.4.0
|
||||||
ZBX_STARTHTTPPOLLERS=1
|
ZBX_STARTHTTPPOLLERS=1
|
||||||
ZBX_JAVAGATEWAY=zabbix-java-gateway
|
ZBX_JAVAGATEWAY=zabbix-java-gateway
|
||||||
ZBX_JAVAGATEWAYPORT=10052
|
ZBX_JAVAGATEWAYPORT=10052
|
||||||
|
@ -186,6 +186,7 @@ ZBX_STARTPOLLERSUNREACHABLE=1
|
|||||||
ZBX_STARTTRAPPERS=5
|
ZBX_STARTTRAPPERS=5
|
||||||
ZBX_STARTPINGERS=1
|
ZBX_STARTPINGERS=1
|
||||||
ZBX_STARTDISCOVERERS=1
|
ZBX_STARTDISCOVERERS=1
|
||||||
|
ZBX_STARTHISTORYPOLLERS=1 # Available since 5.4.0
|
||||||
ZBX_STARTHTTPPOLLERS=1
|
ZBX_STARTHTTPPOLLERS=1
|
||||||
ZBX_JAVAGATEWAY=zabbix-java-gateway
|
ZBX_JAVAGATEWAY=zabbix-java-gateway
|
||||||
ZBX_JAVAGATEWAYPORT=10052
|
ZBX_JAVAGATEWAYPORT=10052
|
||||||
|
@ -144,6 +144,7 @@ ZBX_STARTPOLLERSUNREACHABLE=1
|
|||||||
ZBX_STARTTRAPPERS=5
|
ZBX_STARTTRAPPERS=5
|
||||||
ZBX_STARTPINGERS=1
|
ZBX_STARTPINGERS=1
|
||||||
ZBX_STARTDISCOVERERS=1
|
ZBX_STARTDISCOVERERS=1
|
||||||
|
ZBX_STARTHISTORYPOLLERS=1 # Available since 5.4.0
|
||||||
ZBX_STARTHTTPPOLLERS=1
|
ZBX_STARTHTTPPOLLERS=1
|
||||||
ZBX_JAVAGATEWAY=zabbix-java-gateway
|
ZBX_JAVAGATEWAY=zabbix-java-gateway
|
||||||
ZBX_JAVAGATEWAYPORT=10052
|
ZBX_JAVAGATEWAYPORT=10052
|
||||||
|
@ -144,6 +144,7 @@ ZBX_STARTPOLLERSUNREACHABLE=1
|
|||||||
ZBX_STARTTRAPPERS=5
|
ZBX_STARTTRAPPERS=5
|
||||||
ZBX_STARTPINGERS=1
|
ZBX_STARTPINGERS=1
|
||||||
ZBX_STARTDISCOVERERS=1
|
ZBX_STARTDISCOVERERS=1
|
||||||
|
ZBX_STARTHISTORYPOLLERS=1 # Available since 5.4.0
|
||||||
ZBX_STARTHTTPPOLLERS=1
|
ZBX_STARTHTTPPOLLERS=1
|
||||||
ZBX_JAVAGATEWAY=zabbix-java-gateway
|
ZBX_JAVAGATEWAY=zabbix-java-gateway
|
||||||
ZBX_JAVAGATEWAYPORT=10052
|
ZBX_JAVAGATEWAYPORT=10052
|
||||||
|
@ -144,6 +144,7 @@ ZBX_STARTPOLLERSUNREACHABLE=1
|
|||||||
ZBX_STARTTRAPPERS=5
|
ZBX_STARTTRAPPERS=5
|
||||||
ZBX_STARTPINGERS=1
|
ZBX_STARTPINGERS=1
|
||||||
ZBX_STARTDISCOVERERS=1
|
ZBX_STARTDISCOVERERS=1
|
||||||
|
ZBX_STARTHISTORYPOLLERS=1 # Available since 5.4.0
|
||||||
ZBX_STARTHTTPPOLLERS=1
|
ZBX_STARTHTTPPOLLERS=1
|
||||||
ZBX_JAVAGATEWAY=zabbix-java-gateway
|
ZBX_JAVAGATEWAY=zabbix-java-gateway
|
||||||
ZBX_JAVAGATEWAYPORT=10052
|
ZBX_JAVAGATEWAYPORT=10052
|
||||||
|
@ -141,6 +141,8 @@ ZBX_VAULTDBPATH= # Available since 5.2.0
|
|||||||
ZBX_VAULTURL=https://127.0.0.1:8200 # Available since 5.2.0
|
ZBX_VAULTURL=https://127.0.0.1:8200 # Available since 5.2.0
|
||||||
VAULT_TOKEN= # Available since 5.2.0
|
VAULT_TOKEN= # Available since 5.2.0
|
||||||
ZBX_LISTENIP=
|
ZBX_LISTENIP=
|
||||||
|
ZBX_STARTREPORTWRITERS=0 # Available since 5.4.0
|
||||||
|
ZBX_WEBSERVICEURL=http://zabbix-web-service:10053/report # Available since 5.4.0
|
||||||
ZBX_HISTORYSTORAGEURL= # Available since 3.4.0
|
ZBX_HISTORYSTORAGEURL= # Available since 3.4.0
|
||||||
ZBX_HISTORYSTORAGETYPES=uint,dbl,str,log,text # Available since 3.4.0
|
ZBX_HISTORYSTORAGETYPES=uint,dbl,str,log,text # Available since 3.4.0
|
||||||
ZBX_STARTPOLLERS=5
|
ZBX_STARTPOLLERS=5
|
||||||
@ -150,6 +152,7 @@ ZBX_STARTPOLLERSUNREACHABLE=1
|
|||||||
ZBX_STARTTRAPPERS=5
|
ZBX_STARTTRAPPERS=5
|
||||||
ZBX_STARTPINGERS=1
|
ZBX_STARTPINGERS=1
|
||||||
ZBX_STARTDISCOVERERS=1
|
ZBX_STARTDISCOVERERS=1
|
||||||
|
ZBX_STARTHISTORYPOLLERS=5 # Available since 5.4.0
|
||||||
ZBX_STARTHTTPPOLLERS=1
|
ZBX_STARTHTTPPOLLERS=1
|
||||||
ZBX_STARTTIMERS=1
|
ZBX_STARTTIMERS=1
|
||||||
ZBX_STARTESCALATORS=1
|
ZBX_STARTESCALATORS=1
|
||||||
@ -173,6 +176,7 @@ ZBX_CACHESIZE=8M
|
|||||||
ZBX_CACHEUPDATEFREQUENCY=60
|
ZBX_CACHEUPDATEFREQUENCY=60
|
||||||
ZBX_STARTDBSYNCERS=4
|
ZBX_STARTDBSYNCERS=4
|
||||||
ZBX_EXPORTFILESIZE=1G # Available since 4.0.0
|
ZBX_EXPORTFILESIZE=1G # Available since 4.0.0
|
||||||
|
ZBX_EXPORTTYPE= # Available since 5.0.10 and 5.2.6
|
||||||
ZBX_HISTORYCACHESIZE=16M
|
ZBX_HISTORYCACHESIZE=16M
|
||||||
ZBX_HISTORYINDEXCACHESIZE=4M
|
ZBX_HISTORYINDEXCACHESIZE=4M
|
||||||
ZBX_HISTORYSTORAGEDATEINDEX=0 # Available since 4.0.0
|
ZBX_HISTORYSTORAGEDATEINDEX=0 # Available since 4.0.0
|
||||||
|
@ -141,6 +141,8 @@ ZBX_VAULTDBPATH= # Available since 5.2.0
|
|||||||
ZBX_VAULTURL=https://127.0.0.1:8200 # Available since 5.2.0
|
ZBX_VAULTURL=https://127.0.0.1:8200 # Available since 5.2.0
|
||||||
VAULT_TOKEN= # Available since 5.2.0
|
VAULT_TOKEN= # Available since 5.2.0
|
||||||
ZBX_LISTENIP=
|
ZBX_LISTENIP=
|
||||||
|
ZBX_STARTREPORTWRITERS=0 # Available since 5.4.0
|
||||||
|
ZBX_WEBSERVICEURL=http://zabbix-web-service:10053/report # Available since 5.4.0
|
||||||
ZBX_HISTORYSTORAGEURL= # Available since 3.4.0
|
ZBX_HISTORYSTORAGEURL= # Available since 3.4.0
|
||||||
ZBX_HISTORYSTORAGETYPES=uint,dbl,str,log,text # Available since 3.4.0
|
ZBX_HISTORYSTORAGETYPES=uint,dbl,str,log,text # Available since 3.4.0
|
||||||
ZBX_STARTPOLLERS=5
|
ZBX_STARTPOLLERS=5
|
||||||
@ -150,6 +152,7 @@ ZBX_STARTPOLLERSUNREACHABLE=1
|
|||||||
ZBX_STARTTRAPPERS=5
|
ZBX_STARTTRAPPERS=5
|
||||||
ZBX_STARTPINGERS=1
|
ZBX_STARTPINGERS=1
|
||||||
ZBX_STARTDISCOVERERS=1
|
ZBX_STARTDISCOVERERS=1
|
||||||
|
ZBX_STARTHISTORYPOLLERS=5 # Available since 5.4.0
|
||||||
ZBX_STARTHTTPPOLLERS=1
|
ZBX_STARTHTTPPOLLERS=1
|
||||||
ZBX_STARTTIMERS=1
|
ZBX_STARTTIMERS=1
|
||||||
ZBX_STARTESCALATORS=1
|
ZBX_STARTESCALATORS=1
|
||||||
@ -173,6 +176,7 @@ ZBX_CACHESIZE=8M
|
|||||||
ZBX_CACHEUPDATEFREQUENCY=60
|
ZBX_CACHEUPDATEFREQUENCY=60
|
||||||
ZBX_STARTDBSYNCERS=4
|
ZBX_STARTDBSYNCERS=4
|
||||||
ZBX_EXPORTFILESIZE=1G # Available since 4.0.0
|
ZBX_EXPORTFILESIZE=1G # Available since 4.0.0
|
||||||
|
ZBX_EXPORTTYPE= # Available since 5.0.10 and 5.2.6
|
||||||
ZBX_HISTORYCACHESIZE=16M
|
ZBX_HISTORYCACHESIZE=16M
|
||||||
ZBX_HISTORYINDEXCACHESIZE=4M
|
ZBX_HISTORYINDEXCACHESIZE=4M
|
||||||
ZBX_HISTORYSTORAGEDATEINDEX=0 # Available since 4.0.0
|
ZBX_HISTORYSTORAGEDATEINDEX=0 # Available since 4.0.0
|
||||||
|
@ -141,6 +141,8 @@ ZBX_VAULTDBPATH= # Available since 5.2.0
|
|||||||
ZBX_VAULTURL=https://127.0.0.1:8200 # Available since 5.2.0
|
ZBX_VAULTURL=https://127.0.0.1:8200 # Available since 5.2.0
|
||||||
VAULT_TOKEN= # Available since 5.2.0
|
VAULT_TOKEN= # Available since 5.2.0
|
||||||
ZBX_LISTENIP=
|
ZBX_LISTENIP=
|
||||||
|
ZBX_STARTREPORTWRITERS=0 # Available since 5.4.0
|
||||||
|
ZBX_WEBSERVICEURL=http://zabbix-web-service:10053/report # Available since 5.4.0
|
||||||
ZBX_HISTORYSTORAGEURL= # Available since 3.4.0
|
ZBX_HISTORYSTORAGEURL= # Available since 3.4.0
|
||||||
ZBX_HISTORYSTORAGETYPES=uint,dbl,str,log,text # Available since 3.4.0
|
ZBX_HISTORYSTORAGETYPES=uint,dbl,str,log,text # Available since 3.4.0
|
||||||
ZBX_STARTPOLLERS=5
|
ZBX_STARTPOLLERS=5
|
||||||
@ -150,6 +152,7 @@ ZBX_STARTPOLLERSUNREACHABLE=1
|
|||||||
ZBX_STARTTRAPPERS=5
|
ZBX_STARTTRAPPERS=5
|
||||||
ZBX_STARTPINGERS=1
|
ZBX_STARTPINGERS=1
|
||||||
ZBX_STARTDISCOVERERS=1
|
ZBX_STARTDISCOVERERS=1
|
||||||
|
ZBX_STARTHISTORYPOLLERS=5 # Available since 5.4.0
|
||||||
ZBX_STARTHTTPPOLLERS=1
|
ZBX_STARTHTTPPOLLERS=1
|
||||||
ZBX_STARTTIMERS=1
|
ZBX_STARTTIMERS=1
|
||||||
ZBX_STARTESCALATORS=1
|
ZBX_STARTESCALATORS=1
|
||||||
@ -173,6 +176,7 @@ ZBX_CACHESIZE=8M
|
|||||||
ZBX_CACHEUPDATEFREQUENCY=60
|
ZBX_CACHEUPDATEFREQUENCY=60
|
||||||
ZBX_STARTDBSYNCERS=4
|
ZBX_STARTDBSYNCERS=4
|
||||||
ZBX_EXPORTFILESIZE=1G # Available since 4.0.0
|
ZBX_EXPORTFILESIZE=1G # Available since 4.0.0
|
||||||
|
ZBX_EXPORTTYPE= # Available since 5.0.10 and 5.2.6
|
||||||
ZBX_HISTORYCACHESIZE=16M
|
ZBX_HISTORYCACHESIZE=16M
|
||||||
ZBX_HISTORYINDEXCACHESIZE=4M
|
ZBX_HISTORYINDEXCACHESIZE=4M
|
||||||
ZBX_HISTORYSTORAGEDATEINDEX=0 # Available since 4.0.0
|
ZBX_HISTORYSTORAGEDATEINDEX=0 # Available since 4.0.0
|
||||||
|
@ -138,6 +138,8 @@ ZBX_VAULTDBPATH= # Available since 5.2.0
|
|||||||
ZBX_VAULTURL=https://127.0.0.1:8200 # Available since 5.2.0
|
ZBX_VAULTURL=https://127.0.0.1:8200 # Available since 5.2.0
|
||||||
VAULT_TOKEN= # Available since 5.2.0
|
VAULT_TOKEN= # Available since 5.2.0
|
||||||
ZBX_LISTENIP=
|
ZBX_LISTENIP=
|
||||||
|
ZBX_STARTREPORTWRITERS=0 # Available since 5.4.0
|
||||||
|
ZBX_WEBSERVICEURL=http://zabbix-web-service:10053/report # Available since 5.4.0
|
||||||
ZBX_HISTORYSTORAGEURL= # Available since 3.4.0
|
ZBX_HISTORYSTORAGEURL= # Available since 3.4.0
|
||||||
ZBX_HISTORYSTORAGETYPES=uint,dbl,str,log,text # Available since 3.4.0
|
ZBX_HISTORYSTORAGETYPES=uint,dbl,str,log,text # Available since 3.4.0
|
||||||
ZBX_STARTPOLLERS=5
|
ZBX_STARTPOLLERS=5
|
||||||
@ -147,6 +149,7 @@ ZBX_STARTPOLLERSUNREACHABLE=1
|
|||||||
ZBX_STARTTRAPPERS=5
|
ZBX_STARTTRAPPERS=5
|
||||||
ZBX_STARTPINGERS=1
|
ZBX_STARTPINGERS=1
|
||||||
ZBX_STARTDISCOVERERS=1
|
ZBX_STARTDISCOVERERS=1
|
||||||
|
ZBX_STARTHISTORYPOLLERS=5 # Available since 5.4.0
|
||||||
ZBX_STARTHTTPPOLLERS=1
|
ZBX_STARTHTTPPOLLERS=1
|
||||||
ZBX_STARTTIMERS=1
|
ZBX_STARTTIMERS=1
|
||||||
ZBX_STARTESCALATORS=1
|
ZBX_STARTESCALATORS=1
|
||||||
@ -170,6 +173,7 @@ ZBX_CACHESIZE=8M
|
|||||||
ZBX_CACHEUPDATEFREQUENCY=60
|
ZBX_CACHEUPDATEFREQUENCY=60
|
||||||
ZBX_STARTDBSYNCERS=4
|
ZBX_STARTDBSYNCERS=4
|
||||||
ZBX_EXPORTFILESIZE=1G # Available since 4.0.0
|
ZBX_EXPORTFILESIZE=1G # Available since 4.0.0
|
||||||
|
ZBX_EXPORTTYPE= # Available since 5.0.10 and 5.2.6
|
||||||
ZBX_HISTORYCACHESIZE=16M
|
ZBX_HISTORYCACHESIZE=16M
|
||||||
ZBX_HISTORYINDEXCACHESIZE=4M
|
ZBX_HISTORYINDEXCACHESIZE=4M
|
||||||
ZBX_HISTORYSTORAGEDATEINDEX=0 # Available since 4.0.0
|
ZBX_HISTORYSTORAGEDATEINDEX=0 # Available since 4.0.0
|
||||||
|
@ -138,6 +138,8 @@ ZBX_VAULTDBPATH= # Available since 5.2.0
|
|||||||
ZBX_VAULTURL=https://127.0.0.1:8200 # Available since 5.2.0
|
ZBX_VAULTURL=https://127.0.0.1:8200 # Available since 5.2.0
|
||||||
VAULT_TOKEN= # Available since 5.2.0
|
VAULT_TOKEN= # Available since 5.2.0
|
||||||
ZBX_LISTENIP=
|
ZBX_LISTENIP=
|
||||||
|
ZBX_STARTREPORTWRITERS=0 # Available since 5.4.0
|
||||||
|
ZBX_WEBSERVICEURL=http://zabbix-web-service:10053/report # Available since 5.4.0
|
||||||
ZBX_HISTORYSTORAGEURL= # Available since 3.4.0
|
ZBX_HISTORYSTORAGEURL= # Available since 3.4.0
|
||||||
ZBX_HISTORYSTORAGETYPES=uint,dbl,str,log,text # Available since 3.4.0
|
ZBX_HISTORYSTORAGETYPES=uint,dbl,str,log,text # Available since 3.4.0
|
||||||
ZBX_STARTPOLLERS=5
|
ZBX_STARTPOLLERS=5
|
||||||
@ -147,6 +149,7 @@ ZBX_STARTPOLLERSUNREACHABLE=1
|
|||||||
ZBX_STARTTRAPPERS=5
|
ZBX_STARTTRAPPERS=5
|
||||||
ZBX_STARTPINGERS=1
|
ZBX_STARTPINGERS=1
|
||||||
ZBX_STARTDISCOVERERS=1
|
ZBX_STARTDISCOVERERS=1
|
||||||
|
ZBX_STARTHISTORYPOLLERS=5 # Available since 5.4.0
|
||||||
ZBX_STARTHTTPPOLLERS=1
|
ZBX_STARTHTTPPOLLERS=1
|
||||||
ZBX_STARTTIMERS=1
|
ZBX_STARTTIMERS=1
|
||||||
ZBX_STARTESCALATORS=1
|
ZBX_STARTESCALATORS=1
|
||||||
@ -170,6 +173,7 @@ ZBX_CACHESIZE=8M
|
|||||||
ZBX_CACHEUPDATEFREQUENCY=60
|
ZBX_CACHEUPDATEFREQUENCY=60
|
||||||
ZBX_STARTDBSYNCERS=4
|
ZBX_STARTDBSYNCERS=4
|
||||||
ZBX_EXPORTFILESIZE=1G # Available since 4.0.0
|
ZBX_EXPORTFILESIZE=1G # Available since 4.0.0
|
||||||
|
ZBX_EXPORTTYPE= # Available since 5.0.10 and 5.2.6
|
||||||
ZBX_HISTORYCACHESIZE=16M
|
ZBX_HISTORYCACHESIZE=16M
|
||||||
ZBX_HISTORYINDEXCACHESIZE=4M
|
ZBX_HISTORYINDEXCACHESIZE=4M
|
||||||
ZBX_HISTORYSTORAGEDATEINDEX=0 # Available since 4.0.0
|
ZBX_HISTORYSTORAGEDATEINDEX=0 # Available since 4.0.0
|
||||||
|
@ -138,6 +138,8 @@ ZBX_VAULTDBPATH= # Available since 5.2.0
|
|||||||
ZBX_VAULTURL=https://127.0.0.1:8200 # Available since 5.2.0
|
ZBX_VAULTURL=https://127.0.0.1:8200 # Available since 5.2.0
|
||||||
VAULT_TOKEN= # Available since 5.2.0
|
VAULT_TOKEN= # Available since 5.2.0
|
||||||
ZBX_LISTENIP=
|
ZBX_LISTENIP=
|
||||||
|
ZBX_STARTREPORTWRITERS=0 # Available since 5.4.0
|
||||||
|
ZBX_WEBSERVICEURL=http://zabbix-web-service:10053/report # Available since 5.4.0
|
||||||
ZBX_HISTORYSTORAGEURL= # Available since 3.4.0
|
ZBX_HISTORYSTORAGEURL= # Available since 3.4.0
|
||||||
ZBX_HISTORYSTORAGETYPES=uint,dbl,str,log,text # Available since 3.4.0
|
ZBX_HISTORYSTORAGETYPES=uint,dbl,str,log,text # Available since 3.4.0
|
||||||
ZBX_STARTPOLLERS=5
|
ZBX_STARTPOLLERS=5
|
||||||
@ -147,6 +149,7 @@ ZBX_STARTPOLLERSUNREACHABLE=1
|
|||||||
ZBX_STARTTRAPPERS=5
|
ZBX_STARTTRAPPERS=5
|
||||||
ZBX_STARTPINGERS=1
|
ZBX_STARTPINGERS=1
|
||||||
ZBX_STARTDISCOVERERS=1
|
ZBX_STARTDISCOVERERS=1
|
||||||
|
ZBX_STARTHISTORYPOLLERS=5 # Available since 5.4.0
|
||||||
ZBX_STARTHTTPPOLLERS=1
|
ZBX_STARTHTTPPOLLERS=1
|
||||||
ZBX_STARTTIMERS=1
|
ZBX_STARTTIMERS=1
|
||||||
ZBX_STARTESCALATORS=1
|
ZBX_STARTESCALATORS=1
|
||||||
@ -170,6 +173,7 @@ ZBX_CACHESIZE=8M
|
|||||||
ZBX_CACHEUPDATEFREQUENCY=60
|
ZBX_CACHEUPDATEFREQUENCY=60
|
||||||
ZBX_STARTDBSYNCERS=4
|
ZBX_STARTDBSYNCERS=4
|
||||||
ZBX_EXPORTFILESIZE=1G # Available since 4.0.0
|
ZBX_EXPORTFILESIZE=1G # Available since 4.0.0
|
||||||
|
ZBX_EXPORTTYPE= # Available since 5.0.10 and 5.2.6
|
||||||
ZBX_HISTORYCACHESIZE=16M
|
ZBX_HISTORYCACHESIZE=16M
|
||||||
ZBX_HISTORYINDEXCACHESIZE=4M
|
ZBX_HISTORYINDEXCACHESIZE=4M
|
||||||
ZBX_HISTORYSTORAGEDATEINDEX=0 # Available since 4.0.0
|
ZBX_HISTORYSTORAGEDATEINDEX=0 # Available since 4.0.0
|
||||||
|
Loading…
x
Reference in New Issue
Block a user