John Joyce 29832e5385
feat(Product Analytics): Introducing In-App Analytics Beta (#2499)
Co-authored-by: Harshal Sheth <harshal@acryl.io>
Co-authored-by: Dexter Lee <dexter@acryl.io>
Co-authored-by: Gabe Lyons <itsgabelyons@gmail.com>
2021-05-11 15:41:42 -07:00

30 lines
673 B
Bash

# Server Port
PORT=9002
# Secret Key
DATAHUB_SECRET="YouKnowNothing"
# App version
DATAHUB_APP_VERSION="1.0"
# Play buffer size
DATAHUB_PLAY_MEM_BUFFER_SIZE="10MB"
# Piwik tracking configuration
DATAHUB_PIWIK_SITEID="94" # change_to_your_piwik_id
DATAHUB_PIWIK_URL="//piwik.corp.linkedin.com/piwik/"
# GMS configuration
DATAHUB_GMS_HOST=localhost
DATAHUB_GMS_PORT=8080
# Uncomment to disable analytics tracking
# DATAHUB_ANALYTICS_ENABLED=false
# Kafka Producer Configuration
KAFKA_BOOTSTRAP_SERVER=localhost:29092
DATAHUB_TRACKING_TOPIC=DataHubUsageEvent_v1
# Required Elastic Client Configuration (Analytics)
ELASTIC_CLIENT_HOST=localhost
ELASTIC_CLIENT_PORT=9200