What is the raw logs sync frequency? How often are...
# dagster-plus
d
What is the raw logs sync frequency? How often are they being refreshed in the UI? Can it be decreased (the OSS deployment has such configuration settings)? It seems like they just never load until the step is over
p
This can also be configured, using your `dagster.yaml`:
Copy code
compute_logs:
    module: dagster_cloud
    class: CloudComputeLogManager
    config:
        upload_interval: 10
❤️ 1
I’ll add a docs section… that was an oversight
d
Oh makes sense, thank you
I'm sorry but where do I use this file? I only have the kubernetes agent values and the settings in dagster cloud
p
Are you configuring this via helm?
In helm, I believe you can set the following values:
Copy code
computeLogs:
  enabled: true
  custom:
    module: dagster_cloud
    class: CloudComputeLogManager
    config:
      upload_interval: 10
d
Ok great, it works
🎉 1