We are celebrating the 10-year anniversary of the Alteryx Community! Learn more and join in on the fun here.
Start Free Trial

Alteryx Server Discussions

Find answers, ask questions, and share expertise about Alteryx Server.

Cannot see workflow results for a workflow in shared collection - if run manually?

Hamder83
11 - Bolide

Hi 

We are 2 colluges having a shared collection, in this collection we have multiple workflows.

We are assigned to the collection as a team, with admin rights.

All workflows are added to the collection and scheduled within this collection.


I cannot see workflow results, if scheduled in collection by my parner. And he cannot see workflow results of manual runs by me?

Is there any good workaround for this?


 

 

5 REPLIES 5
gawa
16 - Nebula
16 - Nebula

Here is the summary of visibility of Job results. 
Manual Run: Invisible to others

API Run: Invisible to Others

Schedule Run: Visible only when the scheduler is shared in the Collection. Otherwise, invisible.

abacon
12 - Quasar

@Hamder83 Good workarounds to this listed below:

1. Pull all job results on the server using the Alteryx Server API functionality, this allows the user to pull all job logs and see results. I found this still restricts some workflows but it does pull most.

https://help.alteryx.com/current/en/designer/tools/developer/server-api-tool.html

2. Pull from the backend MongoDB to get all results from the server and use this information to get the job logs. This pulls everything in the system but the job log is stored as a BLOB file, meaning you will have to parse it out.

https://help.alteryx.com/current/en/server/configure/database-management/mongodb-management/mongodb-...

 

A good resource on how to connect to the MongoDB backend is this link below:

https://help.alteryx.com/current/fr/designer/workflows/enterprise-utilities/server-usage-report.html

 

I recently set up a Power BI dashboard that displays the Alteryx Server information to ensure non-owners can see workflow results if need be.

 

Bacon

Hamder83
11 - Bolide

Is it possible to share a studio or something to gain visibility? 

If I execute a job using api the type is manual, which means my colleague cannot see the reulst of that or any chained flows using one api call into the next?

 

gawa
16 - Nebula
16 - Nebula

Even if sharing a studio(subscription), manual run Job results are not visible but shared schedule results are visible.

Job results by manual run is very private. Only who can access to backend database(Mongo DB) is able to see all results, as mentioned by @abacon .

Please note that even the Server admin(Curator) do not always have this ability since it involves direct access to Server console level, that is usually IT admins in organization.

abacon
12 - Quasar

@Hamder83 Best option would be to tap into the MongoDB and get the results. If you are interested, I can shoot over the tables I used once you get the connections setup.

 

Bacon