Skip to content
This repository was archived by the owner on Jan 7, 2026. It is now read-only.

Commit 5920ff7

Browse files
CopilotStolas
andcommitted
Move docker/telegraf to telegraf directory
- Rename docker/telegraf directory to just telegraf at repository root - Update path reference in startup.sh from ./docker/telegraf/telegraf.conf to ./telegraf/telegraf.conf - Update path reference in telegraf.conf comments - Remove now-empty docker directory Co-authored-by: Stolas <610753+Stolas@users.noreply.github.com>
1 parent 0fbbcfb commit 5920ff7

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

startup.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1124,7 +1124,7 @@ SERVICE_CMDS[go2rtc]="podman run -d --name go2rtc --restart unless-stopped --net
11241124
# FUXA for HMI/SCADA visual interface
11251125
SERVICE_CMDS[fuxa]="podman run -d --name fuxa --restart unless-stopped --network ${NETWORK_NAME} -p 1881:1881 -v fuxa_data:/usr/src/app/FUXA/server/_appdata -e TZ=${TZ} docker.io/frangoteam/fuxa:latest"
11261126
# Telegraf for metrics collection and syslog aggregation
1127-
SERVICE_CMDS[telegraf]="podman run -d --name telegraf --restart unless-stopped --network ${NETWORK_NAME} -p 514:514/udp -e INFLUX_TOKEN=${INFLUXDB_ADMIN_TOKEN} -e INFLUX_ORG=${INFLUXDB_ORG} -e INFLUX_BUCKET=${INFLUXDB_BUCKET} -e TZ=${TZ} -v ./docker/telegraf/telegraf.conf:/etc/telegraf/telegraf.conf:Z docker.io/telegraf:latest"
1127+
SERVICE_CMDS[telegraf]="podman run -d --name telegraf --restart unless-stopped --network ${NETWORK_NAME} -p 514:514/udp -e INFLUX_TOKEN=${INFLUXDB_ADMIN_TOKEN} -e INFLUX_ORG=${INFLUXDB_ORG} -e INFLUX_BUCKET=${INFLUXDB_BUCKET} -e TZ=${TZ} -v ./telegraf/telegraf.conf:/etc/telegraf/telegraf.conf:Z docker.io/telegraf:latest"
11281128
SERVICE_NAMES=(mosquitto influxdb zigbee2mqtt frigate grafana nodered nginx doubletake compreface go2rtc fuxa telegraf)
11291129

11301130
# --- Manual Start Function ---
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@
22
# This configuration collects syslog data from network devices and sends it to InfluxDB
33
#
44
# IMPORTANT: This file must be mounted into the Telegraf container at /etc/telegraf/telegraf.conf
5-
# Example volume mount in compose.yml:
5+
# Example volume mount:
66
# volumes:
7-
# - ./docker/telegraf/telegraf.conf:/etc/telegraf/telegraf.conf:Z
7+
# - ./telegraf/telegraf.conf:/etc/telegraf/telegraf.conf:Z
88
#
99
# The :Z label is required for SELinux systems (like openSUSE Leap Micro) to set proper context.
1010

0 commit comments

Comments
 (0)