Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

MediaLiveチャンネルのStateを返すLambda関数をリファクタリングする #1170

Open
oke-py opened this issue Nov 3, 2021 · 0 comments

Comments

@oke-py
Copy link
Member

oke-py commented Nov 3, 2021

ref #1143
CloudWatchダッシュボードにMediaLiveチャンネルのState(RUNNINGやIDLEなど)を表示するようにした。

カスタムウィジェットを利用してLambda関数を実行している。
環境(staging or production)* トラック(A~F)の12個もLambda関数がある。イケてない。
すべてコードは同じで環境変数CHANNEL_NAMEの値のみ異なる。

require 'aws-sdk'
require 'json'

def lambda_handler(event:, context:)
    medialive = Aws::MediaLive::Client.new(region: 'us-east-1')
    resp = medialive.list_channels({
        max_results: 20
    })
    ch = resp.channels.select { |c| c.name == ENV["CHANNEL_NAME"] }
    "<p style=\"text-align: center; font-size: xx-large\">" + ch[0].state + "</p>"
end

やりたいこと

今後もMediaLiveを使う場合はこのあたりをやっておきたい。

  1. 実行ロール名を変更する

すべて同じロールMediaLive_staging_cndt2021_trackA-role-xxxを利用しているため、環境名とトラック名を除外する。
CloudFormation化もしておきたい。

  1. Lambda関数を1つにする

環境変数ではなくJSONパラメータとしてMediaLiveチャンネル名を渡すことでLambda関数は1つでよくなる。
CloudWatchダッシュボードのウィジェットでパラメータを指定できる。
widget

  1. max_resultsの設定を見直す

MediaLiveのチャンネル数 > max_resultsとなるとStateを取得できないことがある。ch[0]nilとなるため。

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
Status: Todo
Development

No branches or pull requests

1 participant