APM Aidbox
Learn how to implement APM in Aidbox via Kibana
After you've successfully installed APM URL, you can see APM in main Kibana menu and in services submenu you can see Aidbox. Refer to below screenshots:
Starting with version 2206 and later, Aidbox does not contain an APM agent inside the container. You can include it in your own container's Aidbox build.
Dockerfile
FROM healthsamurai/aidboxone:<VERSION>
COPY --from=docker.elastic.co/observability/apm-agent-java:latest /usr/agent/elastic-apm-agent.jar /app/elastic-apm-agent.jar
After that, you can run Aidbox with APM as previously with
JAVA_OPTS
env variableJAVA_OPTS='-javaagent:/app/elastic-apm-agent.jar
-Delastic.apm.service_name=aidbox
-Delastic.apm.server_url=http://localhost:8200
-Delastic.apm.secret_token=<token>'



Last modified 2mo ago