/** * Copyright (c) OpenLens Authors. All rights reserved. * Licensed under MIT License. See LICENSE in root directory for more information. */ import type { DerivedKubeApiOptions, IgnoredKubeApiOptions } from "../kube-api"; import { KubeApi } from "../kube-api"; import type { ClusterScopedMetadata, KubeObjectStatus } from "../kube-object"; import { KubeObject } from "../kube-object"; import { metricsApi } from "./metrics.api"; import type { PodMetricData } from "./pod.api"; export enum NamespaceStatusKind { ACTIVE = "Active", TERMINATING = "Terminating", } export interface NamespaceSpec { finalizers?: string[]; } export interface NamespaceStatus extends KubeObjectStatus { phase?: string; } export class Namespace extends KubeObject< ClusterScopedMetadata, NamespaceStatus, NamespaceSpec > { static readonly kind = "Namespace"; static readonly namespaced = false; static readonly apiBase = "/api/v1/namespaces"; getStatus() { return this.status?.phase ?? "-"; } } export class NamespaceApi extends KubeApi { constructor(opts: DerivedKubeApiOptions & IgnoredKubeApiOptions = {}) { super({ ...opts, objectConstructor: Namespace, }); } } export function getMetricsForNamespace(namespace: string, selector = ""): Promise { const opts = { category: "pods", pods: ".*", namespace, selector }; return metricsApi.getMetrics({ cpuUsage: opts, memoryUsage: opts, fsUsage: opts, fsWrites: opts, fsReads: opts, networkReceive: opts, networkTransmit: opts, }, { namespace, }); }