wu-sheng commented on a change in pull request #6176: URL: https://github.com/apache/skywalking/pull/6176#discussion_r568289395
########## File path: docs/en/setup/backend/backend-zabbix.md ########## @@ -0,0 +1,67 @@ +# Zabbix Receiver +Zabbix receiver is accepting the metrics of [Zabbix Agent Active Checks protocol](https://www.zabbix.com/documentation/current/manual/appendix/items/activepassive#active_checks) fromat into the [Meter System](./../../concepts-and-designs/meter.md). + +## Module define +```yaml +receiver-zabbix: + selector: ${SW_RECEIVER_METER:default} + default: + # Export tcp port, Zabbix agent could connected and transport data + port: 13800 + # Enable config when receive agent request + activeFiles: agent.yaml Review comment: Please take a reference of OTEL rules, I remember it uses file name without `.yaml`. ########## File path: docs/en/setup/backend/backend-zabbix.md ########## @@ -0,0 +1,67 @@ +# Zabbix Receiver +Zabbix receiver is accepting the metrics of [Zabbix Agent Active Checks protocol](https://www.zabbix.com/documentation/current/manual/appendix/items/activepassive#active_checks) fromat into the [Meter System](./../../concepts-and-designs/meter.md). + +## Module define +```yaml +receiver-zabbix: + selector: ${SW_RECEIVER_METER:default} + default: + # Export tcp port, Zabbix agent could connected and transport data + port: 13800 + # Enable config when receive agent request + activeFiles: agent.yaml +``` + +## Configuration file +Zabbix receiver is configured via a configuration file. The configuration file defines everything related to receiving + from agents, as well as which rule files to load. + +OAP can load the configuration at bootstrap. If the new configuration is not well-formed, OAP fails to start up. The files +are located at `$CLASSPATH/zabbix-receive-config`. Review comment: ```suggestion are located at `$CLASSPATH/zabbix-rules`. ``` ########## File path: docs/en/setup/backend/backend-zabbix.md ########## @@ -0,0 +1,67 @@ +# Zabbix Receiver +Zabbix receiver is accepting the metrics of [Zabbix Agent Active Checks protocol](https://www.zabbix.com/documentation/current/manual/appendix/items/activepassive#active_checks) fromat into the [Meter System](./../../concepts-and-designs/meter.md). + +## Module define +```yaml +receiver-zabbix: + selector: ${SW_RECEIVER_METER:default} + default: + # Export tcp port, Zabbix agent could connected and transport data + port: 13800 + # Enable config when receive agent request + activeFiles: agent.yaml +``` + +## Configuration file +Zabbix receiver is configured via a configuration file. The configuration file defines everything related to receiving + from agents, as well as which rule files to load. + +OAP can load the configuration at bootstrap. If the new configuration is not well-formed, OAP fails to start up. The files +are located at `$CLASSPATH/zabbix-receive-config`. + +The file is written in YAML format, defined by the scheme described below. Brackets indicate that a parameter is optional. + +A example can be found [here](../../../../oap-server/server-bootstrap/src/main/resources/meter-analyzer-config/spring-sleuth.yaml). Review comment: Copy/paste issue? I think this is not related to sleuth. ########## File path: docs/en/setup/backend/backend-zabbix.md ########## @@ -0,0 +1,67 @@ +# Zabbix Receiver +Zabbix receiver is accepting the metrics of [Zabbix Agent Active Checks protocol](https://www.zabbix.com/documentation/current/manual/appendix/items/activepassive#active_checks) fromat into the [Meter System](./../../concepts-and-designs/meter.md). + +## Module define +```yaml +receiver-zabbix: + selector: ${SW_RECEIVER_METER:default} + default: + # Export tcp port, Zabbix agent could connected and transport data + port: 13800 + # Enable config when receive agent request + activeFiles: agent.yaml +``` + +## Configuration file +Zabbix receiver is configured via a configuration file. The configuration file defines everything related to receiving + from agents, as well as which rule files to load. + +OAP can load the configuration at bootstrap. If the new configuration is not well-formed, OAP fails to start up. The files +are located at `$CLASSPATH/zabbix-receive-config`. + +The file is written in YAML format, defined by the scheme described below. Brackets indicate that a parameter is optional. + +A example can be found [here](../../../../oap-server/server-bootstrap/src/main/resources/meter-analyzer-config/spring-sleuth.yaml). Review comment: We could provide native configuration for some Zabbix agents, such as VM agent ########## File path: docs/en/setup/backend/backend-zabbix.md ########## @@ -0,0 +1,67 @@ +# Zabbix Receiver +Zabbix receiver is accepting the metrics of [Zabbix Agent Active Checks protocol](https://www.zabbix.com/documentation/current/manual/appendix/items/activepassive#active_checks) fromat into the [Meter System](./../../concepts-and-designs/meter.md). + +## Module define +```yaml +receiver-zabbix: + selector: ${SW_RECEIVER_METER:default} + default: + # Export tcp port, Zabbix agent could connected and transport data + port: 13800 + # Enable config when receive agent request + activeFiles: agent.yaml +``` + +## Configuration file +Zabbix receiver is configured via a configuration file. The configuration file defines everything related to receiving + from agents, as well as which rule files to load. + +OAP can load the configuration at bootstrap. If the new configuration is not well-formed, OAP fails to start up. The files +are located at `$CLASSPATH/zabbix-receive-config`. + +The file is written in YAML format, defined by the scheme described below. Brackets indicate that a parameter is optional. + +A example can be found [here](../../../../oap-server/server-bootstrap/src/main/resources/meter-analyzer-config/spring-sleuth.yaml). +You could find the Zabbix agent detail items from [Zabbix Agent docucment](https://www.zabbix.com/documentation/current/manual/config/items/itemtypes/zabbix_agent). + +### Zabbix agent configure Review comment: This title could mislead people thought, this is Zabbix's native configuration. This should be purely `Configuration file` ---------------------------------------------------------------- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. For queries about this service, please contact Infrastructure at: [email protected]
