is there a way to make the prefect logs in the ui ...
# prefect-community
r
is there a way to make the prefect logs in the ui display in ms or does this even log at this granularity?
j
Hi @Richard Hughes - not sure I understand your question - especially "display in ms" - can you explain what you mean by "ms"? Thanks!
r
Hi @Jenny, when we have multiple logs that occur in the same second, I am wondering how do I see down to the millisecond instead of second.
j
ohhh - that makes sense! Good question - We don't currently go beyond seconds in the UI but please make a ticket if it's something you'd like to see added.
You can see more granularity if you query logs through the API. e.g.
Copy code
query {
  flow_run (where: {id: {_eq:"xxxxxx"}}) {
    name
    logs {
      message
      updated
    }
  }
}
👍 1
r
@Jenny Where does this ticket go?
j
You should be able to open an issue here: https://github.com/PrefectHQ/ui/issues