mirror of
https://github.com/PostHog/posthog.git
synced 2024-11-21 21:49:51 +01:00
bc553938e3
* chore(batch-exports): add some Prometheus metrics for batch exports * make metrics port an option/setting * get destination from workflow_type
10 lines
130 B
Bash
Executable File
10 lines
130 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -e
|
|
|
|
trap "trap - SIGTERM && kill -- -$$" SIGINT SIGTERM EXIT
|
|
|
|
python3 manage.py start_temporal_worker "$@"
|
|
|
|
wait
|