Skip to main content
The 2024 Developer Survey results are live! See the results
added 48 characters in body
Source Link
Wicket
  • 36.8k
  • 9
  • 74
  • 180

Each call to the Google Apps Script web app is handled by an independent execution.

An independent execution handles each call to Google Apps Script server-side functions using google.script.run.

Above, I'm using independent for emphasis purposes. From a language economy perspective, execution should be enough.

All Google Apps Script executions are logged in the Google Apps Script's project execution log, which can be seen by anyone with access to the Google Apps Script project and the related Google Cloud Platform project.

How organization admins might have access to the execution logs depends on several factors, including but not limited to the Google Workspace edition used by the organization.

Note:

If you are planning a web app, please be aware that there are limits to the number of simultaneous executions per user and per script. For details, see https://developers.google.com/apps-script/quotas.


Resources

Resources that mention stuff that might help to understand what is execution in Google Apps Scripts

  • The Apps Script Dashboard

    Extracts from the above link:

    Executions. The number of times a project has been "run" or executed. See Execution types for more information about how a project can be run.

    ...

    Manage executions

    ...

    The Type column shows what initiated the execution. Values include:

    • Add On. The execution originated from an add-on.
    • Execution API. The execution originated from an invocation of the Apps Script API.
    • Time Driven. The execution was caused by a time event.
    • Trigger. The execution originated from a trigger source.
    • Webapp. The execution originated from a deployed web app.
    • Editor. The execution originated from the Apps Script editor.
  • Logging From the above link:

    A basic approach to logging in Apps Script is to use the built-in execution log. To view these logs, at the top of the editor, click Execution log. When you run a function or use the debugger, the logs stream in real time.

  • Executing Apps Script Functions

Related

Each call to the Google Apps Script web app is handled by an independent execution.

An independent execution handles each call to Google Apps Script server-side functions using google.script.run.

Above, I'm using independent for emphasis purposes. From a language economy perspective, execution should be enough.

All Google Apps Script executions are logged in the Google Apps Script's project execution log, which can be seen by anyone with access to the Google Apps Script project and the related Google Cloud Platform project.

How organization admins might have access to the execution logs depends on several factors, including but not limited to the Google Workspace edition used by the organization.

Note:

If you are planning a web app, please be aware that there are limits to the number of simultaneous executions per user and per script. For details, see https://developers.google.com/apps-script/quotas.


Resources

Resources that mention stuff that might help to understand what is execution in Google Apps Scripts

  • The Apps Script Dashboard

    Extracts from the above link:

    Executions. The number of times a project has been "run" or executed. See Execution types for more information about how a project can be run.

    ...

    Manage executions

    ...

    The Type column shows what initiated the execution. Values include:

    • Add On. The execution originated from an add-on.
    • Execution API. The execution originated from an invocation of the Apps Script API.
    • Time Driven. The execution was caused by a time event.
    • Trigger. The execution originated from a trigger source.
    • Webapp. The execution originated from a deployed web app.
    • Editor. The execution originated from the Apps Script editor.
  • Logging From the above link:

    A basic approach to logging in Apps Script is to use the built-in execution log. To view these logs, at the top of the editor, click Execution log. When you run a function or use the debugger, the logs stream in real time.

  • Executing Apps Script Functions

Related

Each call to the Google Apps Script web app is handled by an independent execution.

An independent execution handles each call to Google Apps Script server-side functions using google.script.run.

Above, I'm using independent for emphasis purposes. From a language economy perspective, execution should be enough.

All Google Apps Script executions are logged in the Google Apps Script's project execution log, which can be seen by anyone with access to the Google Apps Script project and the related Google Cloud Platform project.

How organization admins might have access to the execution logs depends on several factors, including but not limited to the Google Workspace edition used by the organization.

Note:

If you are planning a web app, please be aware that there are limits to the number of simultaneous executions per user and per script. For details, see https://developers.google.com/apps-script/quotas.


Resources

