Skip to content

Serilog.Sinks.TelegramBot is a library to save logging information from Serilog to Telegram. The assembly was written and tested in .Net 6.0 or above

License

Notifications You must be signed in to change notification settings

Cyrus-Sushiant/Serilog.Sinks.TelegramBot

Repository files navigation

Serilog.Sinks.TelegramBot

NuGet Version License: MIT

A Serilog sink that writes events as messages to Telegram.

All you need is bot token and chat id. To manage bots go to Bot Father. After you got bot token add bot to contacts and start it (/start). To get your id navigate to https://api.telegram.org/botTOKEN/getUpdates

Available for

  • .Net 6.0
  • .Net 7.0
  • .Net 8.0

Install

Install-Package Serilog.Sinks.TelegramBot

Basic usage:

var log = new LoggerConfiguration()
                .MinimumLevel.Verbose()
                .WriteTo.TelegramBot("000000:AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA", "000000")
                .CreateLogger();
log.Information("This is an information message!");

Example

Simple Message

About

Serilog.Sinks.TelegramBot is a library to save logging information from Serilog to Telegram. The assembly was written and tested in .Net 6.0 or above

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages