Popularity
2.8
Growing
Activity
0.0
Stable
97
3
12
Programming language: Rust
License: MIT License
Latest version: v1.2.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.
InfluxDB - Purpose built for real-time analytics at any scale.
InfluxDB Platform is powered by columnar analytics, optimized for cost-efficient storage, and built with open data standards.
Promo
www.influxdata.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_id
mode: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
logram
as 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).