Terminal-based, real-time traffic monitoring and statistics for your AdGuard Home instance
There are several options for running...
bash
docker run -it lissy93/adguardian
You may also pass in your AdGuard info with env vars (using -e
), see the Configuring section for an example, and list of availible config params.
If you experience issues with DockerHub, or would rather use a different registry, the image is also available via GHCR - just replace the image name with: ghcr.io/lissy93/adguardian
. Alternatively, if you'd like to build it yourself from source, you can do so with docker buildx build -t adguardian .
then run it with docker run -it adguardian
.
Head to the Releases tab, and download the executable for your system.
Then, just run it by either double-clicking on it, or for Linux/Mac users, by running ./adguardian-linux
from the command line (don't forget to make it executable first with chmod +x adguardian-linux
)
bash
git clone git@github.com:Lissy93/AdGuardian-Term.git && \
cd AdGuardian-Term && \
make
You'll need git
, cargo
and make
(see here for installation notes). You can also run the cargo commands defined in the Makefile directly, e.g. cargo run
Not sure which method to choose?
The app requires the details of an AdGuard instance to connect to. This info can be provided either as environmental variables, or passed in as flag parameters. If any of these fields are missing or incomplete, you'll be prompted to enter a value once the app starts.
The following params are accepted:
ADGUARD_IP
/ --adguard-ip
- The IP address of your local AdGuard Home instanceADGUARD_PORT
/ --adguard-port
- The port that AdGuard is running onADGUARD_USERNAME
/ --adguard-username
- An AdGuard Home usernameADGUARD_PASSWORD
/ --adguard-password
- An AdGuard Home passwordExamples
bash
./adguardian -- \
--adguard-ip "192.168.180.1" \
--adguard-port "3000" \
--adguard-username "admin" \
--adguard-password "bobs-your-uncle"
bash
ADGUARD_IP="192.168.180.1" ADGUARD_PORT="3000" ADGUARD_USERNAME="admin" ADGUARD_PASSWORD="bobs-your-uncle" ./adguardian
bash
docker run \
-e "ADGUARD_IP=192.168.180.1" \
-e "ADGUARD_PORT=3000" \
-e "ADGUARD_USERNAME=admin" \
-e "ADGUARD_PASSWORD=bobs-your-uncle" \
-it lissy93/adguardian
The terminal dashboard can also be viewed via a browser, thanks to ttyd.
You'll need Rust installed. Run: curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh
- see the installation docs. You'll also need Git, if you don't already have it.
Then clone the repo, and cd into it, with: git clone git@github.com:Lissy93/AdGuardian-Term.git
&& cd AdGuardian-Term
You can view the full list of availible project commands in the Makefile
To build and run the project for development, run cargo run
The documentation can be viewed at:
cargo test
- Run unit testscargo check
- Ensure app is compilablecargo bench
- Execute benchmarkscargo clippy
- Analyse areas for improvementcargo doc
- Generate the documentationOnce your finished developing, you can build the project for production with: cargo build --release
The binaries for your system will then be available in the ./target/release/
directory of the project.
You can execute this directly, e.g. by running ./target/release/adguardian
(add .exe if on Windows)
Contributions of any kind are very welcome (and would be much appreciated!) For Code of Conduct, see Contributor Convent. For project setup, see the Development section.
To get started, fork the repo, make your changes, add, commit and push the code, then come back here to open a pull request. If you're new to GitHub or open source, this guide or the git docs may help you get started, but feel free to reach out if you need any support.
You can support the project in other ways too, drop us a star, consider sponsoring us on GitHub, share within your network, and report any bugs you come across.
Lissy93/AdGuardian-Term is licensed under MIT © Alicia Sykes 2023.
For information, see TLDR Legal > MIT
Expand License
``` The MIT License (MIT) Copyright (c) Alicia Sykes alicia@omg.com
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sub-license, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included install copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANT ABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON INFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ```
© Alicia Sykes 2023
Licensed under MIT
Thanks for visiting :)