You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: README.md
+10-139
Original file line number
Diff line number
Diff line change
@@ -9,156 +9,27 @@ Telegram logging providers for Serilog and standard .NET logging.
9
9
What is Telegram? What do I do here?
10
10
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.
11
11
12
-
## Why you need write logs to Telegram?
13
-
Because it very comfortable - you can receive important messages directly to your smartphone or laptop.
12
+
## Why do you need to write logs to Telegram?
13
+
Because it is very comfortable - you can receive important messages directly to your smartphone or laptop.
14
14
15
15
## Prepare Telegram bot
16
-
For sending log messages into telegram channel or chat you need create telegram bot before. [Here](https://core.telegram.org/bots#3-how-do-i-create-a-bot) you can find how to do it.
17
-
After you created bot add it to channel with admin role and allow bot to post messages.
16
+
For sending log messages into telegram channel or chat, you need to create telegram bot before. [Here](https://core.telegram.org/bots#3-how-do-i-create-a-bot) you can find how to do it.
17
+
After you create bot, add it to a channel with admin role and allow bot to post messages.
18
18
19
19
## Prepare Telegram channel
20
-
In telegram there are two types of channels: public and private. For public channel you can use channel name as *ChatId* in configuration.
20
+
In the telegram, there are two types of channels: public and private. For public channel you can use channel name as *ChatId* in configuration.
21
21
22
22
For private channel you can use [@JsonDumpBot](https://t.me/jsondumpbot) to get private channel id. Just forward any message from private channelto this bot. Additional information you can find [here](https://botostore.com/c/jsondumpbot/).
23
23
24
24
**Do not forget** to add your bot as admin with _write messages_ permission to channel.
For using custom message formatter delegate Func<string, ITelegramMessageFormatter> should be passed to extensions method AddTelegram. Delegate should be used because formatter needs to know which category is used for rendering the message.
X.Serilog.Sinks.Telegram is an open-source Serilog sink that allows you to send log events to Telegram. It's a convenient way to integrate Telegram as a logging output, enabling you to receive important log information directly in your chat.
125
-
126
-
## Features
127
-
128
-
-**Real-time Logging**: The sink offers the ability to send log events to a Telegram channel in real-time, ensuring that you can stay up-to-date with your application's behavior and any issues as they arise.
129
-
130
-
-**Customizable Formatting**: You can configure the format of log messages sent to the Telegram channel, allowing you to tailor them to your preferences and specific requirements.
131
-
132
-
-**Filtering**: The sink supports filtering log events before they are dispatched to the Telegram channel, ensuring that only pertinent information is shared.
133
-
134
-
-**Asynchronous Sending**: Log events are sent asynchronously to the Telegram channel, minimizing potential impact on your application's performance.
135
-
136
-
-**Easy Configuration**: Configuring the sink to work with your Telegram channel is straightforward, and you can find comprehensive information in the [Configuration Wiki](https://github.com/Bardin08/X.Serilog.Sinks.Telegram/wiki/Configuration).
137
-
138
-
## Getting Started
139
-
140
-
To begin using the X.Serilog.Sinks.Telegram sink, follow these steps:
141
-
142
-
1.**Install the Package**: You can install the sink package from NuGet using the following command:
143
-
```shell
144
-
dotnet add package X.Serilog.Sinks.Telegram
145
-
```
146
-
147
-
2.**Configure the Sink**: Set up the Telegram sink with the appropriate settings in your application's configuration. Here's an example configuration in C#:
148
-
149
-
```c#
150
-
Log.Logger=newLoggerConfiguration()
151
-
.WriteTo.TelegramCore(
152
-
token: botToken,
153
-
chatId: loggingChatId,
154
-
logLevel: LogEventLevel.Verbose)
155
-
.WriteTo.Console()
156
-
.CreateLogger();
157
-
```
158
-
159
-
3.**Start Logging**: Once the sink is configured, you can log in using Serilog as usual. Log events will be sent to your Telegram channel.
160
-
161
-
For more detailed configuration options, please refer to the [Configuration Wiki](https://github.com/Bardin08/X.Serilog.Sinks.Telegram/wiki/Configuration).
For using custom message formatter delegate Func<string, ITelegramMessageFormatter> should be passed to extensions method AddTelegram. Delegate should be used because formatter needs to know which category is used for rendering the message.
X.Serilog.Sinks.Telegram is an open-source Serilog sink that allows you to send log events to Telegram. It's a convenient way to integrate Telegram as a logging output, enabling you to receive important log information directly in your chat.
8
+
9
+
## Features
10
+
11
+
-**Real-time Logging**: The sink offers the ability to send log events to a Telegram channel in real-time, ensuring that you can stay up-to-date with your application's behavior and any issues as they arise.
12
+
13
+
-**Customizable Formatting**: You can configure the format of log messages sent to the Telegram channel, allowing you to tailor them to your preferences and specific requirements.
14
+
15
+
-**Filtering**: The sink supports filtering log events before they are dispatched to the Telegram channel, ensuring that only pertinent information is shared.
16
+
17
+
-**Asynchronous Sending**: Log events are sent asynchronously to the Telegram channel, minimizing potential impact on your application's performance.
18
+
19
+
-**Easy Configuration**: Configuring the sink to work with your Telegram channel is straightforward, and you can find comprehensive information in the [Configuration Wiki](https://github.com/Bardin08/X.Serilog.Sinks.Telegram/wiki/Configuration).
20
+
21
+
## Getting Started
22
+
23
+
To begin using the X.Serilog.Sinks.Telegram sink, follow these steps:
24
+
25
+
1.**Install the Package**: You can install the sink package from NuGet using the following command:
26
+
```shell
27
+
dotnet add package X.Serilog.Sinks.Telegram
28
+
```
29
+
30
+
2.**Configure the Sink**: Set up the Telegram sink with the appropriate settings in your application's configuration. Here's an example configuration in C#:
31
+
32
+
```c#
33
+
Log.Logger=newLoggerConfiguration()
34
+
.WriteTo.TelegramCore(
35
+
token: botToken,
36
+
chatId: loggingChatId,
37
+
logLevel: LogEventLevel.Verbose)
38
+
.WriteTo.Console()
39
+
.CreateLogger();
40
+
```
41
+
42
+
3.**Start Logging**: Once the sink is configured, you can log in using Serilog as usual. Log events will be sent to your Telegram channel.
43
+
44
+
For more detailed configuration options, please refer to the [Configuration Wiki](https://github.com/Bardin08/X.Serilog.Sinks.Telegram/wiki/Configuration).
0 commit comments