3
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

LibertyのメトリクスをPrometheus/Grafanaで確認する

Last updated at Posted at 2019-02-04

LibertyのメトリクスをPrometheus/Grafanaで表示する方法を確認する。以下の記事に書いた手順でPrometheus/Grafanaがデプロイ済みのMinikube環境を使用。

アプリケーションの準備

サンプルとしてここに置いてあるとても簡単なJavaアプリケーションを使用する。Libertyサーバーでは、mpMetrics-1.1フィーチャーとmonitor-1.0を有効化する。

server.xml
...
  <featureManager>
...
    <feature>mpMetrics-1.1</feature>
    <feature>monitor-1.0</feature>
  </featureManager>
...
  <mpMetrics authentication="false" />
...

mpMetrics-1.1フィーチャーを有効にすると、/metricsでメトリクス情報が公開されるようになる。monitor-1.0を有効にすると、baseだけでなくvendorスコープのメトリクスがとれるようになる。どのようなメトリクスがとれるかなどは、以下の記事にも書いているのでそちらを参照。

このアプリケーションを稼働させるLibertyコンテナイメージをsotoiwa540/sample:1.0としてDockerHubにPushし、以下ではこのイメージを使用する。

Dockerfile
FROM websphere-liberty:18.0.0.4-webProfile8
COPY --chown=1001:0 server.xml /config/
RUN installUtility install --acceptLicense defaultServer
COPY --chown=1001:0 mysql-connector-java-8.0.13.jar /config/resources/mysql/
COPY --chown=1001:0 sample.war /config/apps/
docker build -t sotoiwa540/sample:1.0 .
docker push sotoiwa540/sample:1.0

アプリケーションのデプロイ

デプロイ先のNamespaceを作成する。

kubectl create ns liberty

マニフェストを作成し、デプロイする。

liberty-deployment.yaml
apiVersion: apps/v1
kind: Deployment
metadata:
  name: liberty
spec:
  selector:
    matchLabels:
      app: liberty
  replicas: 2
  template:
    metadata:
      labels:
        app: liberty
    spec:
      containers:
      - name: liberty
        image: sotoiwa540/sample:1.0
        imagePullPolicy: Always
        ports:
        - containerPort: 9080
kubectl apply -f liberty-deployment.yaml -n liberty

サービスの作成

PrometheusがLibertyの性能情報を取得するようにするには、Service定義にアノテーションを追加する。

liberty-service.yaml
apiVersion: v1
kind: Service
metadata:
  name: liberty
  annotations:
    prometheus.io/scrape: "true"
    prometheus.io/port: "9080"
spec:
  type: ClusterIP
  selector:
    app: liberty
  ports:
  - protocol: TCP
    port: 9080
kubectl apply -f liberty-service.yaml -n liberty

メトリクスの確認

Prometheusのメニューで、Status > Targetsを確認する。

image.png

kubernertes-service-endpointsにLibertyのエンドポイントが追加されたことを確認。

image.png

base:vendor:と入力してみて、mpMetricsフィーチャーのメトリクスが取得できるようになっていることを確認。

image.png

image.png

試しにbase:memory_used_heap_bytesを入力し、Executeを実行して値を確認する。Libertyのレプリカ数が2のため、それぞれの直近のデータが表示される。

image.png

Grafanaでの表示

パネルを追加し、base:memory_used_heap_bytes(ヒープの使用量)とbase:memory_committed_heap_bytes(ヒープサイズ)のクエリーを入力する。base:memory_max_heap_bytes(最大ヒープサイズ)も表示させてもいいかもしれない。凡例はinstanceのラベルを表示させているが、これはServiceのEndpointであり、Pod名ではないのがちょっと不便かもしれない。

image.png

以下のようなダッシュボードが表示できた。

image.png

Pod名の表示

ServiceのEndpointではなくPod名を表示させるには、Prometheusのscrape_configsをカスタマイズして、Pod名のラベルにつけてあげる必要がある。現在の設定はStatus > Configurationから確認できる。

image.png

設定はprometheus-serverというConfigMapに格納されている。カスタマイズはChartのリリース時に指定できる。既にチャートをリリース済みの場合は、チャートのパラメータを修正してhelm upgradeで適用することができるし、ConfigMapを直接修正してもよい。

チャートのパラメータを修正する場合はデフォルトの他のものも含めて書く必要がありそう。今回は簡単にConfigMapを修正する。

kubectl edit cm prometheus-server -n monitoring

以下を追加。

...
    - job_name: kubernetes-service-endpoints
      kubernetes_sd_configs:
      - role: endpoints
      relabel_configs:
...
      - action: replace
        source_labels:
        - __meta_kubernetes_pod_name
        target_label: kubernetes_pod
...

ラベルが追加されていることを確認。

image.png

Grafanaでもこのラベルを凡例に指定する。

image.png

3
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
3
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?