I have a simple Forge app for Jira Cloud that calls the /rest/api/3/project endpoint to get back the project data for my Jira site. I would like to view this data in Tableau, using their OData connector. My plan is to insert the project data I’ve got into an external database (currently running on localhost). Then, create an odata API (using the simple-odata-server package) which Tableau will then use to retrieve the data.
Before I go further I wanted to check if there is a better way to do this, because it seems like a lot of work and I don’t think this would scale very well. I think I need my own server/database because Tableau requires an OData URL and I can’t get this from Jira. So I’m not sure if there is away around this duplicate storage of data but I would love to be wrong. Any comments/suggestions are greatly appreciated!