Resources that mention stuff that might help to understand what is execution in Google Apps Scripts

  • The Apps Script Dashboard

    Extracts from the above link:

    Executions. The number of times a project has been "run" or executed. See Execution types for more information about how a project can be run.

    ...

    Manage executions

    ...

    The Type column shows what initiated the execution. Values include:

    • Add On. The execution originated from an add-on.
    • Execution API. The execution originated from an invocation of the Apps Script API.
    • Time Driven. The execution was caused by a time event.
    • Trigger. The execution originated from a trigger source.
    • Webapp. The execution originated from a deployed web app.
    • Editor. The execution originated from the Apps Script editor.
  • Logging From the above link:

    A basic approach to logging in Apps Script is to use the built-in execution log. To view these logs, at the top of the editor, click Execution log. When you run a function or use the debugger, the logs stream in real time.

  • Executing Apps Script Functions

Related

added 220 characters in body
Source Link
Wicket
  • 36.8k
  • 9
  • 74
  • 180

Each call to the Google Apps Script web app is handled by a separate executionan independent execution.

A separate executionAn independent execution handles each call to Google Apps Script server-side functions using google.script.run.

Above, I'm using independent for emphasis purposes. From a language economy perspective, execution should be enough.

All executionsGoogle Apps Script executions are logged in the Google Apps Script's projectproject execution log, which can be seen by anyone with access to the Google Apps Script project and the related Google Cloud Platform project.

How organization admins might have access to the execution logs depends on several factors, including but not limited to the Google Workspace edition used by the organization.

Note:

If you are planning a web app, please be aware that there are limits to the number of simultaneous executions per user and per script. For details, see https://developers.google.com/apps-script/quotas.


Resources

Resources that mention stuff that might help to understand what is execution in Google Apps Scripts

  • The Apps Script Dashboard

    Extracts from the above link:

    Executions. The number of times a project has been "run" or executed. See Execution types for more information about how a project can be run.

    ...

    Manage executions

    ...

    The Type column shows what initiated the execution. Values include:

    • Add On. The execution originated from an add-on.
    • Execution API. The execution originated from an invocation of the Apps Script API.
    • Time Driven. The execution was caused by a time event.
    • Trigger. The execution originated from a trigger source.
    • Webapp. The execution originated from a deployed web app.
    • Editor. The execution originated from the Apps Script editor.
  • Logging From the above link:

  • Executing Apps Script Functions

    A basic approach to logging in Apps Script is to use the built-in execution log. To view these logs, at the top of the editor, click Execution log. When you run a function or use the debugger, the logs stream in real time.

  • Executing Apps Script Functions

Related

Each call to the Google Apps Script web app is handled by a separate execution.

A separate execution handles each call to Google Apps Script server-side functions using google.script.run.

All executions are logged in the Google Apps Script's project execution log, which can be seen by anyone with access to the Google Apps Script project and the related Google Cloud Platform project.

How organization admins might have access to the execution logs depends on several factors, including but not limited to the Google Workspace edition used by the organization.

Note:

If you are planning a web app, please be aware that there are limits to the number of simultaneous executions per user and per script. For details, see https://developers.google.com/apps-script/quotas.


Resources

Resources that mention stuff that might help to understand what is execution in Google Apps Scripts

  • The Apps Script Dashboard

    Extracts from the above link:

    Executions. The number of times a project has been "run" or executed. See Execution types for more information about how a project can be run.

    ...

    Manage executions

    ...

    The Type column shows what initiated the execution. Values include:

    • Add On. The execution originated from an add-on.
    • Execution API. The execution originated from an invocation of the Apps Script API.
    • Time Driven. The execution was caused by a time event.
    • Trigger. The execution originated from a trigger source.
    • Webapp. The execution originated from a deployed web app.
    • Editor. The execution originated from the Apps Script editor.
  • Logging

  • Executing Apps Script Functions

Related

Each call to the Google Apps Script web app is handled by an independent execution.

An independent execution handles each call to Google Apps Script server-side functions using google.script.run.

Above, I'm using independent for emphasis purposes. From a language economy perspective, execution should be enough.

All Google Apps Script executions are logged in the Google Apps Script's project execution log, which can be seen by anyone with access to the Google Apps Script project and the related Google Cloud Platform project.

How organization admins might have access to the execution logs depends on several factors, including but not limited to the Google Workspace edition used by the organization.

Note:

If you are planning a web app, please be aware that there are limits to the number of simultaneous executions per user and per script. For details, see https://developers.google.com/apps-script/quotas.


Resources

