Hi everyone. Is there a way to track the REST API ...
# azure
c
Hi everyone. Is there a way to track the REST API calls which Pulumi sends to Azure? pulumi up -v=9 contains a lot of details, but not the API calls as far as I can see. Same applies when using --tracing.
t
-v=9 should contain the bodies of requests and responses for the native provider. We use it all the time for debugging. Maybe try the full set of arguments
pulumi up --yes --skip-preview -v=9 --debug --logflow
c
Thanks Mikhail, appreciate your fast response! As far as I can see, --logflow adds the details about the HTTP request urls. That was not clear to me.
t
Right. I’m not sure why we don’t do this by default. May be worth an issue.