Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 12 additions & 1 deletion charts/hdx-oss-v2/templates/configmaps/app-configmap.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,4 +19,15 @@ data:
USAGE_STATS_ENABLED: "{{ .Values.hyperdx.usageStatsEnabled | default true }}"
CRON_IN_APP_DISABLED: "{{ .Values.tasks.enabled | default false }}"
OPAMP_PORT: "{{ .Values.hyperdx.opampPort }}"
OTEL_EXPORTER_OTLP_ENDPOINT: "{{ tpl .Values.hyperdx.otelExporterEndpoint . }}"
{{- if .Values.hyperdx.otel.globalEndpoint }}
OTEL_EXPORTER_OTLP_ENDPOINT: "{{ tpl .Values.hyperdx.otel.globalEndpoint . }}"
{{- end }}
{{- if .Values.hyperdx.otel.logsEndpoint }}
OTEL_EXPORTER_OTLP_LOGS_ENDPOINT: "{{ tpl .Values.hyperdx.otel.logsEndpoint . }}"
{{- end }}
{{- if .Values.hyperdx.otel.metricsEndpoint }}
OTEL_EXPORTER_OTLP_METRICS_ENDPOINT: "{{ tpl .Values.hyperdx.otel.metricsEndpoint . }}"
{{- end }}
{{- if .Values.hyperdx.otel.tracesEndpoint }}
OTEL_EXPORTER_OTLP_TRACES_ENDPOINT: "{{ tpl .Values.hyperdx.otel.tracesEndpoint . }}"
{{- end }}
15 changes: 11 additions & 4 deletions charts/hdx-oss-v2/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,15 @@ hyperdx:
appUrl: "http://localhost"
logLevel: "info"
usageStatsEnabled: true
# Endpoint to send hyperdx logs/traces/metrics to.Defaults to the chart's otel collector endpoint.
otelExporterEndpoint: http://{{ include "hdx-oss.fullname" . }}-otel-collector:{{ .Values.otel.httpPort }}
otel:
# Endpoint to send hyperdx logs/traces/metrics to.Defaults to the chart's otel collector endpoint.
globalEndpoint: http://{{ include "hdx-oss.fullname" . }}-otel-collector:{{ .Values.otel.httpPort }}
# -- Endpoint URL for log data only
logsEndpoint: ""
# -- Endpoint URL for metric data only
metricsEndpoint: ""
# -- Endpoint URL for trace data only
tracesEndpoint: ""
# Clickhouse database to send logs/traces/metrics to. Defaults to "default"
clickhouseDatabase: "default"
annotations: {}
Expand Down Expand Up @@ -137,7 +144,7 @@ hyperdx:
"metricSourceId": "Metrics"
}
]

# See https://github.com/hyperdxio/hyperdx/blob/v2/packages/api/docs/auto_provision/AUTO_PROVISION.md
# for detailed configuration options

Expand Down Expand Up @@ -199,7 +206,7 @@ otel:
# Leave empty if you want to use the chart's Clickhouse service.
# Example: clickhouseEndpoint: "tcp://custom-clickhouse-service:9000"
clickhouseEndpoint:
# Clickhouse Prometheus endpoint - defaults to chart's Clickhouse prometheus service. Customize if you want to use a different Clickhouse prometheus service.
# Clickhouse Prometheus endpoint - defaults to chart's Clickhouse prometheus service. Customize if you want to use a different Clickhouse prometheus service.
# Leave empty if prometheus is disabled.
# Example: clickhousePrometheusEndpoint: "http://custom-clickhouse-service:9363"
clickhousePrometheusEndpoint:
Expand Down
Loading