欧美一级特黄大片做受成人-亚洲成人一区二区电影-激情熟女一区二区三区-日韩专区欧美专区国产专区

graphite在centos7上的部署搭建-創(chuàng)新互聯(lián)

Graphite安裝筆記

實驗環(huán)境: CentOS7.5 x64

在楚雄州等地區(qū),都構(gòu)建了全面的區(qū)域性戰(zhàn)略布局,加強(qiáng)發(fā)展的系統(tǒng)性、市場前瞻性、產(chǎn)品創(chuàng)新能力,以專注、極致的服務(wù)理念,為客戶提供網(wǎng)站制作、成都網(wǎng)站設(shè)計 網(wǎng)站設(shè)計制作按需開發(fā),公司網(wǎng)站建設(shè),企業(yè)網(wǎng)站建設(shè),成都品牌網(wǎng)站建設(shè),營銷型網(wǎng)站建設(shè),外貿(mào)網(wǎng)站制作,楚雄州網(wǎng)站建設(shè)費(fèi)用合理。

部署python的程序推薦使用virtualenv這列的虛擬環(huán)境來進(jìn)行,防止污染系統(tǒng)自帶的python包。

安裝一些必要的rpm包

yum install cairo? --另外的2個包 cairo-devel pycairo 可以不用安裝

安裝virtualenv

yum install python-pip

pip install virtualenv

激活虛擬環(huán)境

virtualenv /opt/graphite

source /opt/graphite/bin/activate

安裝graphite全套組件

export PYTHONPATH="/opt/graphite/lib/:/opt/graphite/webapp/"

pip install --no-binary=:all: https://github.com/graphite-project/whisper/tarball/master

pip install --no-binary=:all: https://github.com/graphite-project/carbon/tarball/master

pip install --no-binary=:all: https://github.com/graphite-project/graphite-web/tarball/master

如果這步提示某個依賴包版本不對,我們可以先人工執(zhí)行下pip安裝依賴包。下面提供了一個正常運(yùn)行的graphite上看到的pip包清單:

attrs==19.1.0

Automat==0.7.0

cachetools==3.1.1

cairocffi==0.9.0

cffi==1.12.3

constantly==15.1.0

Django==1.11.24

django-tagging==0.4.3

gunicorn==19.9.0

hyperlink==19.0.0

idna==2.8

incremental==17.5.0

pycparser==2.19

PyHamcrest==1.9.0

pyparsing==2.4.2

pytz==2019.2

scandir==1.10.0

six==1.12.0

Twisted==19.7.0

txAMQP==0.8.2

urllib3==1.25.3

whisper==1.2.0

zope.interface==4.6.0

初始化

cd /opt/graphite/webapp/graphite

cp local_settings.py.example local_settings.py

vim local_settings.py修改如下3行代碼:

CONF_DIR = '/opt/graphite/conf'

STORAGE_DIR = '/opt/graphite/storage'

STATIC_ROOT = '/opt/graphite/webapp/content'

LOG_DIR = '/opt/graphite/storage/log/webapp'

初始化下數(shù)據(jù),不然后面啟動graphite后會提示no such user 這類報錯

cd? /opt/graphite/webapp

PYTHONPATH=/opt/graphite/webapp django-admin.py migrate --settings=graphite.settings --run-syncdb??##如果上面第一步時候沒有yum install cairo的話,這步會報錯

拷貝graphite的配置文件

cd /opt/graphite/conf/

cp carbon.conf.example carbon.conf

cp storage-schemas.conf.example storage-schemas.conf? ?一般會改動這個文件里面的配置,達(dá)到自定義key存儲周期

cp relay-rules.conf.example relay-rules.conf

cp dashboard.conf.example dashboard.conf

cp graphTemplates.conf.example graphTemplates.conf

cp blacklist.conf.example? blacklist.conf

cp aggregation-rules.conf.example aggregation-rules.conf

cp storage-aggregation.conf.example storage-aggregation.conf

啟動graphite套件

/opt/graphite/bin/carbon-relay.py start

/opt/graphite/bin/carbon-cache.py start

ss -lntp | egrep carbon

LISTEN???? 0????? 50?????????? *:7002???????????????????? *:*??????????????? ???users:(("carbon-cache.py",pid=48433,fd=11))

LISTEN???? 0????? 50?????????? *:2013???????????????????? *:*?????????????????? users:(("carbon-relay.py",pid=37683,fd=13))

LISTEN???? 0????? 50?????????? *:2014???????????????????? *:*?????????????????? users:(("carbon-relay.py",pid=37683,fd=15))

