Skip to content

Commit edf1303

Browse files
committed
added kiali_ prefix
Signed-off-by: Hayk Hovsepyan <[email protected]>
1 parent 11e2fb6 commit edf1303

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -435,7 +435,7 @@ In case multi-cluster support is enabled (default) and you have access to multip
435435
- `rateInterval` (`string`) - Rate interval for fetching error rate (e.g., '10m', '5m', '1h'). Default: '10m'
436436
- `type` (`string`) - Type of health to retrieve: 'app', 'service', or 'workload'. Default: 'app'
437437

438-
- **mesh_health_summary** - Get aggregated health summary for the entire mesh or specific namespaces. Returns overall availability, error rates, and counts of healthy/unhealthy entities across apps, services, and workloads. Provides global and per-namespace breakdowns with identification of top unhealthy entities. This endpoint aggregates health data from apps, services, and workloads to provide a comprehensive view of mesh health at both the global level and per-namespace level. Health status follows Kiali's tolerance-based logic for error thresholds (HTTP "-"/5xx: degraded >0%, failure ≥10%; HTTP 4xx: degraded ≥10%, failure ≥20%; gRPC errors: degraded >0%, failure ≥10%).
438+
- **kiali_mesh_health_summary** - Get aggregated health summary for the entire mesh or specific namespaces. Returns overall availability, error rates, and counts of healthy/unhealthy entities across apps, services, and workloads. Provides global and per-namespace breakdowns with identification of top unhealthy entities. This endpoint aggregates health data from apps, services, and workloads to provide a comprehensive view of mesh health at both the global level and per-namespace level. Health status follows Kiali's tolerance-based logic for error thresholds (HTTP "-"/5xx: degraded >0%, failure ≥10%; HTTP 4xx: degraded ≥10%, failure ≥20%; gRPC errors: degraded >0%, failure ≥10%).
439439
- `namespaces` (`string`) - Comma-separated list of namespaces to include in summary (e.g. 'bookinfo,default'). If not provided, summarizes health for all accessible namespaces
440440
- `rateInterval` (`string`) - Rate interval for fetching error rate (e.g., '10m', '5m', '1h'). Default: '10m'
441441
- `queryTime` (`string`) - Unix timestamp (in seconds) for the prometheus query. If not provided, uses current time. Optional

pkg/toolsets/kiali/health.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ func initHealthSummary() []api.ServerTool {
5757
// Mesh health summary tool
5858
ret = append(ret, api.ServerTool{
5959
Tool: api.Tool{
60-
Name: "mesh_health_summary",
60+
Name: "kiali_mesh_health_summary",
6161
Description: "Get aggregated health summary for the entire mesh or specific namespaces. Returns overall availability, error rates, and counts of healthy/unhealthy entities across apps, services, and workloads. Provides global and per-namespace breakdowns with identification of top unhealthy entities.",
6262
InputSchema: &jsonschema.Schema{
6363
Type: "object",

0 commit comments

Comments
 (0)