grafana监控oceanbase-obagent部署

news2024/11/23 12:42:32

1.Install ob-deploy in obd server(obdserver can be a ocp server)

(1)download newest version of ob-deploy and obagent,upload them to /soft directory

oceanbase-community-stable-el-7-x86_64安装包下载_开源镜像站-阿里云

(2) install obdeploy

rpm -ivh ob-deploy-1.6.2-10.el7.x86_64.rpm

2.Install obagent on all observers

su - admin

(1)prepare mirror

su - admin

obd mirror disable remote

cd /soft

obd mirror clone *.rpm

obd mirror list

(2)configure admin user ssh passwordless between obd server and observers,and ensure 8088 and 8089 of observers are not occupied

netstat -an|grep 8088

netstat -an|grep 8089

(3) prepare obagent-only.yaml

download obagent-only-example.yaml from github

obdeploy/obagent-only-example.yaml at master · oceanbase/obdeploy · GitHub

You need modify [servers]/[monitor_password]/[cluster_name]/[cluster_id] and [zone ips]

(4)install obagent

obd cluster deploy only-obagent -c obagent-only.yaml

obd cluster list

obd cluster start only-obagent

obd cluster list

(5)check if obagent started successfully

ssh {observerip}

ps -ef|grep obagent

(6)check monitoring details

host related:

curl --user admin:root http://{observerip}:8088/metrics/node/host

ob related:

curl --user admin:root http://{observerip}:8088/metrics/ob/basic

(7)if you need reinstall obagent,following commmands below and reinstall(optional)

obd cluster stop only-obagent

obd cluster destroy only-obagent

3.Install and start prometheus(choose the obd server)

(1)download prometheus

Download | Prometheus

(2) install and configure prometheus

groupadd prometheus

useradd -g prometheus prometheus

cd /usr/local

tar -xvf /soft/prometheus-2.35.0.linux-amd64.tar.gz

mv prometheus-2.35.0.linux-amd64 prometheus

cd prometheus/

mv prometheus.yml prometheus.yml.bk

scp root@{observerip}:/home/admin/obagent/conf/prometheus_config/prometheus.yaml .

scp -r root@{observerip}:/home/admin/obagent/conf/prometheus_config/rules .

vi prometheus.yaml

modify localhost:9090 to {your ip}:9090

chown -R prometheus.prometheus /usr/local/prometheus

mkdir -p /home/prometheus/data

chown -R prometheus.prometheus /home/prometheus/data

vi /etc/systemd/system/prometheus.service

[Unit]

Description=prometheus

After=network.target

[Service]

Type=simple

User=prometheus

ExecStart=/usr/local/prometheus/prometheus --config.file=/usr/local/prometheus/prometheus.yml --storage.tsdb.path=/home/prometheus/data

Restart=on-failure

[Install]

WantedBy=multi-user.target

(3)start prometheus

systemctl enable prometheus.service

systemctl start prometheus.service

(4)check prometheus

http://{your ip}:9090/

4.configure grafana

(1)download json of ob for grafana

Oceanbase Metrics | Grafana Labs

Host Metrics | Grafana Labs

Obproxy Metrics | Grafana Labs

(2) add new prometheus data source as prometheus and configure url as http://{your ip}:9090/

(3)import json files to grafana and choose data source - prometheus

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.coloradmin.cn/o/100621.html

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈,一经查实,立即删除!

相关文章

LinkedHashMap源码解析

LinkedHashMap源码解析 简介 LinkedHashMap 继承于 HashMap,其内部的 Entry 多了两个前驱、后继指针,内部额外维护了一个双向链表,能保证元素按插入的顺序访问,也能以访问顺序访问,可以用来实现 LRU 缓存策略。 Lin…

linux造so及调用

1.so的代码 2.gcc -O -c -fPIC -o testso.o so.c 3.gcc -shared -o testso.so testso.o 4.so可以看到了。 5.拷贝到系统内,然后同时ldconfig更新下。 6.调用的c代码 7.编译,连接。 8.可以看到执行的结果了。 ######################################…

分布式光伏运维平台具体有哪些功能?

安科瑞 华楠 综合看板 1、显示所有光伏电站的数量,装机容量,实时发电功率。 2、累计日、月、年发电量及发电收益。 3、累计社会效益。 4、柱状图展示月发电量 电站状态 1、电站状态展示当前光伏电站发电功率,补贴电价,峰值功…

2022游戏安全行业峰会举办,生态共建护航游戏产业

游戏的外挂、黑产、盗版等问题,一直是运营过程中面临的重要难题。这些安全问题,轻则给游戏的收入和口碑带来损伤,重则可以摧毁一款游戏。因此,近年来越来越多的游戏厂商不断加大对游戏安全的投入,为游戏建造铜墙铁壁。…

说说Vue响应式系统中的Watcher和Dep的关系-面试进阶

引言 在这里我先提出两个问题(文章末尾会进行解答): 在Vue的数据响应系统中,Dep和Watcher各自分担什么任务?Vue的数据响应系统的核心是Object.defineproperty一定是最好的吗?有什么弊端和漏洞吗&#xff…

【毕业设计_课程设计】基于Android的二维码扫描库

