:wave: Hello, team! I am new to Osquery, is there...
# windows
a
👋 Hello, team! I am new to Osquery, is there a way of monitoring Memory on Windows. something like "virtual_memory_info"
👀 1
g
Hey @Alex Trujillo, as far as I'm aware, there isn't a specific table that can provide that same level of information. There are some options, though. There's system_info, and processes. Is there something in particular that you're trying to achieve?
a
I have these two queries running on mac, and I am looking to do the same/similar on windows.
Copy code
"system_load": {
      "query": "SELECT * FROM load_average;",
      "interval": 60,
      "description": "Load averages (1m, 5m, 15m)"
    },
    "memory_pressure": {
      "query": "SELECT free, compressed, page_outs, wired, active, inactive FROM virtual_memory_info;",
      "interval": 60,
      "description": "Memory pressure indicators"
    },
👀 1