Actually I have two queries: ``` "schedule": { ...
# general
r
Actually I have two queries:
Copy code
"schedule": {
    // This is a simple example query that outputs basic system information.
    "system_info": {
      // The exact query to run.
      "query": "SELECT hostname, cpu_brand, physical_memory FROM system_info;",
      // The interval in seconds to run this query, not an exact interval.
      "interval": 3600
    },
    "syslog": {
      "query": "SELECT * FROM syslog WHERE tag LIKE '%sshd%'",
      "interval": 10
    }
  },