Appearance
On-prem ARMS
Public self-host install guides (Helm, Docker Compose, and related bundles) are not published in these docs.
For on-premises or private ARMS deployments, contact:
Once you have an ARMS instance:
- Create an API key in the ARMS UI under Settings → API Keys (
/settings/api-keys). - Install the SDK:
bash
pip install --extra-index-url https://arms-packages.elsaifoundry.ai/root/elsai-arms/ elsai-arms==3.0.3- Point the SDK at the ingest API, not the collector:
python
import elsai_arms
elsai_arms.init(
otlp_endpoint="https://<arms-host>/api/ingest",
otlp_headers={"x-api-key": "<api-key>"},
)Collector ports 4317/4318 stay internal. The API forwards authenticated OTLP to the collector.
See ARMS destination and Quickstart.