Does Naubot has export option in Job Result page? #6092
Answered
by
joewesch
alicechiou728
asked this question in
Q&A
-
Does Naubot has export option in Job Result page? |
Beta Was this translation helpful? Give feedback.
Answered by
joewesch
Aug 12, 2024
Replies: 2 comments 3 replies
-
You can export the logs from a given JobResult from its detail view: |
Beta Was this translation helpful? Give feedback.
1 reply
-
Depending on what you are trying to extract, you could use a graphql query. Here is a query to get you started that gets all of the log messages for a particular job model: query {
job_results(job_model: "Your Job Name") {
job_log_entries {
message
}
}
} |
Beta Was this translation helpful? Give feedback.
2 replies
Answer selected by
alicechiou728
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Depending on what you are trying to extract, you could use a graphql query. Here is a query to get you started that gets all of the log messages for a particular job model: