Skip to content

Latest commit

 

History

History
executable file
·
57 lines (36 loc) · 983 Bytes

README.md

File metadata and controls

executable file
·
57 lines (36 loc) · 983 Bytes

🧅 Piconyx

Piconyx is a command-line monitor for Snowflake. With this you can get detailed real-time information about your Snowflake proxy.

screenshot

Dependencies

Getting started

Snowflake proxy

Get the snowflake proxy as described in their README.

Run the proxy:

SNOWFLAKE_LOG="$(pwd)/snowflake.log"
./proxy >"$SNOWFLAKE_LOG" 2>&1 &

Piconyx

Get the repository:

$ git clone https://github.com/cristianrz/piconyx

install:

# make install

and run:

$ piconyx "$SNOWFLAKE_LOG"

or run

$ ./piconyx "$SNOWFLAKE_LOG"

if you always have the log file in the same place you could do:

$ echo 'alias piconyx="piconyx /path/to/the/file"' >> ~/.bashrc