「Karma」の版間の差分
ナビゲーションに移動
検索に移動
Kusanaginoturugi (トーク | 投稿記録) (英語版より新規作成) |
|||
(3人の利用者による、間の5版が非表示) | |||
1行目: | 1行目: | ||
[[Category:ネットワーク監視]] |
[[Category:ネットワーク監視]] |
||
[[Category:ウェブアプリケーション]] |
[[Category:ウェブアプリケーション]] |
||
+ | [[en:Karma]] |
||
− | [https://karma-dashboard.io/ Karma] is an alert dashboard for [[Prometheus#Alerting|Alertmanager]]. It allows the aggregation and deduplication of alerts, as well as the possibility of silencing alerts. |
||
+ | [https://karma-dashboard.io/ Karma] は [[Prometheus#Alerting|Alertmanager]] のアラート ダッシュボードです。これにより、アラートの集約と重複排除、およびアラートのサイレンシングが可能になります。 |
||
− | == |
+ | == インストール == |
− | + | {{AUR|karma-dashboard}} または {{AUR|karma-dashboard-bin}} パッケージを[[インストール]]します。 |
|
− | == |
+ | == 設定 == |
− | Karma |
+ | Karma の設定は、{{ic|/etc/karma/karma.yml}} を編集して、{{ic|karma.service}} を[[開始]]することによって行います。 |
− | === |
+ | === alertmanager プロトコル、アドレス、ポートの変更 === |
− | + | デフォルトの設定では、''alertmanager'' は {{ic|<nowiki>http://localhost:9093</nowiki>}} で動作していると仮定されています。{{ic|uri}} パラメータを変更して、設定を変更してください。 |
|
− | Change the {{ic|uri}} parameter to match your configuration. |
||
{{hc|/etc/karma/karma.yml|2= |
{{hc|/etc/karma/karma.yml|2= |
||
27行目: | 27行目: | ||
}} |
}} |
||
− | {{Note| |
+ | {{Note|サポートされている ''ALERTMANAGER_PROTOCOL'' 値は {{ic|http}} と {{ic|https}} です。}} |
+ | === リスニングアドレスとポートの変更 === |
||
− | === Changing listening address and port === |
||
+ | karmaがリッスンするデフォルトのアドレスとポートを変更したい場合があります。そのためには、{{ic|/etc/karma/karma.yml}} を編集して、以下のパラメータを追加します。 |
||
− | You may want to change the default address and port on which karma listens. To do so, edit {{ic|/etc/karma/karma.yml}} and add the following parameters: |
||
{{hc|/etc/karma/karma.yml|2= |
{{hc|/etc/karma/karma.yml|2= |
||
39行目: | 39行目: | ||
}} |
}} |
||
− | {{Note| |
+ | {{Note|その他の設定パラメータは、[https://github.com/prymitive/karma/blob/main/docs/CONFIGURATION.md 上流のドキュメント]に記載されています。}} |
− | == |
+ | == karma の開始 == |
− | + | {{ic|karma.service}} を[[開始]]して[[有効化]]すると、デフォルトで {{ic|localhost:8080}} でアプリケーションにアクセスできるようになります。 |
|
− | == |
+ | == 参照 == |
* [https://karma-dashboard.io/ Karma official page] |
* [https://karma-dashboard.io/ Karma official page] |
||
* [https://github.com/prymitive/karma Karma Github page] |
* [https://github.com/prymitive/karma Karma Github page] |
||
+ | |||
+ | {{TranslationStatus|Karma|2022-08-01|739656}} |
2024年3月26日 (火) 22:05時点における最新版
Karma は Alertmanager のアラート ダッシュボードです。これにより、アラートの集約と重複排除、およびアラートのサイレンシングが可能になります。
インストール
karma-dashboardAUR または karma-dashboard-binAUR パッケージをインストールします。
設定
Karma の設定は、/etc/karma/karma.yml
を編集して、karma.service
を開始することによって行います。
alertmanager プロトコル、アドレス、ポートの変更
デフォルトの設定では、alertmanager は http://localhost:9093
で動作していると仮定されています。uri
パラメータを変更して、設定を変更してください。
/etc/karma/karma.yml
alertmanager: interval: 1m servers: - name: production uri: ALERTMANAGER_PROTOCOL://ALERTMANAGER_ADDRESS:ALERTMANAGER_PORT/ timeout: 20s proxy: false readonly: true
リスニングアドレスとポートの変更
karmaがリッスンするデフォルトのアドレスとポートを変更したい場合があります。そのためには、/etc/karma/karma.yml
を編集して、以下のパラメータを追加します。
/etc/karma/karma.yml
listen: address: KARMA_ADDRESS port: KARMA_PORT
karma の開始
karma.service
を開始して有効化すると、デフォルトで localhost:8080
でアプリケーションにアクセスできるようになります。