straight-businessperson-54649
03/07/2025, 12:57 AMtask_logs
section of helm values be configured to support custom uri's for dask logs (for the dask plugin)jolly-florist-66728
03/07/2025, 12:57 AMtask_logs
section in Helm values for custom URIs for Dask logs, you need to specify the log templates using the templating parameters available for Flyte. According to the Flyte documentation, you can use parameters like {{ .podName }}
, {{ .namespace }}
, and {{ .containerName }}
to create a templated URI for your logs.
Here's an example configuration:
task_logs:
plugins:
logs:
templates:
- displayName: "Dask Logs"
templateUris:
- "https://your-log-service.com/logs?pod={{ .podName }}&namespace={{ .namespace }}&container={{ .containerName }}"
This configuration will generate log links using the specified template, allowing you to view logs for Dask tasks in your custom log service. Would you like more detail on any specific part of this configuration?
Sources:
- Configuring logging links in the UI 👍 0 button 👎 0 button 💡 Hint: Mention @runllm in the thread for followups.straight-businessperson-54649
03/07/2025, 12:59 AMstraight-businessperson-54649
03/07/2025, 1:00 AMjolly-florist-66728
03/07/2025, 1:00 AMClassDecorator
in flytekit
.
3. Log Link Visibility: Check if there are any new settings related to the visibility or lifecycle of log links. The Flyte documentation mentions controlling in which task phases log links are shown, which might affect their visibility.
Would you like more detailed guidance on any of these points?
Sources:
- Flyte documentation
- Flyte documentation 👍 0 button 👎 0 button 💡 Hint: Mention @runllm in the thread for followups.