首页 > 后端开发 > Python教程 > 使用 Cloud Run Functions 和 Cloud Scheduler 通过图形自动发送 Slack 通知

使用 Cloud Run Functions 和 Cloud Scheduler 通过图形自动发送 Slack 通知

Mary-Kate Olsen
发布: 2024-12-11 04:47:09
原创
786 人浏览过

我最近构建了一个系统来自动执行 Slack 通知,并通过图表可视化过去 7 天的会话计数。这是通过结合用于数据处理和图形生成的 Cloud Run 函数以及用于调度执行的 Cloud Scheduler 来实现的。

实施概述

云运行功能

Cloud Run 函数查询 BigQuery 以获取会话数据,使用 Matplotlib 创建折线图,然后通过 Slack API 将图表发送到 Slack。以下步骤概述了设置过程。

这是 main.py 的代码。运行之前,您需要将 SLACK_API_TOKEN 和 SLACK_CHANNEL_ID 设置为环境变量。您暂时可以将它们留空,因为我们稍后会设置它们。

import os
import matplotlib.pyplot as plt
from google.cloud import bigquery
from datetime import datetime, timedelta
import io
import pytz
from slack_sdk import WebClient
from slack_sdk.errors import SlackApiError

def create_weekly_total_sessions_chart(_):
    SLACK_TOKEN = os.environ.get('SLACK_API_TOKEN')
    SLACK_CHANNEL_ID = os.environ.get('SLACK_CHANNEL_ID')

    client = bigquery.Client()

    # Calculate the date range for the last 7 days
    jst = pytz.timezone('Asia/Tokyo')
    today = datetime.now(jst)
    start_date = (today - timedelta(days=7)).strftime('%Y-%m-%d')
    end_date = (today - timedelta(days=1)).strftime('%Y-%m-%d')

    query = f"""
        SELECT 
            DATE(created_at) AS date,
            COUNT(DISTINCT session_id) AS unique_sessions
        FROM `<project>.<dataset>.summary_all`
        WHERE created_at BETWEEN '{start_date} 00:00:00' AND '{end_date} 23:59:59'
        GROUP BY date
        ORDER BY date;
    """

    query_job = client.query(query)
    results = query_job.result()

    # Prepare data for the graph
    dates = []
    session_counts = []
    for row in results:
        dates.append(row['date'].strftime('%Y-%m-%d'))
        session_counts.append(row['unique_sessions'])

    # Generate the graph
    plt.figure()
    plt.plot(dates, session_counts, marker='o')
    plt.title('Unique Session Counts (Last 7 Days)')
    plt.xlabel('Date')
    plt.ylabel('Unique Sessions')
    plt.xticks(rotation=45)
    plt.tight_layout()

    # Save the graph as an image
    image_binary = io.BytesIO()
    plt.savefig(image_binary, format='png')
    image_binary.seek(0)

    # Send the graph to Slack
    client = WebClient(token=SLACK_TOKEN)
    try:
        response = client.files_upload_v2(
            channel=SLACK_CHANNEL_ID,
            file_uploads=[{
                "file": image_binary,
                "filename": "unique_sessions.png",
                "title": "Unique Session Counts (Last 7 Days)"
            }],
            initial_comment="Here are the session counts for the last 7 days!"
        )
    except SlackApiError as e:
        return f"Error uploading file: {e.response['error']}"

    return "Success"
登录后复制

依赖关系

创建一个requirements.txt 文件并包含以下依赖项:

functions-framework==3.*
google-cloud-bigquery
matplotlib
slack_sdk
pytz
登录后复制

授予对 Cloud Run 功能的访问权限

要允许Cloud Scheduler或其他服务调用您的Cloud Run功能,您需要将roles/run.invoker角色分配给适当的实体。使用以下命令来执行此操作:

gcloud functions add-invoker-policy-binding create-weekly-total-sessions-chart \
      --region="asia-northeast1" \
      --member="MEMBER_NAME"
登录后复制

将 MEMBER_NAME 替换为以下内容之一:

  • Cloud Scheduler 的服务帐户: serviceAccount:scheduler-account@example.iam.gserviceaccount.com
  • 对于公众访问(不推荐): 所有用户

设置云调度程序

使用 Cloud Scheduler 在每周一上午 10:00 (JST) 自动执行该函数。这是一个示例配置:

Automate Slack Notifications with Graphs Using Cloud Run Functions and Cloud Scheduler

Slack API 配置

要使您的 Cloud Run 功能能够发送 Slack 通知,请按照以下步骤操作:

  1. 转到 Slack API 并创建一个新应用程序。
  2. OAuth 和权限 下分配以下机器人令牌范围:
    • 频道:阅读
    • 聊天:写
    • 文件:写入

Automate Slack Notifications with Graphs Using Cloud Run Functions and Cloud Scheduler

  1. 将应用程序安装到您的 Slack 工作区并复制 机器人用户 OAuth 令牌

Automate Slack Notifications with Graphs Using Cloud Run Functions and Cloud Scheduler

  1. 将应用添加到您要发布通知的 Slack 频道。

Automate Slack Notifications with Graphs Using Cloud Run Functions and Cloud Scheduler

  1. 复制通道 ID 并将其与 Bot 令牌一起粘贴到 Cloud Run 函数的 SLACK_CHANNEL_ID 和 SLACK_API_TOKEN 环境变量中。

Automate Slack Notifications with Graphs Using Cloud Run Functions and Cloud Scheduler

最终结果

一切设置完毕后,您的 Slack 频道将收到每周通知,其中包含如下图表:

Automate Slack Notifications with Graphs Using Cloud Run Functions and Cloud Scheduler

以上是使用 Cloud Run Functions 和 Cloud Scheduler 通过图形自动发送 Slack 通知的详细内容。更多信息请关注PHP中文网其他相关文章!

来源:dev.to
本站声明
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn
作者最新文章
热门教程
更多>
最新下载
更多>
网站特效
网站源码
网站素材
前端模板