# Integrate Charmed Magma Orchestrator to Elasticsearch ## Requirements - Elasticsearch instance supporting both `HTTP` and `HTTPS` requests - Connectivity between the Orchestrator and the Elasticsearch ## Integration ``````{tab-set} `````{tab-item} Integration upon deployment Create an `overlay.yaml` file that contains the following content: ```{code-block} yaml :caption: overlay.yaml applications: fluentd: options: domain: elasticsearch-url: orc8r-certifier: options: domain: orc8r-eventd: options: elasticsearch-url: orc8r-nginx: options: domain: tls-certificates-operator: options: generate-self-signed-certificates: true ca-common-name: rootca. ``` Deploy `Charmed Magma Orchestrator` as described in [Deploy Charmed Magma Orchestrator](deploy_charmed_magma_orchestrator.md) ````` `````{tab-item} Integration to a running Orchestrator instance Configure `elasticsearch-url` in the `fluentd` charm: ```{code-block} shell juju config fluentd elasticsearch-url= ``` Configure `elasticsearch-url` in the `orc8r-eventd` charm: ```{code-block} shell juju config orc8r-eventd elasticsearch-url= ``` Confirm changes by visiting `https://.nms.` and checking the `Events` chart of your network's dashboard. ````` ``````