Search Syntax
  • 1 Minute to read
  • Dark
    Light
  • PDF

Search Syntax

  • Dark
    Light
  • PDF

Article Summary

Prefix’s log management allows you to view and search across all of your logs in one place. Full text query is powered by SQLite FtS5 to create powerful searching capabilities. For more information, check out the official SQLite site.

Tips for Searching Through Logs

Strings

All alpha-numeric characters are supported as well as the underscore character _ for searches.
“Order_number”

Strings are identified by using double quotes . To escape embedded double quote characters, escape by adding a second double quote character.
“Order_number ""1234""”

Phrases

Strings can be concatenated into phrases using the plus character +.
'"one two three"'
'one + two + three'
'"one two" + three'
'one.two.three'

Booleans

Operators AND, OR, NOt are supported and case sensitive.

<query1> NOT <query2>
<query1> AND <query2>
<query1> OR <query2>


Was this article helpful?