3

In the "Logs Explorer" I can see a lot of errors e.g enter image description here

But when I click on either of the lines I just get a lot of information but the only thing I care about, the error message, is not there.

Is there a way where I can actually see the outputs of a specific error?

CutePoison
  • 4,679
  • 5
  • 28
  • 63

1 Answers1

-1

The Log fields pane is populated and updated based on an executed query in the query editor.

If the query is empty, the Log fields pane displays the counts of log entries by the Resource type and Severity fields.

To gather specific logs, you can build queries in the Logs Explorer.

You will use the Query pane, to build and run query expressions using the logging query language, and you can use the filter menus to select resources, Log names, log severities, and time range parameters.

You can review the details about these filters in this public document. Based on this information, you can run a query to search an error like the followed example, if you want get The "ERROR lines" from App Engine during a period:

resource.type="gae_app" AND
severity>=ERROR AND
timestamp>="2018-12-31T00:00:00Z" AND timestamp<="2019-01-01T00:00:00Z"
Leo
  • 695
  • 3
  • 11