您好,登錄后才能下訂單哦!
這篇文章將為大家詳細(xì)講解有關(guān)Thanos中怎么實(shí)現(xiàn)Prometheus指標(biāo)聯(lián)邦,文章內(nèi)容質(zhì)量較高,因此小編分享給大家做個(gè)參考,希望大家閱讀完這篇文章后對(duì)相關(guān)知識(shí)有一定的了解。
我們將需要以下Thanos組件:
Thanos存儲(chǔ)gateway
Thanos接收器(receiver)
Thanos查詢器(querier)
對(duì)象存儲(chǔ)
該解決方案如下所示:
+ Tenant's Premise | Provider Premise | | +------------------------+ | | | | +-------->+ Object Storage | | | | | | | +-----------+------------+ | | ^ | | S3 API | S3 API | | | | | +-----------+------------+ | | | | Store API | | | Thanos Store Gateway +<-----------------------+ | | | | | | | +------------------------+ | | | | | +---------------------+ | | | | +--------------+ | +-----------+------------+ +---------+--------+ | | | Remote | | Store API | | | Prometheus +------------->+ Thanos Receiver +<-------------+ Thanos Querier | | | | Write | | | | +--------------+ | +------------------------+ +---------+--------+ | ^ | | +--------------+ | | | | | PromQL | | User +----------------------------------------------------------------+ | | | +--------------+ | +
來源:Thanos receive proposal
Thanos支持若干對(duì)象存儲(chǔ)配置。我們將使用MinIO作為我們的對(duì)象存儲(chǔ)。你需要在名為thanos-objectStorage的secret中定義對(duì)象存儲(chǔ),它需要在你的Thanos deployment命名空間中。
thanos-config.yaml
如下所示:
type: s3 config: bucket: thanos endpoint: ${minio-endpoint} access_key: ${minio-access-key} secret_key: ${minio-secret-key} insecure: true
你可以按照以下方式創(chuàng)建secret:
kubectl create secret generic thanos-objectstorage --from-file=thanos.yaml="$PATH_TO_CONFIG"/thanos-config.yaml
與Rancher監(jiān)控operator打包的Prometheus版本已經(jīng)支持remote_read
和remote_write
集成。
Thanos receive endpoint的額外設(shè)置可以通過高級(jí)選項(xiàng)傳遞,如下所示:
我們需要按照Prometheus remote_write
規(guī)范的要求,指定一個(gè)唯一的名字。
# The name will be used in metrics and logging in place of a generated value to help users distinguish between # remote write configs. [ name: <string> ]
你完成了監(jiān)控的部署之后,你應(yīng)該可以使用Thanos查詢器查看你的指標(biāo)。
已存儲(chǔ)的指標(biāo)也將在對(duì)象存儲(chǔ)中獲取。
由于所有的集群指標(biāo)在這個(gè)Thanos安裝中都是可用的,所以工作負(fù)載的所有者需要確保對(duì)工作負(fù)載和指標(biāo)的訪問是安全的。
關(guān)于Thanos中怎么實(shí)現(xiàn)Prometheus指標(biāo)聯(lián)邦就分享到這里了,希望以上內(nèi)容可以對(duì)大家有一定的幫助,可以學(xué)到更多知識(shí)。如果覺得文章不錯(cuò),可以把它分享出去讓更多的人看到。
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。