Resources that mention stuff that might help to understand what is execution in Google Apps Scripts

  • The Apps Script Dashboard

    Extracts from the above link:

    Executions. The number of times a project has been "run" or executed. See Execution types for more information about how a project can be run.

    ...

    Manage executions

    ...

    The Type column shows what initiated the execution. Values include:

    • Add On. The execution originated from an add-on.
    • Execution API. The execution originated from an invocation of the Apps Script API.
    • Time Driven. The execution was caused by a time event.
    • Trigger. The execution originated from a trigger source.
    • Webapp. The execution originated from a deployed web app.
    • Editor. The execution originated from the Apps Script editor.
  • Logging From the above link:

    A basic approach to logging in Apps Script is to use the built-in execution log. To view these logs, at the top of the editor, click Execution log. When you run a function or use the debugger, the logs stream in real time.

  • Executing Apps Script Functions

Related

added 1100 characters in body
Source Link
Wicket
  • 36.8k
  • 9
  • 74
  • 180

Each call to the Google Apps Script web app is handled by a separate execution.

A separate execution handles each call to Google Apps Script server-side functions using google.script.run.

All executions are logged in the Google Apps Script's project execution log, which can be seen by anyone with access to the Google Apps Script project and the related Google Cloud Platform project.

How organization admins might have access to the execution logs depends on several factors, including but not limited to the Google Workspace edition used by the organization.

Note:

If you are planning a web app, please be aware that there are limits to the number of simultaneous executions per user and per script. For details, see https://developers.google.com/apps-script/quotas.


Resources

RelatedResources that mention stuff that might help to understand what is execution in Google Apps Scripts

  • The Apps Script Dashboard

    Extracts from the above link:

    Executions. The number of times a project has been "run" or executed. See Execution types for more information about how a project can be run.

    ...

    Manage executions

    ...

    The Type column shows what initiated the execution. Values include:

    • Add On. The execution originated from an add-on.
    • Execution API. The execution originated from an invocation of the Apps Script API.
    • Time Driven. The execution was caused by a time event.
    • Trigger. The execution originated from a trigger source.
    • Webapp. The execution originated from a deployed web app.
    • Editor. The execution originated from the Apps Script editor.
  • Logging

  • Executing Apps Script Functions

Related

Each call to the Google Apps Script web app is handled by a separate execution.

A separate execution handles each call to Google Apps Script server-side functions using google.script.run.

All executions are logged in the Google Apps Script's project execution log, which can be seen by anyone with access to the Google Apps Script project and the related Google Cloud Platform project.

How organization admins might have access to the execution logs depends on several factors, including but not limited to the Google Workspace edition used by the organization.

Note:

If you are planning a web app, please be aware that there are limits to the number of simultaneous executions per user and per script. For details, see https://developers.google.com/apps-script/quotas.

Related

Each call to the Google Apps Script web app is handled by a separate execution.

A separate execution handles each call to Google Apps Script server-side functions using google.script.run.

All executions are logged in the Google Apps Script's project execution log, which can be seen by anyone with access to the Google Apps Script project and the related Google Cloud Platform project.

How organization admins might have access to the execution logs depends on several factors, including but not limited to the Google Workspace edition used by the organization.

Note:

If you are planning a web app, please be aware that there are limits to the number of simultaneous executions per user and per script. For details, see https://developers.google.com/apps-script/quotas.


Resources

Resources that mention stuff that might help to understand what is execution in Google Apps Scripts

  • The Apps Script Dashboard

    Extracts from the above link:

    Executions. The number of times a project has been "run" or executed. See Execution types for more information about how a project can be run.

    ...

    Manage executions

    ...

    The Type column shows what initiated the execution. Values include:

    • Add On. The execution originated from an add-on.
    • Execution API. The execution originated from an invocation of the Apps Script API.
    • Time Driven. The execution was caused by a time event.
    • Trigger. The execution originated from a trigger source.
    • Webapp. The execution originated from a deployed web app.
    • Editor. The execution originated from the Apps Script editor.
  • Logging

  • Executing Apps Script Functions

Related

added 278 characters in body
Source Link
Wicket
  • 36.8k
  • 9
  • 74
  • 180
Loading
Source Link
Wicket
  • 36.8k
  • 9
  • 74
  • 180
Loading