Background activity monitor

Options

I have some APIs that run for an extended duration, like 5-10 mins. Is there a way to see which APIs are currently running?

Answers

  • Michael Udinski
    Michael Udinski Administrator

    ADMIN

    Options

    Good question! There is not a way to see which APIs are currently in the middle of running - this is possible in background tasks, however, not for APIs at the moment.

  • Ray Deck
    Ray Deck Trusted Xano Expert ✭✭✭
    Options

    I would make table of api runs for these slow guys. Add a record that it is starting with a status of “running” as the first line in the function stack. On the last line, do an edit record to set its status to complete. That way you can query that table to find out which runs have a status of “running” to answer your question.