LISTEN???? 0????? 50?????????? *:2003???????????????????? *:*?????????????????? users:(("carbon-cache.py",pid=48433,fd=13))

LISTEN???? 0????? 50?????????? *:2004???????????????????? *:*?????????????????? users:(("carbon-cache.py",pid=48433,fd=14))

/opt/graphite/bin/run-graphite-devel-server.py --port=8085 --libs=/opt/graphite/webapp /opt/graphite?前臺啟動

啟動打點測試進(jìn)程

python /opt/graphite/examples/example-client.py

安裝nginx

yum install nginx

cd /etc/nginx/conf.d

cat graphite.conf? 內(nèi)容如下:

upstream graphite {

server 127.0.0.1:8085 fail_timeout=0;

}

server {

listen 80 default_server;

server_name _;

root /opt/graphite/webapp;

access_log /var/log/nginx/graphite.access.log;

error_log? /var/log/nginx/graphite.error.log;

location = /favicon.ico {

return 204;

}

# serve static content from the "content" directory

location /static {

alias /opt/graphite/webapp/content;

expires max;

}

location / {

try_files $uri @graphite;

}

location @graphite {

proxy_pass_header Server;

proxy_set_header Host $http_host;

proxy_redirect off;

proxy_set_header X-Real-IP $remote_addr;

proxy_set_header X-Scheme $scheme;

proxy_connect_timeout 10;

proxy_read_timeout 10;

proxy_pass http://graphite;

}

}

創(chuàng)建nginx相關(guān)文件

touch /var/log/nginx/graphite.access.log

touch /var/log/nginx/graphite.error.log

chmod 640 /var/log/nginx/graphite.*

chown nginx.nginx /var/log/nginx/graphite.*

啟動nginx

nginx -t

systemctl start nginx

訪問 192.168.2.4/ 如下圖

graphite在centos7上的部署搭建

可以看到已經(jīng)有數(shù)據(jù)采集到了。

我們可以到grafana里面配下graphite的數(shù)據(jù)源,然后展示數(shù)據(jù),類似如下:

graphite在centos7上的部署搭建

啟動brubeck(前臺)? 【一款類似statsd的工具,只是不需要nodejs環(huán)境】

yum install jansson jansson-devel

yum install libmicrohttpd libmicrohttpd-devel

git clone https://github.com/github/brubeck.git

cd brubeck/

./script/bootstrap

mkdir /usr/local/brubeck/

cp brubeck /usr/local/brubeck/

vim /usr/local/brubeck/brubeck.json? 增加配置文件如下:

{

"sharding" : false,

"server_name" : "prod-devops-graphite-01",

"dumpfile" : "/var/lib/brubeck.dump",

"capacity" : 15,

"expire" : 20,

"http" : ":8000",

"backends" : [

{

"type" : "carbon",

"address" : "localhost",

"port" : 2003,

"frequency" : 10

}

],

"samplers" : [

{

"type" : "statsd",

"address" : "0.0.0.0",

"port" : 8135,

"workers" : 8,

????"multisock" : true,

"multimsg" : 8

}

]

}

【brubeck監(jiān)聽在8135端口上,用于接收業(yè)務(wù)方的打點。2003 端口指的是carbon-cache的端口】

./brubeck --config brubeck.json??前臺啟動進(jìn)程

測試打點到brubeck

echo "db.dba.dble2.front_conn:11111|g" | nc -u -w1 127.0.0.1 8135

修改graphite存儲數(shù)據(jù)的周期

cd /opt/graphite/conf

vim storage-schemas.conf

# Schema definitions for Whisper files. Entries are scanned in order,

# and first match wins. This file is scanned for changes every 60 seconds.

#

#? [name]

#? pattern = regex

#? retentions = timePerPoint:timeToStore, timePerPoint:timeToStore, ...

# Carbon's internal metrics. This entry should match what is specified in

# CARBON_METRIC_PREFIX and CARBON_METRIC_INTERVAL settings

[carbon]

pattern = ^carbon\.

retentions = 60:90d

[service-sla]

pattern = ^service.sla-pct.*

retentions = 10s:2d,1min:8d,10min:365d

[service1-rule]

pattern = ^service1\.timers\.Rule.*

retentions = 10s:5min,1min:1h,10min:7d

[service1-ic]

pattern = ^service1\.counters\.IC.*

retentions = 10s:24h,1min:7d

[logstash]

pattern = service1\.counters\.logstash.*

retentions = 10s:24h,1min:7d

[service1-timers]

pattern = ^service1\.timers\.*

