Browse through the following topics to seamlessly export your OpenTelemetry data to APM Insight in Applications Manager:





Generally, the OTLP exporter endpoint and headers in OpenTelemetry SDKs can be set via the OTEL_EXPORTER_OTLP_ENDPOINT and OTEL_EXPORTER_OTLP_HEADERS environment variables, respectively.
export OTEL_EXPORTER_OTLP_ENDPOINT="http://[APM-OTELCOLLECTOR-HOST-NAME]:4318"
export OTEL_EXPORTER_OTLP_HEADERS="api-key=[APM-LICENSE-KEY]"If you are using an OpenTelemetry collector, follow the below syntax:
exporters:
otlphttp:
endpoint: "http://[APM-OTELCOLLECTOR-HOST-NAME]:4318"
tls:
insecure: true
headers:
"api-key": "[APM-LICENSE-KEY]"[APM-LICENSE-KEY] → Applications Manager license key, which is to be added in the OpenTelemetry Agent configuration (otelcol-config.yaml) file.[APM-OTELCOLLECTOR-HOST-NAME] → Hostname or IP address of the Applications Manager OpenTelemetry Collectorwget -O InstallOtelCollector.zip https://www.manageengine.com/products/applications_manager/54974026/InstallOtelCollector.zip && unzip InstallOtelCollector.zip
export ME_SERVER_ENDPOINT="https://[HOST-NAME]:[SSL-PORT]" sudo -E sh InstallOtelCollector.sh[HOST-NAME] → Host of Applications Manager[SSL-PORT] → SSL Port of Applications ManagerGenerally, the OTLP exporter endpoint and headers in OpenTelemetry SDKs can be set via the OTEL_EXPORTER_OTLP_ENDPOINT and OTEL_EXPORTER_OTLP_HEADERS environment variables, respectively.
export OTEL_EXPORTER_OTLP_ENDPOINT="http://[APM-OTELCOLLECTOR-HOST-NAME]:4318"
export OTEL_EXPORTER_OTLP_HEADERS="api-key=[APM-LICENSE-KEY]"If you are using an OpenTelemetry collector, follow the below syntax:
exporters:
otlphttp:
endpoint: "http://[APM-OTELCOLLECTOR-HOST-NAME]:4318"
tls:
insecure: true
headers:
"api-key": "[APM-LICENSE-KEY]"[APM-LICENSE-KEY] → Applications Manager license key, which is to be added in the OpenTelemetry Agent configuration (otelcol-config.yaml) file.[APM-OTELCOLLECTOR-HOST-NAME] → Hostname or IP address of the Applications Manager OpenTelemetry CollectorIt allows us to track crucial metrics such as response times, resource utilization, error rates, and transaction performance. The real-time monitoring alerts promptly notify us of any issues or anomalies, enabling us to take immediate action.
Reviewer Role: Research and Development