You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@airflow.apache.org by GitBox <gi...@apache.org> on 2021/08/05 23:37:18 UTC

[GitHub] [airflow] mik-laj commented on issue #17443: No link for kibana when using frontend configuration

mik-laj commented on issue #17443:
URL: https://github.com/apache/airflow/issues/17443#issuecomment-893891221


   To enable external links for logs, you need to use a task handler that supports external links. In this case, you should use https://github.com/apache/airflow/blob/866a601b76e219b3c043e1dbbc8fb22300866351/airflow/providers/elasticsearch/log/es_task_handler.py#L44
   
   It looks like you haven't remote logging turned on, so this task handler is not used.
   ```
   [logging]
   remote_logging = True
   ```
   To check the current task handler, you can use ``airflow info`` command:
   ```
   $ airflow info  | grep 'task_logging_handler'
   task_logging_handler   | airflow.utils.log.file_task_handler.FileTaskHandler
   ```
   For more details, see:
   http://airflow.apache.org/docs/apache-airflow-providers-elasticsearch/stable/logging.html


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscribe@airflow.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org