X.Extensions.Logging.Telegram
1.0.1.5
Prefix Reserved
See the version list below for details.
dotnet add package X.Extensions.Logging.Telegram --version 1.0.1.5
NuGet\Install-Package X.Extensions.Logging.Telegram -Version 1.0.1.5
<PackageReference Include="X.Extensions.Logging.Telegram" Version="1.0.1.5" />
paket add X.Extensions.Logging.Telegram --version 1.0.1.5
#r "nuget: X.Extensions.Logging.Telegram, 1.0.1.5"
// Install X.Extensions.Logging.Telegram as a Cake Addin #addin nuget:?package=X.Extensions.Logging.Telegram&version=1.0.1.5 // Install X.Extensions.Logging.Telegram as a Cake Tool #tool nuget:?package=X.Extensions.Logging.Telegram&version=1.0.1.5
X.Extensions.Logging.Telegram
Telegram logging provider
What is Telegram?
What is Telegram? What do I do here? Telegram is a messaging app with a focus on speed and security, itβs super-fast, simple and free. You can use Telegram on all your devices at the same time β your messages sync seamlessly across any number of your phones, tablets or computers. Telegram has over 500 million monthly active users and is one of the 10 most downloaded apps in the world.
Why you need write logs to Telegram?
Because it very comfortable - you can receive important messages directly to your smartphone or laptop.
Prepare Telegram bot
For sending log messages into telegram channel or chat you need create telegram bot before. Here you can find how to do it. After you created bot add it to channel with admin role and allow bot to post messages.
Prepare Telegram channel
In telegram there are two types of channels: public and private. For public channel you can use channel name as ChatId in configuration.
For private channel you can use @JsonDumpBot to get private channel id. Just forward any message from private channelto this bot. Additional information you can find here.
Configure Telegram Logging provider
You can configure Telegram logging provider by code or by config file:
Code
var options = new TelegramLoggerOptions
{
AccessToken = "1234567890:AAAaaAAaa_AaAAaa-AAaAAAaAAaAaAaAAAA",
ChatId = "-0000000000000",
LogLevel = LogLevel.Information,
Source = "Human Readable Project Name"
};
...
builder
.ClearProviders()
.AddTelegram(options)
.AddConsole();
appconfig.json
{
"Logging": {
"LogLevel": {
"Default": "Information",
"Microsoft": "Warning",
"Microsoft.Hosting.Lifetime": "Information"
},
"Telegram": {
"LogLevel": "Warning",
"AccessToken": "1234567890:AAAaaAAaa_AaAAaa-AAaAAAaAAaAaAaAAAA",
"ChatId": "@channel_name",
"Source": "Human Readable Project Name"
}
},
"AllowedHosts": "*"
}
and pass IConfiguration object to extensions method
public static IHostBuilder CreateHostBuilder(string[] args) =>
Host.CreateDefaultBuilder(args)
.ConfigureLogging((context, builder) =>
{
if (context.Configuration != null)
builder
.AddTelegram(context.Configuration)
.AddConsole();
})
.ConfigureWebHostDefaults(webBuilder => { webBuilder.UseStartup<Startup>(); });
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net5.0 was computed. net5.0-windows was computed. net6.0 was computed. net6.0-android was computed. net6.0-ios was computed. net6.0-maccatalyst was computed. net6.0-macos was computed. net6.0-tvos was computed. net6.0-windows was computed. net7.0 was computed. net7.0-android was computed. net7.0-ios was computed. net7.0-maccatalyst was computed. net7.0-macos was computed. net7.0-tvos was computed. net7.0-windows was computed. net8.0 was computed. net8.0-android was computed. net8.0-browser was computed. net8.0-ios was computed. net8.0-maccatalyst was computed. net8.0-macos was computed. net8.0-tvos was computed. net8.0-windows was computed. |
.NET Core | netcoreapp2.0 was computed. netcoreapp2.1 was computed. netcoreapp2.2 was computed. netcoreapp3.0 was computed. netcoreapp3.1 was computed. |
.NET Standard | netstandard2.0 is compatible. netstandard2.1 was computed. |
.NET Framework | net461 was computed. net462 was computed. net463 was computed. net47 was computed. net471 was computed. net472 was computed. net48 was computed. net481 was computed. |
MonoAndroid | monoandroid was computed. |
MonoMac | monomac was computed. |
MonoTouch | monotouch was computed. |
Tizen | tizen40 was computed. tizen60 was computed. |
Xamarin.iOS | xamarinios was computed. |
Xamarin.Mac | xamarinmac was computed. |
Xamarin.TVOS | xamarintvos was computed. |
Xamarin.WatchOS | xamarinwatchos was computed. |
-
.NETStandard 2.0
- Microsoft.Extensions.Configuration.Binder (>= 5.0.0)
- Microsoft.Extensions.Logging (>= 5.0.0)
- Telegram.Bot (>= 16.0.0)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.
Version | Downloads | Last updated |
---|---|---|
2.0.1-rc | 76 | 10/27/2024 |
2.0.0-beta | 88 | 8/30/2024 |
1.0.7 | 401 | 7/9/2024 |
1.0.6.1 | 2,992 | 3/5/2023 |
1.0.5.1 | 5,346 | 4/25/2022 |
1.0.4-preview | 198 | 12/20/2021 |
1.0.3 | 2,112 | 12/18/2021 |
1.0.2.1 | 456 | 11/5/2021 |
1.0.2 | 376 | 11/1/2021 |
1.0.1.5 | 720 | 6/27/2021 |
1.0.1.3 | 8,658 | 1/26/2021 |
1.0.1.2 | 340 | 1/26/2021 |