mammoth-mouse-1111
08/22/2025, 5:19 PMtemplateUri
I see no logging links for those tasks on the UI at all despite regular flyte tasks having logging links.
How can I configure my deployment to display logging links for flyte tasks that use the ray plugin?jolly-florist-66728
08/22/2025, 5:19 PMjolly-florist-66728
08/22/2025, 5:21 PMtask_logs.plugins.logs.templates
in your FlytePropeller config, using template variables like {{ .podName }}
and {{ .namespace }}
. Make sure your configuration is applied to all task types, and check that your Flyte version includes the recent Ray log link enhancements. If you are still not seeing links, it could be due to a missing or outdated plugin configuration, or a Flyte version prior to the relevant fixes. Review the logging link configuration guide and the v1.10.6 changelog for more information.
Would you like more detail or example configuration snippets?
Sources:
- logging link configuration guide
- v1.10.6 changelog 👍 0 button 👎 0 button 💡 Hint: Mention @runllm in the thread for followups.mammoth-mouse-1111
08/22/2025, 5:27 PMtask_logs.plugins.logs.templates
I don't see links being rendered only for ray tasks. Do I need to set up any specific configuration for ray tasks to have logging links?
I don't want to display a link to the dashboard as it's redundant given grafana + loki.jolly-florist-66728
08/22/2025, 5:27 PMray.logs
) for log links to show up in the UI. The general task_logs.plugins.logs.templates
setting doesn't apply to Ray tasks. You can skip the dashboard link if you don't need it. Make sure to add a logs
section under the Ray plugin config for your Grafana + Loki setup.jolly-florist-66728
08/22/2025, 5:30 PMtask_logs.plugins.logs.templates
configuration is not sufficient because Ray jobs may use different pod naming conventions or phases, and log links might only be rendered if the plugin explicitly emits them during certain task phases. Though I'm not entirely certain, it might be that you do not need to configure a dashboard link, but you should ensure your Flyte version is recent (≥1.10.6) since Ray log link support was improved then. Also, verify that your log link template uses the correct variables (e.g., {{ .podName }}
, {{ .namespace }}
) and that your FlytePropeller config is applied cluster-wide.
If you are still not seeing log links for Ray tasks, it could be due to a limitation or bug in the Ray plugin or Flyte version you are using. There is no explicit mention in the documentation that Ray tasks require a different log link configuration, but recent changelogs and issues suggest improvements have been made. You may want to check for any Ray-specific log link settings or upgrade to the latest Flyte and plugin versions. If the problem persists, it might be worth opening an issue with your configuration and Flyte version details.
Would you like more detail on how to check your configuration or Flyte version?
Sources:
- https://github.com/flyteorg/flyte/pull/5066
- https://github.com/flyteorg/flyte/issues/4926
Note: I wasn’t able to find highly relevant data sources, but above are a few potentially relevant links. 👍 0 button 👎 0 button 💡 Hint: Mention @runllm in the thread for followups.