文章详情

短信预约-IT技能 免费直播动态提醒

请输入下面的图形验证码

提交验证

短信预约提醒成功

夜莺V5安装指南:企业版Prometheus

2024-12-02 08:46

关注

关于夜莺不再过多赘述了,直接进入正文。

正文

单机版架构

来自官方

本文环境

系统版本:

安装基础软件(可选,如果有无需安装)

yum -y install vim wget

安装 Prometheus

这里可以查询官网 Prometheus 版本,截止发文前为止版本为2.32.1

mkdir -p /opt/prometheus
wget https://github.com/prometheus/prometheus/releases/download/v2.32.1/prometheus-2.32.1.linux-amd64.tar.gz
tar xf prometheus-2.32.1.linux-amd64.tar.gz
cp -far prometheus-2.32.1.linux-amd64/* /opt/prometheus/

设置守护进程

Prometheus 在启动的时候要注意开启 --enable-feature=remote-write-receiver

cat </etc/systemd/system/prometheus.service
[Unit]
Description="prometheus"
Documentation=https://prometheus.io/
After=network.target

[Service]
Type=simple

ExecStart=/opt/prometheus/prometheus --config.file=/opt/prometheus/prometheus.yml --storage.tsdb.path=/opt/prometheus/data --web.enable-lifecycle --enable-feature=remote-write-receiver --query.lookback-delta=2m

Restart=on-failure
SuccessExitStatus=0
LimitNOFILE=65536
StandardOutput=syslog
StandardError=syslog
SyslogIdentifier=prometheus


[Install]
WantedBy=multi-user.target
EOF

启动 Prometheus

systemctl daemon-reload
systemctl enable prometheus
systemctl restart prometheus
systemctl status prometheus

数据库部分

1.安装数据库

yum -y install mariadb-server

2.启动数据库

systemctl start mariadb && systemctl enable mariadb

3.设置数据库密码

mysql -e "SET PASSWORD FOR 'root'@'localhost' = PASSWORD('xiaoyu123');"

Redis 部分

1.安装redis

需要安装EPEL源方可安装redis

yum -y install epel-release
yum -y install redis

2.启动 redis

systemctl start redis && systemctl enable redis

安装夜莺组件

1.创建相关目录

mkdir -p /opt/n9e && cd /opt/n9e

2.下载夜莺,以官网最新版为主

wget https://github.com/didi/nightingale/releases/download/v5.2.1/n9e-5.2.1.tar.gz

3.解压文件

tar zxvf n9e-5.2.1.tar.gz

4.导入架构文件

mysql -uroot -pxiaoyu123 < docker/initsql/a-n9e.sql

修改配置文件

1.修改server配置文件

vim /opt/n9e/etc/server.conf

2.修改webapi配置文件

vim /opt/n9e/etc/webapi.conf

编辑 service 文件

1.n9e-server

cat </etc/systemd/system/n9e-server.service
[Unit]
Description="n9e-server"
After=network.target

[Service]
Type=simple

ExecStart=/opt/n9e/n9e server
WorkingDirectory=/opt/n9e

Restart=on-failure
SuccessExitStatus=0
LimitNOFILE=65536
StandardOutput=syslog
StandardError=syslog
SyslogIdentifier=n9e-server


[Install]
WantedBy=multi-user.target
EOF

2.n9e-webapi

cat </etc/systemd/system/n9e-webapi.service
[Unit]
Description="n9e-webapi"
After=network.target

[Service]
Type=simple

ExecStart=/opt/n9e/n9e webapi
WorkingDirectory=/opt/n9e

Restart=on-failure
SuccessExitStatus=0
LimitNOFILE=65536
StandardOutput=syslog
StandardError=syslog
SyslogIdentifier=n9e-server


[Install]
WantedBy=multi-user.target
EOF

启动夜莺组件

systemctl daemon-reload
systemctl enable n9e-server n9e-webapi
systemctl restart n9e-server n9e-webapi
systemctl status n9e-server
systemctl status n9e-webapi

访问前端

默认访问地址为:http://your ip address:18000

默认用户名密码为:root/root.2000

登录页

语句查询

图形

写在最后

目前V5版本已经设置 telegraf 为主要采集器,prometheus 的采集器也可以使用,相对于夜莺成为了一个分析器,最终传递到 grafana 进行展示,遗憾的是夜莺目前只支持折线图,大家感兴趣的不妨可以尝试一下,下期会就使用再进行探讨。

来源:今日头条内容投诉

免责声明:

① 本站未注明“稿件来源”的信息均来自网络整理。其文字、图片和音视频稿件的所属权归原作者所有。本站收集整理出于非商业性的教育和科研之目的,并不意味着本站赞同其观点或证实其内容的真实性。仅作为临时的测试数据,供内部测试之用。本站并未授权任何人以任何方式主动获取本站任何信息。

② 本站未注明“稿件来源”的临时测试数据将在测试完成后最终做删除处理。有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341

软考中级精品资料免费领

  • 历年真题答案解析
  • 备考技巧名师总结
  • 高频考点精准押题
  • 2024年上半年信息系统项目管理师第二批次真题及答案解析(完整版)

    难度     813人已做
    查看
  • 【考后总结】2024年5月26日信息系统项目管理师第2批次考情分析

    难度     354人已做
    查看
  • 【考后总结】2024年5月25日信息系统项目管理师第1批次考情分析

    难度     318人已做
    查看
  • 2024年上半年软考高项第一、二批次真题考点汇总(完整版)

    难度     435人已做
    查看
  • 2024年上半年系统架构设计师考试综合知识真题

    难度     224人已做
    查看

相关文章

发现更多好内容

猜你喜欢

AI推送时光机
位置:首页-资讯-后端开发
咦!没有更多了?去看看其它编程学习网 内容吧
首页课程
资料下载
问答资讯