extras/prometheus/oss/rules.yaml (58 lines of code) (raw):
# Copyright 2023 Google LLC
#
# 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.
---
apiVersion: monitoring.coreos.com/v1
kind: PrometheusRule
metadata:
name: uptime-rule
spec:
groups:
- name: Micro services uptime
interval: 60s
rules:
- alert: BalancereaderUnavaiable
expr: probe_success{app="bank-of-anthos",job="balancereader"} == 0
for: 1m
annotations:
summary: Balance Reader Service is unavailable
description: Check Balance Reader pods and it's logs
labels:
severity: 'critical'
- alert: ContactsUnavaiable
expr: probe_success{app="bank-of-anthos",job="contacts"} == 0
for: 1m
annotations:
summary: Contacs Service is unavailable
description: Check Contacs pods and it's logs
labels:
severity: 'warning'
- alert: FrontendUnavaiable
expr: probe_success{app="bank-of-anthos",job="frontend"} == 0
for: 1m
annotations:
summary: Frontend Service is unavailable
description: Check Frontend pods and it's logs
labels:
severity: 'critical'
- alert: LedgerwriterUnavaiable
expr: probe_success{app="bank-of-anthos",job="ledgerwriter"} == 0
for: 1m
annotations:
summary: Ledger Writer Service is unavailable
description: Check Ledger Writer pods and it's logs
labels:
severity: 'critical'
- alert: TransactionhistoryUnavaiable
expr: probe_success{app="bank-of-anthos",job="transactionhistory"} == 0
for: 1m
annotations:
summary: Transaction History Service is unavailable
description: Check Transaction History pods and it's logs
labels:
severity: 'critical'
- alert: UserserviceUnavaiable
expr: probe_success{app="bank-of-anthos",job="userservice"} == 0
for: 1m
annotations:
summary: User Service is unavailable
description: Check User Service pods and it's logs
labels:
severity: 'critical'