Popularity
2.8
Declining
Activity
0.0
Stable
95
2
14
Programming language: Rust
License: MIT License
Latest version: v2.0
logram alternatives and similar packages
Based on the "System tools" category.
Alternatively, view logram alternatives based on common mentions on social networks and blogs.
-
ion
Ion is a modern system shell that features a simple, yet powerful, syntax. It is written entirely in Rust, which greatly increases the overall quality and security of the shell. It also offers a level of performance that exceeds that of Dash, when taking advantage of Ion's features. While it is developed alongside, and primarily for, RedoxOS, it is a fully capable on other *nix platforms.
SaaSHub - Software Alternatives and Reviews
SaaSHub helps you find the best software and product alternatives
Promo
www.saashub.com
Do you think we are missing an alternative of logram or a related project?
Popular Comparisons
README
logram - pipe log updates to Telegram 
Logram takes logs from files and systemd services and send them to Telegram.
Usage
- Download the latest release and install it:
sudo dpkg -i logram_..._amd64.deb - Create bot via @BotFather
- Run logram in
echo_idmode:logram echo_id --token=... - Send any message to bot and he will answer chat id
- Change config at
/etc/logram.yaml - Run via systemd:
sudo systemctl start logram - Optionally: enable systemd service (for autostart):
sudo systemctl enable logram
Usage with log
- Load
logramas librarytoml [dependencies] logram = "1.2" - Init logram ```rust use log::{debug, error, info, log, trace, warn, Level}; use logram;
fn main() { logram::init( "bot token".to_string(), "chat id".to_string(), Level::Error, ) .unwrap();
error!("error");
}
Limitations: log records with target starts with `tokio_reactor, hyper, mio, want or reqwest` will be skipped, because [limitations in log](https://github.com/rust-lang-nursery/log/issues/312).