devopsclearml

How can I view log in ElasticSearch In Clearml?


I followed the guide at https://clear.ml/docs/latest/docs/deploying_clearml/clearml_server_linux_mac/ to deploy local server

I have implemented successfully

enter image description here

Now, I want to check log elastic search and redis. How can I do that.

I can check log elasticsearch by docker logs container-id, but I think it's complicated for operating.

How can I do that.

Example, check log elastic search on kibana, I want something like that

enter image description here


Solution

  • You can simply add kibana to the docker-compose deployment and set it up to connect to the elasticsearch instance. See the official Elastic Kibana installation using docker here - either start it manually or add a service to the docker-compose.yml file and set the elasticsearch port as instructed (it's the default 9200). Also, make sure to use the correct Kibana docker image that will match the elasticsearch version already used in the docker-compose file.

    Disclaimer: I am a member of the ClearML team