Skip to contents

Send log messages to a Telegram chat

Usage

appender_telegram(
  chat_id = Sys.getenv("TELEGRAM_CHAT_ID"),
  bot_token = Sys.getenv("TELEGRAM_BOT_TOKEN"),
  parse_mode = NULL
)

Arguments

chat_id

Unique identifier for the target chat or username of the target channel (in the format @channelusername)

bot_token

Telegram Authorization token

parse_mode

Message parse mode. Allowed values: Markdown or HTML

Value

function taking lines argument

Note

This functionality depends on the telegram package.

See also

This is generator function for log_appender(), for alternatives, see eg appender_console(), appender_file(), appender_tee(), appender_pushbullet(), appender_syslog(), appender_kinesis() and appender_async() for evaluate any log_appender() function in a background process.