文章目录0 项目说明1 实现功能2 使用方式3 项目工程0 项目说明 基于Android的二维码扫描库 提示:适合用于课程设计或毕业设计,工作量达标,源码开放 1 实现功能 可打开默认二维码扫描页面支持对图片Bitmap的扫描功能支持对UI的定制化操作支…

Problem C: 算法9-9~9-12:平衡二叉树的基本操作

Problem Description 平衡二叉树又称AVL树,它是一种具有平衡因子的特殊二叉排序树。平衡二叉树或者是一棵空树,或者是具有以下几条性质的二叉树: 1. 若它的左子树不空,则左子树上所有结点的值均小于它的根节点的值&#xf…

JavaSE笔记——内部类

文章目录前言一、创建内部类二、链接外部类三、使用.this 和.new四、内部类与向上转型五、内部类方法和作用域六、匿名内部类七、嵌套类1. 接口内部的类2. 从多层嵌套类中访问外部类的成员八、继承内部类九、局部内部类总结前言 一个定义在另一个类中的类,叫作内部…

AUTO-CUT安装。

auto cut 是李沐老师分享的视频剪辑工具wisper。 这我非常需要啊。 所以看看怎么安装。 先下载客户端。和ffmpeg 链接:https://pan.baidu.com/s/1EZomUtV8Y_es8crR6-r3GQ 提取码:lgky 解压安装autocut客户端。 还需要ffmpeg和环境。 环境配置是自动…

事业编上岸浙大mpa的个人经验总结

先来介绍下我的个人情况吧,我是2022级浙大MPA项目的一名新生,也是一名中学老师,定居在杭州,毕业于湖州师范学院,在学校主要是负责教研这一块的工作,因为工作需要的原因,在综合了解了几个项目后&…

测试工具Hercules

下载地址:Hercules SETUP utility | HW-group.com Hercules SETUP实用程序是有用的串行端口终端(RS-485或RS-232终端)、UDP/IP终端和TCP/IP客户端服务器终端。它只为硬件组内部使用而创建,但今天它在一个实用程序中包含了许多功能…

手把手刷算法项目fucking-algorithm,干翻算法

今天给大家分享一个开源项目,在 GitHub 排行榜上今天特别火,都爬到了日排行榜的第二名。 大家想知道,面试互联网大厂,必面的是什么吗?当然是算法。作为程序员,互联网大厂的面试,算法是最重要的…

用javascript分类刷leetcode10.递归分治(图文视频讲解)

递归三要素 递归函数以及参数递归终止条件递归单层搜索逻辑 递归伪代码模版: function recursion(level, param1, param2, ...) {//递归终止条件if (level > MAX_LEVEL) {// output resultreturn;}//处理当前层process_data(level, data, ...);//进入下一层re…

10_缓存-2_二级缓存

二级缓存是以namespace为标记的缓存,可以是由一个SqlSessionFactory创建的SqlSession之间共享缓存数据。默认并不开启。下面的代码中创建了两个SqlSession,执行相同的SQL语句,尝试让第二个SqlSession使用第一个SqlSession查询后缓存的数据。要…

CTF Misc(1)图片隐写基础以及原理,覆盖了大部分题型

前言 在ctf比赛中,misc方向是必考的一个方向,其中,图片隐写也是最常见的题目类型,在本篇文章中,将教授以下内容 1.各种图片文件的头数据以及判断是什么类型的图片 2.png图片隐写 3.jpg图片隐写 4.gif图片隐写 5.bmp图…

Android---RecyclerView实现吸顶效果

目录 一、ItemDecoration 二、实现RecyclerView吸顶效果 1、实现一个简单的RecyclerView。 2、通过ItemDecoration画分割线 3、画出每个分组的组名 4、实现吸顶效果 完整demo 一、ItemDecoration ItemDecoration 允许应用给具体的 View 添加具体的图画或者 layout 的偏移…

论文投稿指南——中文核心期刊推荐(物理学)

【前言】 🚀 想发论文怎么办?手把手教你论文如何投稿!那么,首先要搞懂投稿目标——论文期刊 🎄 在期刊论文的分布中,存在一种普遍现象:即对于某一特定的学科或专业来说,少数期刊所含…

[附源码]计算机毕业设计Python的高校课程知识库(程序+源码+LW文档)

该项目含有源码、文档、程序、数据库、配套开发软件、软件安装教程 项目运行 环境配置: Pychram社区版 python3.7.7 Mysql5.7 HBuilderXlist pipNavicat11Djangonodejs。 项目技术: django python Vue 等等组成,B/S模式 pychram管理等…

如何做好源代码防泄密

​ 一、前言 • 各类嵌入式研发及平台软件研发行业,都有自己的核心数据以及核心文档,用户数据等敏感信息,这些信息数据有以下共性: –属于核心机密资料,万一泄密会给造成恶劣影响 –核心数据类型多,有…

验证码是自动化的天敌?看看大神是怎么解决的

01 验证码 1、什么是验证码: 指一种随机生成的信息(数字、字母、汉字、图片、算术题)等为了防止恶意的请求行为,增加应用的安全性 自动化过程中也是需要进行注册或者登陆的操作,所以需要处理验证 2、验证码处理方式…