Graphite 是一种开源工具,用于跟踪和绘制计算机系统的性能,您可以使用它来跟踪网站、应用程序、业务服务和联网服务器的性能。它非常灵活,并且可以进行配置,这样您就可以从详细表示以及对您正在跟踪的指标的性能和健康状况的广泛概述中获益。
Graphite 由几个组件组成:Web 应用程序、名为 Carbon 的存储后端和名为 Whisper 的数据库库,在本教程中,您将学习在 Ubuntu 22.04 服务器上安装和配置 Graphite。
$ sudo apt update && sudo apt upgrade
安装基本实用程序包。其中一些可能已经安装。
$ sudo apt install wget curl nano unzip -y
在安装任何软件包之前,第一步是配置防火墙以允许 HTTP 和 HTTPS 连接。
检查防火墙的状态。
$ sudo ufw status
您应该会看到类似以下内容。
Status: active
To Action From
-- ------ ----
OpenSSH ALLOW Anywhere
OpenSSH (v6) ALLOW Anywhere (v6)
允许 HTTP 和 HTTPS 端口。
$ sudo ufw allow http
$ sudo ufw allow https
再次检查状态以确认。
$ sudo ufw status
Status: active
To Action From
-- ------ ----
OpenSSH ALLOW Anywhere
80/tcp ALLOW Anywhere
443 ALLOW Anywhere
OpenSSH (v6) ALLOW Anywhere (v6)
80/tcp (v6) ALLOW Anywhere (v6)
443 (v6) ALLOW Anywhere (v6)
我们将使用 PIP Python 包管理器安装 Graphite,第一步是安装安装所需的包。
$ sudo apt install vim python3-dev python3-pip libcairo2-dev libffi-dev build-essential
我们将在/opt/graphite目录中安装 Graphite。
$ export PYTHONPATH="/opt/graphite/lib/:/opt/graphite/webapp/"
$ sudo pip install --no-binary=:all: https://github.com/graphite-project/whisper/tarball/master
$ sudo pip install --no-binary=:all: https://github.com/graphite-project/carbon/tarball/master
$ sudo pip install --no-binary=:all: https://github.com/graphite-project/graphite-web/tarball/master
我们将使用 PostgreSQL 的官方 APT 存储库进行安装,运行以下命令以添加 PostgreSQL GPG 密钥。
$ curl https://www.postgresql.org/media/keys/ACCC4CF8.asc | gpg --dearmor | sudo tee /usr/share/keyrings/postgresql-key.gpg >/dev/null
将 APT 存储库添加到您的源列表。
$ sudo sh -c 'echo "deb [signed-by=/usr/share/keyrings/postgresql-key.gpg arch=amd64] http://apt.postgresql.org/pub/repos/apt $(lsb_release -cs)-pgdg main" > /etc/apt/sources.list.d/pgdg.list'
更新系统存储库。
$ sudo apt update
现在,您可以使用以下命令安装 PostgreSQL 和帮助程序包。
$ sudo apt install postgresql postgresql-contrib libpq-dev
检查 PostgreSQL 服务的状态。
$ sudo systemctl status postgresql
? postgresql.service - PostgreSQL RDBMS
Loaded: loaded (/lib/systemd/system/postgresql.service; enabled; vendor preset: enabled)
Active: active (exited) since Tue 2022-09-27 10:09:35 UTC; 4s ago
Process: 4456 ExecStart=/bin/true (code=exited, status=0/SUCCESS)
Main PID: 4456 (code=exited, status=0/SUCCESS)
CPU: 1ms
Sep 27 10:09:35 matrix systemd[1]: Starting PostgreSQL RDBMS...
Sep 27 10:09:35 matrix systemd[1]: Finished PostgreSQL RDBMS.
您可以看到该服务已默认启用并正在运行。
登录到 PostgreSQL shell。
$ sudo -su postgres psql
为 Graphite 创建一个数据库用户。
postgres=# CREATE USER graphite WITH PASSWORD 'your_password';
为 Graphite 创建一个数据库并将所有权授予 Graphite 用户。
postgres=# CREATE DATABASE graphitedb WITH OWNER graphite;
退出 PostgreSQL shell。
postgres=#\q
下一步是配置 Graphite Carbon 和 Graphite web。
Carbon 包括三项服务:
配置carbon-cache是必要的,但是carbon-relay和carbon-aggregator是可选的。
使用给定的示例文件创建carbon.conf文件。
$ sudo cp /opt/graphite/conf/carbon.conf.example /opt/graphite/conf/carbon.conf
接下来,创建存储模式配置。
$ sudo cp /opt/graphite/conf/storage-schemas.conf.example /opt/graphite/conf/storage-schemas.conf
打开存储架构配置文件。
$ sudo nano /opt/graphite/conf/storage-schemas.conf
在里面,你会发现类似的条目
[carbon]
pattern = ^carbon\.
retentions = 60:90d
这意味着与正则表达式匹配的模式^carbon.应使用保留策略 60:90d 保留数据,这意味着
您可以添加自己的条目,让我们举个例子,test即监控数据点,我们的数据点条目将以字符串开头test。此条目应添加到文件底部提到的默认条目之前。
[test]
pattern = ^test\.
retentions = 10s:10m,1m:1h
这将匹配任何以 开头的指标test。它将以不同的细节存储它两次收集的数据。第一个定义 (1s:10m) 将每十秒创建一个数据点。它将仅存储数据十分钟。第二个定义将每分钟创建一个数据点。它将收集过去一分钟的所有数据(六个点,因为之前的定义每十秒创建一个点)并将其聚合以创建点。它将此详细级别的数据存储一小时。
通过按Ctrl + X并在出现提示时 输入Y来保存文件。
启动carbon-cache服务。
$ sudo /opt/graphite/bin/carbon-cache.py start
下一步是配置 Graphite Web 应用程序。
为 Graphite 应用程序生成一个密钥。复制显示的密钥供以后使用。
$ python3 -c 'from django.core.management.utils import get_random_secret_key; print(get_random_secret_key())'
sp%71)6b$%^bc(7xpz1d!)x3(azog01&k^8l02*!y0#)72p07y
创建 Web 应用设置文件。
$ sudo cp /opt/graphite/webapp/graphite/local_settings.py.example /opt/graphite/webapp/graphite/local_settings.py
您需要使用数据库设置配置 Graphite Web 应用程序。打开local_settings.py编辑。
$ sudo nano /opt/graphite/webapp/graphite/local_settings.py
取消注释该SECRET_KEY变量并为其输入一个随机值。
SECRET_KEY = 'your-secret-key'
取消注释ALLOWED_HOSTS变量。
ALLOWED_HOSTS = ['*']
取消注释TIME_ZONE变量并将其设置为适当的值。
TIME_ZONE = 'Asia/Kolkata'
取消注释USE_REMOTE_USER_AUTHENTICATION变量并将其设置为,TRUE以便远程用户在进行任何数据库更改之前获得身份验证。
USE_REMOTE_USER_AUTHENTICATION = True
更改数据库设置。
DATABASES = {
'default': {
'NAME': 'graphitedb',
'ENGINE': 'django.db.backends.postgresql_psycopg2',
'USER': 'graphite',
'PASSWORD': 'your_password',
'HOST': '127.0.0.1',
'PORT': ''
}
}
通过按Ctrl + X并在出现提示时 输入Y来保存文件。
为 Python 的 PostgreSQL 包装器安装一些先决条件。
$ sudo pip install psycopg2-binary
运行以下命令以导入数据库架构。
$ sudo PYTHONPATH=/opt/graphite/webapp/django-admin.py migrate --settings=graphite.settings
您将获得以下输出。
Operations to perform:
Apply all migrations: account, admin, auth, contenttypes, dashboard, events, sessions, tagging, tags, url_shortener
Running migrations:
Applying contenttypes.0001_initial... OK
Applying auth.0001_initial... OK
Applying account.0001_initial... OK
Applying admin.0001_initial... OK
Applying admin.0002_logentry_remove_auto_add... OK
Applying admin.0003_logentry_add_action_flag_choices... OK
Applying contenttypes.0002_remove_content_type_name... OK
Applying auth.0002_alter_permission_name_max_length... OK
Applying auth.0003_alter_user_email_max_length... OK
Applying auth.0004_alter_user_username_opts... OK
Applying auth.0005_alter_user_last_login_null... OK
Applying auth.0006_require_contenttypes_0002... OK
Applying auth.0007_alter_validators_add_error_messages... OK
Applying auth.0008_alter_user_username_max_length... OK
Applying auth.0009_alter_user_last_name_max_length... OK
Applying auth.0010_alter_group_name_max_length... OK
Applying auth.0011_update_proxy_permissions... OK
Applying auth.0012_alter_user_first_name_max_length... OK
Applying dashboard.0001_initial... OK
Applying events.0001_initial... OK
Applying sessions.0001_initial... OK
Applying tagging.0001_initial... OK
Applying tagging.0002_on_delete... OK
Applying tags.0001_initial... OK
Applying url_shortener.0001_initial... OK
接下来,收集静态文件。
$ sudo PYTHONPATH=/opt/graphite/webapp/django-admin.py collectstatic --settings=graphite.settings
设置正确的所有权设置。
$ sudo chown -R www-data:www-data /opt/graphite/storage/
$ sudo chown -R www-data:www-data /opt/graphite/static/
$ sudo chown -R www-data:www-data /opt/graphite/webapp/
创建一个root用户进行登录。
$ sudo PYTHONPATH=/opt/graphite/webapp/ django-admin.py createsuperuser --settings=graphite.settings
Username (leave blank to use 'root'): navjot
Email address: navjot@example.com
Password:
Password (again):
Superuser created successfully.
它会要求您创建一个超级用户。此用户稍后将用于连接到 Graphite 应用程序。
Graphite 默认附带 Apache 配置文件。安装 Apache 服务器。
$ sudo apt install apache2 libapache2-mod-wsgi-py3
创建mod_wsgi文件。
$ sudo cp /opt/graphite/conf/graphite.wsgi.example /opt/graphite/conf/graphite.wsgi
将石墨示例配置文件复制到 Apache 位置。
$ sudo cp /opt/graphite/examples/example-graphite-vhost.conf /etc/apache2/sites-available/graphite.conf
打开 Graphite 配置文件进行编辑。
$ sudo nano /etc/apache2/sites-available/graphite.conf
将第一行中的端口号从 更改80为127.0.0.1:8080。放在127.0.0.1它前面会限制它可以通过网络访问。
<VirtualHost 127.0.0.1:8080>
添加您的域名。
ServerName graph.example.com #替换为您的域
在该行下方添加以下行Alias /static/ /opt/graphite/static/。
#添加以下行
<Directory /opt/graphite/static/>
Require all granted
</Directory>
通过按Ctrl + X并在出现提示时 输入Y来保存文件。
禁用默认虚拟主机并启用 Graphite 虚拟主机文件。
$ sudo a2dissite 000-default
$ sudo a2ensite graphite
我们还需要告诉 Apache 监听 8080 端口并停止监听 80 端口,因为我们将使用 Nginx 作为代理服务器。
打开文件/etc/apache2/ports.conf进行编辑。
$ sudo nano /etc/apache2/ports.conf
找到该行Listen 80并将其替换为以下内容。
Listen 127.0.0.1:8080
通过按Ctrl + X并在出现提示时 输入Y来保存文件。
重新启动 Apache 服务器。
$ sudo systemctl restart apache2
要验证 Graphite 是否正常工作并且可以访问,请运行以下命令。
$ curl 127.0.0.1:8080
您将获得以下输出。
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Frameset//EN" "http://www.w3.org/TR/html4/frameset.dtd">
<!-- Copyright 2008 Orbitz WorldWide
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License. -->
<html>
<head>
<title>Graphite Browser</title>
</head>
<frameset rows="80,*" frameborder="1" border="1">
<frame src="/browser/header" name="Header" id='header' scrolling="no" noresize="true" />
<frame src="/composer?" name="content" id="composerFrame"/>
</frameset>
</html>
这证实它工作正常。
我们将使用 Nginx 作为 Apache 的代理服务器。通过这种方式,我们可以在使用 Graphite 提供的现有配置的同时获得安全性和隐蔽性的好处。
Ubuntu 22.04 附带了旧版本的 Nginx。要安装最新版本,您需要下载官方 Nginx 存储库。
导入 Nginx 的签名密钥。
$ curl https://nginx.org/keys/nginx_signing.key | gpg --dearmor \
| sudo tee /usr/share/keyrings/nginx-archive-keyring.gpg >/dev/null
添加 Nginx 稳定版本的存储库。
$ echo "deb [signed-by=/usr/share/keyrings/nginx-archive-keyring.gpg arch=amd64] \
http://nginx.org/packages/ubuntu `lsb_release -cs` nginx" \
| sudo tee /etc/apt/sources.list.d/nginx.list
更新系统存储库。
$ sudo apt update
安装 Nginx。
$ sudo apt install nginx
验证安装。
$ nginx -v
nginx version: nginx/1.22.0
启动 Nginx 服务器。
$ sudo systemctl start nginx
我们需要安装 Certbot 来生成 SSL 证书。您可以使用 Ubuntu 的存储库安装 Certbot,也可以使用 Snapd 工具获取最新版本。我们将使用 Snapd 版本。
Ubuntu 22.04 默认安装了 Snapd。运行以下命令以确保您的 Snapd 版本是最新的。
$ sudo snap install core
$ sudo snap refresh core
安装 Certbot。
$ sudo snap install --classic certbot
使用以下命令确保可以通过创建指向/usr/bin目录的符号链接来运行 Certbot 命令。
$ sudo ln -s /snap/bin/certbot /usr/bin/certbot
运行以下命令以生成 SSL 证书。
$ sudo certbot certonly --nginx --agree-tos --no-eff-email --staple-ocsp --preferred-challenges http -m name@example.com -d
graph.example.com
上述命令会将证书下载到/etc/letsencrypt/live/graphite.example.com您服务器上的目录中。
生成Diffie-Hellman 组证书。
$ sudo openssl dhparam -dsaparam -out /etc/ssl/certs/dhparam.pem 4096
检查 Certbot 续订调度程序服务。
$ sudo systemctl list-timers
您会发现snap.certbot.renew.service作为计划运行的服务之一。
NEXT LEFT LAST PASSED UNIT ACTIVATES
.................................................................................................................................
Wed 2022-09-28 00:00:00 UTC 7h left Tue 2022-09-27 00:00:01 UTC 16h ago logrotate.timer logrotate.service
Wed 2022-09-28 02:39:09 UTC 10h left Tue 2022-09-27 09:42:42 UTC 6h ago apt-daily.timer apt-daily.service
Wed 2022-09-28 06:02:00 UTC 13h left n/a n/a snap.certbot.renew.timer snap.certbot.renew.service
要检查 SSL 续订是否正常工作,请试运行该过程。
$ sudo certbot renew --dry-run
如果您没有看到任何错误,则说明一切就绪。您的证书将自动更新。
打开文件/etc/nginx/nginx.conf进行编辑。
$ sudo nano /etc/nginx/nginx.conf
在该行之前添加以下行include /etc/nginx/conf.d/*.conf;。
server_names_hash_bucket_size 64;
通过按Ctrl + X并在出现提示时 输入Y来保存文件。
创建并打开文件/etc/nginx/conf.d/uvdesk.conf进行编辑。
$ sudo nano /etc/nginx/conf.d/graphite.conf
将以下代码粘贴到其中。
server {
listen 443 ssl http2;
listen [::]:443 ssl http2;
server_name graphite.example.com;
access_log /var/log/nginx/graphite.access.log;
error_log /var/log/nginx/graphite.error.log;
# SSL
ssl_certificate /etc/letsencrypt/live/graphite.example.com/fullchain.pem;
ssl_certificate_key /etc/letsencrypt/live/graphite.example.com/privkey.pem;
ssl_trusted_certificate /etc/letsencrypt/live/graphite.example.com/chain.pem;
ssl_session_timeout 5m;
ssl_session_cache shared:MozSSL:10m;
ssl_session_tickets off;
ssl_protocols TLSv1.2 TLSv1.3;
ssl_prefer_server_ciphers on;
ssl_ciphers ECDHE-ECDSA-AES128-GCM-SHA256:ECDHE-RSA-AES128-GCM-SHA256:ECDHE-ECDSA-AES256-GCM-SHA384:ECDHE-RSA-AES256-GCM-SHA384:ECDHE-ECDSA-CHACHA20-POLY1305:ECDHE-RSA-CHACHA20-POLY1305:DHE-RSA-AES128-GCM-SHA256:DHE-RSA-AES256-GCM-SHA384;
ssl_ecdh_curve X25519:prime256v1:secp384r1:secp521r1;
ssl_stapling on;
ssl_stapling_verify on;
ssl_dhparam /etc/ssl/certs/dhparam.pem;
resolver 8.8.8.8;
location / {
proxy_set_header Connection "upgrade";
proxy_set_header Upgrade $http_upgrade;
proxy_http_version 1.1;
proxy_set_header Host $http_host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header X-Forwarded-Proto $scheme;
proxy_set_header X-NginX-Proxy true;
proxy_pass http://127.0.0.1:8080;
proxy_redirect off;
}
}
# enforce HTTPS
server {
listen 80;
listen [::]:80;
server_name graphite.example.com;
return 301 https://$host$request_uri;
}
完成后按Ctrl + X并在提示时 输入Y保存文件。
验证 Nginx 配置文件语法。
$ sudo nginx -t
nginx: the configuration file /etc/nginx/nginx.conf syntax is ok
nginx: configuration file /etc/nginx/nginx.conf test is successful
重启 Nginx 服务。
$ sudo systemctl restart nginx
在浏览器中访问 URL https://graphite.example.com
,您将看到以下屏幕。
点击右上角的登录链接,打开登录页面。输入您在第 5 步中创建的超级用户凭据,然后按登录按钮继续。
有几种方法可以向 Graphite 提供数据。我们在 Storage schema 中添加了一个模式匹配器,根据该模式,任何以 test开头的模式都将被记录为我们的模式。让我们使用以下命令添加一些随机数据。
$ echo "test.count 9 `date +%s`" | nc -q0 127.0.0.1 2003;
这将向系统添加一个值为 9 的数据度量。让我们通过循环值来添加更多数据。
$ for i in 4 6 8 16 2; do echo "test.count $i `date +%s`" | nc -q0 127.0.0.1 2003; sleep 6; done
返回 Graphite 仪表板并从左侧边栏中打开Metrics >> test >> count 。您应该会看到类似以下内容。
您现在可以开始使用它进行监控。您还可以将其与 Grafana 结合使用,以获得高级别的自定义。
原创声明:本文系作者授权腾讯云开发者社区发表,未经许可,不得转载。
如有侵权,请联系 cloudcommunity@tencent.com 删除。
原创声明:本文系作者授权腾讯云开发者社区发表,未经许可,不得转载。
如有侵权,请联系 cloudcommunity@tencent.com 删除。