AnsibleでNew RelicにDeployの通知をする
New Relic は無料版でもいつデプロイしたかどうかを記録する事ができます。
(参考NewRelicページ)
Ansibleではnewrelic_deploymentを使えば簡単にできます。
以下は抜粋ですが、こんな風にすればいけます。
なお、環境変数にNEWRELIC_API_KEYは設定しています。
- name: checkout repository
git: repo={{ repository }}
dest={{ dest }}
version={{ branch }}
accept_hostkey=yes
register: gitresult
- name: notify deployment to New Relic
newrelic_deployment: token={{ lookup('env', 'NEWRELIC_API_KEY') }}
application_id={{ newrelic_app_id}}
revision={{ gitresult.after }}
description={{ branch}}
参考
Author And Source
この問題について(AnsibleでNew RelicにDeployの通知をする), 我々は、より多くの情報をここで見つけました https://qiita.com/wapa5pow/items/214bb4ce10c337243a4a著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .