process_envs ============ A key/value table of environment variables for each process. Platform support ---------------- Please be aware that some queries can only be run against certain platforms. Below is a list of the supported platforms that this query supports. Zercurity will automatically pause queries from running if errors are detected. **Running a query against an unsupported platform will result in the following error:** ``no such table: process_envs`` - Linux - Mac OSX Table schema ------------ ===== ======= ========================== Name Type Description ===== ======= ========================== pid INTEGER Process (or thread) ID key TEXT Environment variable name value TEXT Environment variable value ===== ======= ========================== Query examples -------------- .. code-block:: sql select * from process_envs where pid = 1 .. code-block:: sql select pe.* from process_envs pe, (select * from processes limit 10) p where p.pid = pe.pid;