Telegram 2 Elastic is a Telegram client which writes all chat messages to multiple outputs like Elasticsearch in realtime.
With the data stored in Elasticsearch, you can use applications like Kibana or Grafana to visualize the chats. Or you may use it as a much better search engine compared to the one implemented in the available Telegram clients.
- Python >= 3.7
- Elasticsearch (in case you want to use the Elasticsearch output)
- Redis (in case you want to use the Redis output)
- Telegram API ID and API Hash (create one at my.telegram.org)
- Download the latest release
- Install the required Python modules using pip:
pip3 install -r requirements.txt
- Copy the provided config.sample.yml to config.yml and edit it to fit your needs
It is supported to write to multiple outputs. You may pick any combination of the following output types:
elasticsearch
: Write to an Elasticsearch instancefile
: Write a line in JSON format for each message into a fileredis
: Append messages encoded as JSON to a list in Redistcp
: Send messages as JSON strings to any TCP socket
It is also possible to configure the same output type multiple times but using different endpoints.
For each output, it is possible to customize the output map which is written to the output.
The output map can be specified using the output_map
config property of the output.
Each property of the map defines a piece of Python code which should be executed to get the value for each field.
By default, the following map is used:
id: "message.id"
date: "message.date"
sender: "sender"
chat: "get_display_name(await message.get_chat())"
message: "message.text"
When started for the first time, the application will ask you to connect with your Telegram account.
listen
- Listen for chat messages and write them to the configured outputsimport-history
- Import the chat history (the complete history or only for specific chats or a specific time range)list-chats
- List available chats