Last active
September 10, 2025 05:34
-
-
Save SteveLauC/7b43c09e69b254c9a921ae2335ccd711 to your computer and use it in GitHub Desktop.
osquery
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| select ROUND(SUM(resident_size)/1024.0/1024.0, 2) as 'Memory (in MiB)', COUNT(*) as 'Processes Count' from processes WHERE name = 'Google Chrome' OR name LIKE '%Google Chrome%' |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| select ROUND(SUM(resident_size)/1024.0/1024.0, 2) as 'Memory (in MiB)', COUNT(*) as 'Processes Count' from processes WHERE name = 'Code' OR name LIKE 'Code Helper%'; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment