将 graylog 与 tarantool 结合使用的最佳做法是什么?
What is the good practice to use graylog with tarantool?
目前我们的应用程序使用 tarantool 提供的日志模块,但正在寻找一种将日志收集到 graylog 中的方法。最好的方法是什么?
根据 graylog 文档,它可以用作系统日志服务器:https://www.graylog.org/post/how-to-use-graylog-as-a-syslog-server
并且 Tarantool 支持写入系统日志:
https://www.tarantool.io/en/doc/latest/reference/configuration/#confval-log
您只需按照合规性配置它们:
box.cfg({log = 'syslog:server=127.0.0.1:1514'})
目前我们的应用程序使用 tarantool 提供的日志模块,但正在寻找一种将日志收集到 graylog 中的方法。最好的方法是什么?
根据 graylog 文档,它可以用作系统日志服务器:https://www.graylog.org/post/how-to-use-graylog-as-a-syslog-server
并且 Tarantool 支持写入系统日志: https://www.tarantool.io/en/doc/latest/reference/configuration/#confval-log
您只需按照合规性配置它们:
box.cfg({log = 'syslog:server=127.0.0.1:1514'})