gpt4 book ai didi

amazon-web-services - Elastic Beanstalk 上 New Relic 的 nrsysmond 的唯一主机名

转载 作者:行者123 更新时间:2023-12-01 13:51:38 31 4
gpt4 key购买 nike

我正在将 nrsysmond 配置为在托管通用 Docker 容器的 Elastic Beanstalk 容器上运行。

有什么方法可以获得实例索引,以便我可以将它与常量结合起来?诸如 Production-1、Production-2 之类的东西。

我使用的配置如下所示:

packages: 
yum:
newrelic-sysmond: []
rpm:
newrelic: http://yum.newrelic.com/pub/newrelic/el5/x86_64/newrelic-repo-5-3.noarch.rpm
commands:
"01":
command: nrsysmond-config --set license_key=`/opt/elasticbeanstalk/bin/get-config environment | jq .NEW_RELIC_LICENSE_KEY | sed -e 's/"//g'`
"02":
command: echo hostname=`/opt/elasticbeanstalk/bin/get-config environment | jq .RAILS_ENV | sed -e 's/"//g'` >> /etc/newrelic/nrsysmond.cfg
"03":
command: usermod -a -G docker newrelic
"04":
command: /etc/init.d/newrelic-sysmond restart

这很好用,但将所有主机名设置为相同的内容。我不想使用 Elastic Beanstalk 主机名,因为每次实例扩展时这些主机名都会发生变化。这会用死的实例堵塞 New Relic。

这是在运行 Docker 1.6.2 的 64 位 Amazon Linux 2015.03 v1.4.3 上

最佳答案

我找到了一种确定当前 Elastic Beanstalk 索引实例的可靠方法。

"02":
command: echo `ec2-describe-tags --filter key=Name | grep \`curl -sq http://169.254.169.254/latest/meta-data/instance-id\`` | awk '{print $5}' >> /etc/newrelic/environment-name
"03":
command: aws elasticbeanstalk describe-environment-resources --environment-name `cat /etc/newrelic/environment-name` --region us-east-1 | jq '.EnvironmentResources.Instances' | ruby -e "require 'json'; puts JSON.parse(ARGF.read).find_index({'Id' => '$(curl -sq http://169.254.169.254/latest/meta-data/instance-id)'})" >> /etc/newrelic/instance-index
"04":
command: echo hostname=`/opt/elasticbeanstalk/bin/get-config environment | jq .RAILS_ENV | sed -e 's/"//g'``cat /etc/newrelic/instance-index` >> /etc/newrelic/nrsysmond.cfg

这个想法是:
  • 获取 Elastic Beanstalk 环境名称
  • 获取该环境的实例列表
  • 在该索引中查找当前实例
  • 将 New Relic 主机名设置为 RAILS_ENV-index

  • 我希望这可以帮助其他任何试图确定您所在的 Elastic Beanstalk 实例的人。

    关于amazon-web-services - Elastic Beanstalk 上 New Relic 的 nrsysmond 的唯一主机名,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31140665/

    31 4 0
    Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
    广告合作:1813099741@qq.com 6ren.com