docs: Add 16, update 2 and remove 2 files
All checks were successful
Test and Publish Templates / test-and-publish (push) Successful in 9s

This commit is contained in:
j
2026-01-26 21:17:15 +13:00
parent eebd3efcf3
commit 70dab12114
20 changed files with 411 additions and 541 deletions

13
graylog/ports.sh Executable file
View File

@@ -0,0 +1,13 @@
#!/bin/bash
source "${AGENT_PATH}/common.sh"
_check_required_env_vars "WEB_PORT" "GELF_UDP_PORT" "GELF_TCP_PORT" "SYSLOG_UDP_PORT" "SYSLOG_TCP_PORT" "BEATS_PORT"
# PORTS SCRIPT
# Lists the exposed ports
echo "${WEB_PORT:-9000}"
echo "${GELF_UDP_PORT:-12201}"
echo "${GELF_TCP_PORT:-12202}"
echo "${SYSLOG_UDP_PORT:-1514}"
echo "${SYSLOG_TCP_PORT:-1515}"
echo "${BEATS_PORT:-5044}"