The open and composable observability and data visualization platform. Visualize metrics, logs, and traces from multiple sources like Prometheus, Loki, Elasticsearch, InfluxDB, Postgres and many more.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
grafana/public/app/features/alerting/unified/utils/k8s/errors.ts

46 lines
1.5 KiB

import { get } from 'lodash';
import { FetchError, isFetchError } from '@grafana/runtime';
import { t } from 'app/core/internationalization';
export type SupportedErrors = 'alerting.notifications.conflict' | string;
export const ERROR_NEWER_CONFIGURATION = 'alerting.notifications.conflict';
/** This function gives us the opportunity to translate or transform error codes that are returned from the Kubernetes APIs */
export function getErrorMessageFromCode(code: string): string | undefined {
const errorMessageMap: Record<SupportedErrors, string> = {
[ERROR_NEWER_CONFIGURATION]: t(
'alerting.policies.update-errors.conflict',
'The notification policy tree has been updated by another user.'
),
};
return errorMessageMap[code];
}
export type ApiMachineryError = {
kind: 'Status';
apiVersion: string;
code: number;
details: {
uid: string;
name?: string;
group?: string;
kind?: string;
retryAfterSeconds?: number;
causes?: []; // @TODO type this, see apimachinery@v0.31.1/pkg/apis/meta/v1/types.go
};
status: 'Failure';
metadata?: Record<string, unknown>;
message: string;
reason: string;
};
export function isApiMachineryError(error: unknown): error is FetchError<ApiMachineryError> {
return isFetchError(error) && get(error.data, 'kind') === 'Status' && get(error.data, 'status') === 'Failure';
}
export function matchesApiMachineryError(error: unknown, uid: string) {
return isApiMachineryError(error) && error.data.details.uid === uid;
}