RuiRomano / pbimonitor

MIT License
207 stars 76 forks source link

Deleted reports still showing #47

Closed JaimyPolhuis closed 4 months ago

JaimyPolhuis commented 5 months ago

First of all, really appreciate this solution. Overall it works well, but as soon as I delete a report, it will still show in the Power BI monitor report 2 weeks after (the refresh was done and all other things seem to show well). Does it take more time to let these reports disappear or might there be another reason?

FrankPreusker commented 4 months ago

Any kind of deletion (workspaces, reports, datasets, even tables, measures, etc) will only be visible with your next full refresh, but not with any of the incremental ones.

JaimyPolhuis commented 4 months ago

Okay, thanks for your reply @FrankPreusker! Do you maybe know if this full refresh can be made more frequent?

WillCisler commented 4 months ago

If you have deployed to Azure then there is a configuration variable for the days till full refresh. For a local run I would check the code for the configuration JSON file

WillCisler commented 4 months ago

Yes the local run uses a hard coded value in the JSON.

"FullScanAfterDays": "30", 
FrankPreusker commented 4 months ago

Yes, you can easily modify that in the config.json file. Mainly for the reason to catch deletions earlier we have set this to only seven days. image

WillCisler commented 4 months ago

Closing - thanks for the Question @JaimyPolhuis and the reply @FrankPreusker