/** * Copyright (c) OpenLens Authors. All rights reserved. * Licensed under MIT License. See LICENSE in root directory for more information. */ import groupBy from "lodash/groupBy"; import compact from "lodash/compact"; import type { KubeObjectStoreOptions } from "../../../common/k8s-api/kube-object.store"; import { KubeObjectStore } from "../../../common/k8s-api/kube-object.store"; import { autoBind } from "../../utils"; import type { KubeEvent, KubeEventApi } from "../../../common/k8s-api/endpoints/events.api"; import type { KubeObject } from "../../../common/k8s-api/kube-object"; import { Pod } from "../../../common/k8s-api/endpoints/pod.api"; import type { GetPodById } from "../+workloads-pods/get-pod-by-id.injectable"; export interface EventStoreDependencies { getPodById: GetPodById; } export class EventStore extends KubeObjectStore { constructor( protected readonly dependencies: EventStoreDependencies, api: KubeEventApi, opts: KubeObjectStoreOptions = {}, ) { super(api, { limit: 1000, ...opts }); autoBind(this); } protected bindWatchEventsUpdater() { return super.bindWatchEventsUpdater(5000); } protected sortItems(items: KubeEvent[]) { return super.sortItems(items, [ event => -event.getCreationTimestamp(), // keep events order as timeline ("fresh" on top) ], "asc"); } getEventsByObject(obj: KubeObject): KubeEvent[] { return this.items.filter(evt => { if(obj.kind == "Node") { return obj.getName() == evt.involvedObject.uid && evt.involvedObject.kind == "Node"; } return obj.getId() == evt.involvedObject.uid; }); } getWarnings() { const warnings = this.items.filter(event => event.type == "Warning"); const groupsByInvolvedObject = groupBy(warnings, warning => warning.involvedObject.uid); const eventsWithError = Object.values(groupsByInvolvedObject).map(events => { const recent = events[0]; const { kind, uid } = recent.involvedObject; if (kind == Pod.kind) { // Wipe out running pods const pod = this.dependencies.getPodById(uid); if (!pod || (!pod.hasIssues() && (pod.spec?.priority ?? 0) < 500000)) { return undefined; } } return recent; }); return compact(eventsWithError); } getWarningsCount() { return this.getWarnings().length; } }