forked from Narcissus/docker-multi-platform-probe
Compare commits
9 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
dfdc14a586 | ||
|
|
8bb3d9b08b | ||
|
|
19ee055f91 | ||
|
|
07882452e1 | ||
|
|
8a15bb8d94 | ||
|
|
cb62a9faa3 | ||
|
|
08ee7e1398 | ||
|
|
29af404991 | ||
|
|
fd79b23057 |
30
.github/workflows/dockerhub-description.yml
vendored
Normal file
30
.github/workflows/dockerhub-description.yml
vendored
Normal file
@@ -0,0 +1,30 @@
|
|||||||
|
# https://github.com/peter-evans/dockerhub-description
|
||||||
|
|
||||||
|
name: Update Docker Hub Description
|
||||||
|
|
||||||
|
on:
|
||||||
|
push:
|
||||||
|
branches:
|
||||||
|
- main
|
||||||
|
paths:
|
||||||
|
- README.md
|
||||||
|
- .github/workflows/dockerhub-description.yml
|
||||||
|
|
||||||
|
env:
|
||||||
|
IMAGE_NAME: paessler/multi-platform-probe
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
update-description:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- name: Check out the repository
|
||||||
|
uses: actions/checkout@v4
|
||||||
|
|
||||||
|
- name: Docker Hub Description
|
||||||
|
uses: peter-evans/dockerhub-description@v4
|
||||||
|
with:
|
||||||
|
username: ${{ secrets.DOCKER_USERNAME }}
|
||||||
|
password: ${{ secrets.DOCKER_PUSH_TOKEN }}
|
||||||
|
repository: ${{ env.IMAGE_NAME }}
|
||||||
|
short-description: ${{ github.event.repository.description }}
|
||||||
|
enable-url-completion: true
|
||||||
@@ -57,4 +57,5 @@ VOLUME [ "/config", "/opt/paessler/share/scripts" ]
|
|||||||
# set WORKDIR to a sane default
|
# set WORKDIR to a sane default
|
||||||
WORKDIR /
|
WORKDIR /
|
||||||
|
|
||||||
ENTRYPOINT [ "/run-prtgmpprobe.sh", "service-run" ]
|
ENTRYPOINT [ "/run-prtgmpprobe.sh" ]
|
||||||
|
CMD [ "service-run" ]
|
||||||
16
README.md
16
README.md
@@ -66,12 +66,26 @@ nats:
|
|||||||
```
|
```
|
||||||
|
|
||||||
You must put the configuration file into the `/config/config.yml` volume of the docker container.
|
You must put the configuration file into the `/config/config.yml` volume of the docker container.
|
||||||
|
For all available configuration options, see [config.full-example.yml](./config/config.full-example.yml).
|
||||||
|
|
||||||
ℹ️ The container also used the `/config` volume to store the [multi-platform probe's GID][GID] and therefore cannot be set as read-only (`:ro`) unless you specify the GID as an environment variable.
|
ℹ️ If necessary you can put your custom [CA certificate][TLS] into `/config/certs` and specify it in the `/config/config.yml` as well:
|
||||||
|
|
||||||
|
```yaml
|
||||||
|
access_key: YOUR_PROBE_ACCESS_KEY
|
||||||
|
nats:
|
||||||
|
url: tls://localhost:23561
|
||||||
|
authentication:
|
||||||
|
user: USER
|
||||||
|
password: PASSWORD
|
||||||
|
server_ca: /config/certs/ca.crt
|
||||||
|
```
|
||||||
|
|
||||||
|
ℹ️ The container also used the `/config` volume to store the [multi-platform probe's GID][GID] and therefore cannot be set as read-only (`:ro`) unless you specify the [multi-platform probe's GID][GID] as an environment variable.
|
||||||
|
|
||||||
You can also use the `/opt/paessler/share/scripts` volume for the scripts of the [Script v2][prtgmanual:scriptv2] sensor.
|
You can also use the `/opt/paessler/share/scripts` volume for the scripts of the [Script v2][prtgmanual:scriptv2] sensor.
|
||||||
|
|
||||||
[prtgmanual:scriptv2]: https://www.paessler.com/manuals/prtg/script_v2_sensor
|
[prtgmanual:scriptv2]: https://www.paessler.com/manuals/prtg/script_v2_sensor
|
||||||
|
[TLS]: https://kb.paessler.com/en/topic/91877-how-can-i-create-a-tls-certificate
|
||||||
[GID]: https://www.paessler.com/manuals/prtg/prtg_administration_tool_on_remote_probe_systems#:~:text=GID
|
[GID]: https://www.paessler.com/manuals/prtg/prtg_administration_tool_on_remote_probe_systems#:~:text=GID
|
||||||
|
|
||||||
```sh
|
```sh
|
||||||
|
|||||||
@@ -18,7 +18,7 @@ do
|
|||||||
;;
|
;;
|
||||||
esac
|
esac
|
||||||
done
|
done
|
||||||
if [ ! $_passthrough -eq 0 ] ; then
|
if [ $_passthrough -ne 0 ] ; then
|
||||||
exec gosu paessler_mpprobe:paessler_mpprobe \
|
exec gosu paessler_mpprobe:paessler_mpprobe \
|
||||||
${PRTGMPPROBE__BINARY} \
|
${PRTGMPPROBE__BINARY} \
|
||||||
"$@"
|
"$@"
|
||||||
@@ -42,19 +42,29 @@ done
|
|||||||
|
|
||||||
# Handling Env vars
|
# Handling Env vars
|
||||||
|
|
||||||
# Get/Generate a probe id from PRTGMPPROBE__ID_FILE or from PRTGMPPROBE__ID
|
if [ ! -f "${PRTGMPPROBE__CONFIG_FILE}" ] ; then
|
||||||
if [ -z "${PRTGMPPROBE__ID-}" ] ; then
|
error "Configuration file ${PRTGMPPROBE__CONFIG_FILE} does not exist. Please create one."
|
||||||
if [ ! -f "${PRTGMPPROBE__ID_FILE}" ] ; then
|
echo >&2 " "
|
||||||
cat /proc/sys/kernel/random/uuid > ${PRTGMPPROBE__ID_FILE} || (
|
echo >&2 "Example:"
|
||||||
error "Unable to write to ${PRTGMPPROBE__ID_FILE}. Please either set PRTGMPPROBE__ID in the container environment or make sure the location ${PRTGMPPROBE__ID_FILE} is writable."
|
${PRTGMPPROBE__BINARY} example-config >&2
|
||||||
echo >&2 " "
|
exit 1
|
||||||
echo >&2 "Example:"
|
fi
|
||||||
echo >&2 "PRTGMPPROBE__ID=$(cat /proc/sys/kernel/random/uuid)"
|
|
||||||
exit 1
|
# Get/Generate a probe id from PRTGMPPROBE__ID_FILE or from PRTGMPPROBE__ID if not set in PRTGMPPROBE__CONFIG_FILE
|
||||||
)
|
if ! grep -q "^id:" "${PRTGMPPROBE__CONFIG_FILE}" ; then
|
||||||
|
if [ -z "${PRTGMPPROBE__ID-}" ] ; then
|
||||||
|
if [ ! -f "${PRTGMPPROBE__ID_FILE}" ] ; then
|
||||||
|
cat /proc/sys/kernel/random/uuid > ${PRTGMPPROBE__ID_FILE} || (
|
||||||
|
error "Unable to write to ${PRTGMPPROBE__ID_FILE}. Please either set PRTGMPPROBE__ID in the container environment, 'id:' in the ${PRTGMPPROBE__CONFIG_FILE} or make sure the location ${PRTGMPPROBE__ID_FILE} is writable."
|
||||||
|
echo >&2 " "
|
||||||
|
echo >&2 "Example:"
|
||||||
|
echo >&2 "PRTGMPPROBE__ID=$(cat /proc/sys/kernel/random/uuid)"
|
||||||
|
exit 1
|
||||||
|
)
|
||||||
|
fi
|
||||||
|
PRTGMPPROBE__ID=$(cat ${PRTGMPPROBE__ID_FILE})
|
||||||
|
export PRTGMPPROBE__ID
|
||||||
fi
|
fi
|
||||||
PRTGMPPROBE__ID=$(cat ${PRTGMPPROBE__ID_FILE})
|
|
||||||
export PRTGMPPROBE__ID
|
|
||||||
fi
|
fi
|
||||||
|
|
||||||
export PRTGMPPROBE__NAME=${PRTGMPPROBE__NAME:-"multi-platform-probe@$(hostname)"}
|
export PRTGMPPROBE__NAME=${PRTGMPPROBE__NAME:-"multi-platform-probe@$(hostname)"}
|
||||||
@@ -70,14 +80,6 @@ export PRTGMPPROBE__LOGGING__CONSOLE__WITHOUT_TIME=${PRTGMPPROBE__LOGGING__CONSO
|
|||||||
export PRTGMPPROBE__LOGGING__JOURNALD__LEVEL=${PRTGMPPROBE__LOGGING__JOURNALD__FIELD_PREFIX:-"off"}
|
export PRTGMPPROBE__LOGGING__JOURNALD__LEVEL=${PRTGMPPROBE__LOGGING__JOURNALD__FIELD_PREFIX:-"off"}
|
||||||
export PRTGMPPROBE__LOGGING__JOURNALD__FIELD_PREFIX=${PRTGMPPROBE__LOGGING__JOURNALD__FIELD_PREFIX:-"PRTGMPPROBE"}
|
export PRTGMPPROBE__LOGGING__JOURNALD__FIELD_PREFIX=${PRTGMPPROBE__LOGGING__JOURNALD__FIELD_PREFIX:-"PRTGMPPROBE"}
|
||||||
|
|
||||||
if [ ! -f "${PRTGMPPROBE__CONFIG_FILE}" ] ; then
|
|
||||||
error "Configuration file ${PRTGMPPROBE__CONFIG_FILE} does not exist. Please create one."
|
|
||||||
echo >&2 " "
|
|
||||||
echo >&2 "Example:"
|
|
||||||
${PRTGMPPROBE__BINARY} example-config >&2
|
|
||||||
exit 1
|
|
||||||
fi
|
|
||||||
|
|
||||||
env | grep PRTGMPPROBE__ >&2
|
env | grep PRTGMPPROBE__ >&2
|
||||||
|
|
||||||
# add capabilities for icmp to the probe executable
|
# add capabilities for icmp to the probe executable
|
||||||
|
|||||||
Reference in New Issue
Block a user