SYSTEM$GET_ APPLICATION_ SERVICE_ LOGS¶
Returns the container logs for a running Application Service. Use this function to troubleshoot a deployed application.
Syntax¶
Arguments¶
service_identifier- Fully qualified or unqualified identifier of the Application Service.
tail_linesOptional number of log lines to return, starting from the end. The default is
500.instance_idOptional instance number to get logs from. Instances are numbered from
0. The default is0. If that instance isn’t running, Snowflake returns an error that lists the valid IDs, for example:Invalid instance id 3. Valid instance ids: 0, 1.
Returns¶
A string that contains the concatenated log output from the service containers.
Access control requirements¶
The role must have the MONITOR privilege on the Application Service.
Usage notes¶
- The service identifier must be enclosed in single quotes.
- The service must be in a running state to return container logs. For a suspended service, the function returns an empty result.
- If the service has more than one instance, pass
instance_idto choose which one. You must also passtail_lines. - For structured logs routed through an active event table, query the event table directly. For more information, see Logging, tracing, and metrics.