mirror of
https://github.com/PostHog/posthog.git
synced 2024-11-21 21:49:51 +01:00
14 lines
447 B
Plaintext
14 lines
447 B
Plaintext
|
#!/bin/bash
|
||
|
set -e
|
||
|
|
||
|
# To ensure we are able to expose metrics from multiple processes, we need to
|
||
|
# provide a directory for `prometheus_client` to store a shared registry.
|
||
|
export PROMETHEUS_MULTIPROC_DIR=$(mktemp -d)
|
||
|
chmod -R 777 $PROMETHEUS_MULTIPROC_DIR
|
||
|
trap 'rm -rf "$PROMETHEUS_MULTIPROC_DIR"' EXIT
|
||
|
|
||
|
export PROMETHEUS_METRICS_EXPORT_PORT=8001
|
||
|
export STATSD_PORT=${STATSD_PORT:-8125}
|
||
|
|
||
|
exec /usr/local/bin/docker-entrypoint.sh unitd --no-daemon
|