User Tools

Site Tools


operations:logging_telemetry

Centralized Event Logging (Telemetry)

In a decoupled architecture, logging into five separate servers to parse application logs during an outage is highly inefficient. This section configures RSYSLOG on your Linux hosts to forward all system events over the network to the Synology NAS (The Vault) running LogCenter.

1. The Receiver (Synology NAS)

Configure the NAS to listen for incoming syslog streams over the Trusted Management Network (VLAN 10).

  1. Open the Package Center on your Synology NAS and install Log Center.
  2. Open Log Center and navigate to Log Receiving.
  3. Check the box for Receive logs from other devices.
  4. Set the format to BSD.
  5. Set the protocol to UDP and the port to 514.
  6. Click Apply.

2. The Transmitters (Linux Compute Nodes)

Execute this configuration on VM-A (Acquisition), VM-B (Requests), Physical Host 2 (Media Engine), and Physical Host 4 (Edge Proxy).

  1. Open the native RSYSLOG configuration file:
sudo nano /etc/rsyslog.conf
  1. Scroll to the bottom of the file and append the UDP forwarding rule. Replace the IP address with the VLAN 10 management IP of your Synology NAS (e.g., `192.168.10.200`).
/etc/rsyslog.conf
# Forward all system logs via UDP to Synology Log Center
*.* @192.168.10.200:514
  1. Restart the RSYSLOG daemon to instantly begin transmission:
sudo systemctl restart rsyslog

3. Firewall Verification

If logs are not appearing in the Synology Log Center, verify your Switch ACLs and Gateway Firewalls. Specifically, the Edge Proxy on VLAN 20 will need explicit permission to send UDP Port 514 traffic to the NAS IP on VLAN 10.

Next Step: Implement enterprise backup policies in Veeam Disaster Recovery Orchestration.

operations/logging_telemetry.txt ยท Last modified: by privacyl0st