Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to check your account's Google Apps Script quotas

Here is the link about the GAS quotas:

https://developers.google.com/apps-script/guides/services/quotas#current_quotas

How can I check if I am getting close to certain quotas. For instance, how can I check, how many UrlFetchApp calls I have left for that day. Or how much Script time do I still left for that day.

I need to use this data to make decisions whether to run today or run tomorrow.

I need to check and verify quotas programatically only. Can anyone help me here?

like image 816
Rushi Avatar asked Jun 12 '16 14:06

Rushi


1 Answers

its not currently possible. you need to tally those stats manually, maybe storing on script properties.

like image 54
Zig Mandel Avatar answered Oct 16 '22 11:10

Zig Mandel