Hi Nathan,
Thanks for sharing the details. Based on your provided trace configuration, the trace job is finite but does not have any defined saveTrigger.
As a result, the trace will show as running, but it will never finalize a measurement, because there is no trigger condition that tells AX when to persist the captured samples.
Because no measurement is finalized, nothing appears under SAVED RESULTS, and the visualization dialog remains in a loading state.
If you have a specific condition you want to trigger on, try adding a saveTrigger to your configuration.
saveTrigger documentation: https://docs.industrial-operations-x.siemens.cloud/r/en-us/ax/tracing-docs/3.3.1/configuration-file/save-trigger
Example snippet:
name: MyTrace jobType: finite sampleCount: 10 signals: - "sr.Q0" checkPoint: task: MyConfiguration.Main saveTrigger: preSamples: 10 condition: "sr.Q0 = true" memoryCard: saveCount: 10 overwriteWhenFull: true
Let us know if this resolves your issue. Thank you!