retentions = 10s:5min,1min:1h,10min:1d,1h:365d

[service]

pattern = ^service1.*

retentions = 10s:24h,1min:6d,10min:365d

[counter]

pattern = ^.*\.counters\..*

retentions = 10s:24h,1min:7d,10min:30d

[timers]

pattern = ^.*\.timers\..*

retentions = 10s:5min,1min:1h,10min:1d,1h:30d

[db]

pattern = ^db\.*

retentions = 1min:30d

[default_10s_for_1hour]

pattern = .*

retentions = 10s:1h

vim storage-aggregation.conf? 內(nèi)容如下:

[min]

pattern = \.min$

xFilesFactor = 0.01

aggregationMethod = min

[max]

pattern = \.max$

xFilesFactor = 0.01

aggregationMethod = max

[all_sum]

pattern = \.sum$

xFilesFactor = 0.01

aggregationMethod = sum

[all_count]

pattern = \.count$

xFilesFactor = 0.01

aggregationMethod = sum

[service1_gauges]

pattern = ^service1.gauges

xFilesFactor = 0.01

aggregationMethod = last

[service1_counters]

pattern = ^service1\.counters

xFilesFactor = 0.01

aggregationMethod = sum

[service1]

pattern = ^service1.*

xFilesFactor = 0.01

[default_average]

pattern = .*

xFilesFactor = 0.01

aggregationMethod = average

注意,? 修改為上面的2個文件后, 我們需要重啟 carbon-cache進(jìn)程才能生效。

建議:

1、graphite-web進(jìn)程,建議通過supervisor來控制啟停。

2、個人認(rèn)為brubeck比statsd更好使,例如有些機(jī)器上可能不便于部署nodejs環(huán)境

另外有需要云服務(wù)器可以了解下創(chuàng)新互聯(lián)cdcxhl.cn,海內(nèi)外云服務(wù)器15元起步,三天無理由+7*72小時售后在線,公司持有idc許可證,提供“云服務(wù)器、裸金屬服務(wù)器、高防服務(wù)器、香港服務(wù)器、美國服務(wù)器、虛擬主機(jī)、免備案服務(wù)器”等云主機(jī)租用服務(wù)以及企業(yè)上云的綜合解決方案,具有“安全穩(wěn)定、簡單易用、服務(wù)可用性高、性價比高”等特點與優(yōu)勢,專為企業(yè)上云打造定制,能夠滿足用戶豐富、多元化的應(yīng)用場景需求。

網(wǎng)頁名稱:graphite在centos7上的部署搭建-創(chuàng)新互聯(lián)
文章網(wǎng)址:http://aaarwkj.com/article12/jcidc.html

成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供App設(shè)計、Google企業(yè)網(wǎng)站制作、面包屑導(dǎo)航、移動網(wǎng)站建設(shè)、微信小程序

廣告

聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請盡快告知,我們將會在第一時間刪除。文章觀點不代表本網(wǎng)站立場,如需處理請聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時需注明來源: 創(chuàng)新互聯(lián)

手機(jī)網(wǎng)站建設(shè)
亚洲熟女av综合网五月| 亚洲黄色录像一区二区人妻黑人 | 亚洲和欧洲一码二码区视频| 男人天堂av在线资源| 午夜少妇伦理一区二区| 久久精品国产亚洲av一| 久久一区二区三区播放| 亚洲婷婷综合精品五月天| 亚洲综合av一区二区三区四区| 国产精品欧美日韩中文| 日韩亚洲av在线免费观看| 亚洲精品一区二区午夜| av中文字幕乱码在线看| 人人妻夜夜天天俺去添噜| 91麻豆粉色视频在线| 女同同性av观看免费| 亚洲av第一区国产精品| 欧洲一区二区三区黄色 | 最新国产不卡一区二区| 高清av网站大全网站| 国产亚洲一区二区日韩欧美| 人妇乱系列中文字幕人妻| 欧美国产日韩在线一区二区三区| 亚洲熟妇av一区二区| 激情网站免费在线观看| 国产情侣自拍视频在线观看| 人妻日韩字幕一区二区| 国产精品人妻在线av| 欧美一区二区国产日韩在线| 精品欧美不卡在线播放| 深夜释放自己污在线看| 最新中文字幕成人在线观看| 一区二区三区蜜桃91| 91欧美视频在线观看| 国产精品亚洲二区三区三州| 国产精品熟女亚洲av| 2022国产精品一区| 九九免费在线视频观看| 素人人妻一区二区三区| 欧美日韩国产精品高清| 黄色高清无遮挡在线观看|