/Telegram2Elastic

A simple Telegram client writing chat messages to an Elasticsearch instance in realtime - Mirrored from https://gitlab.com/Programie/Telegram2Elastic

Primary LanguagePython

Telegram 2 Elastic

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.

Requirements

  • 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)

Installation

  • 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

Outputs

It is supported to write to multiple outputs. You may pick any combination of the following output types:

  • elasticsearch: Write to an Elasticsearch instance
  • file: Write a line in JSON format for each message into a file
  • redis: Append messages encoded as JSON to a list in Redis
  • tcp: 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.

Customize output map

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"

Initial setup

When started for the first time, the application will ask you to connect with your Telegram account.

Available sub commands

  • listen - Listen for chat messages and write them to the configured outputs
  • import-history - Import the chat history (the complete history or only for specific chats or a specific time range)
  • list-chats - List available chats