#!/bin/bash
WEBHOOK_URL="https://hooks.slack.com/services/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"
MESSAGE="Clickhouse server is Back!"
curl -X POST -H 'Content-type: application/json' --data "{\"text\":\"$MESSAGE\"}" "$WEBHOOK_URL"
