mirror of
https://github.com/lensapp/lens.git
synced 2025-05-20 05:10:56 +00:00
308 lines
9.3 KiB
TypeScript
308 lines
9.3 KiB
TypeScript
import "./pod-logs-dialog.scss";
|
|
|
|
import * as React from "react";
|
|
import { observable } from "mobx";
|
|
import { observer } from "mobx-react";
|
|
import { t, Trans } from "@lingui/macro";
|
|
import { _i18n } from "../../i18n";
|
|
import { Dialog, DialogProps } from "../dialog";
|
|
import { Wizard, WizardStep } from "../wizard";
|
|
import { IPodContainer, Pod, podsApi } from "../../api/endpoints";
|
|
import { Icon } from "../icon";
|
|
import { Select, SelectOption } from "../select";
|
|
import { Spinner } from "../spinner";
|
|
import { cssNames, downloadFile, interval } from "../../utils";
|
|
import { default as AnsiUp } from "ansi_up";
|
|
import DOMPurify from "dompurify"
|
|
|
|
interface IPodLogsDialogData {
|
|
pod: Pod;
|
|
container?: IPodContainer;
|
|
}
|
|
|
|
interface Props extends Partial<DialogProps> {
|
|
}
|
|
|
|
@observer
|
|
export class PodLogsDialog extends React.Component<Props> {
|
|
@observable static isOpen = false;
|
|
@observable static data: IPodLogsDialogData = null;
|
|
|
|
static open(pod: Pod, container?: IPodContainer) {
|
|
PodLogsDialog.isOpen = true;
|
|
PodLogsDialog.data = { pod, container };
|
|
}
|
|
|
|
static close() {
|
|
PodLogsDialog.isOpen = false;
|
|
}
|
|
|
|
get data() {
|
|
return PodLogsDialog.data;
|
|
}
|
|
|
|
private logsArea: HTMLDivElement;
|
|
private refresher = interval(5, () => this.load());
|
|
private containers: IPodContainer[] = []
|
|
private initContainers: IPodContainer[] = []
|
|
private lastLineIsShown = true; // used for proper auto-scroll content after refresh
|
|
private colorConverter = new AnsiUp();
|
|
|
|
@observable logs = ""; // latest downloaded logs for pod
|
|
@observable newLogs = ""; // new logs since dialog is open
|
|
@observable logsReady = false;
|
|
@observable selectedContainer: IPodContainer;
|
|
@observable showTimestamps = true;
|
|
@observable tailLines = 1000;
|
|
|
|
lineOptions = [
|
|
{ label: _i18n._(t`All logs`), value: Number.MAX_SAFE_INTEGER },
|
|
{ label: 1000, value: 1000 },
|
|
{ label: 10000, value: 10000 },
|
|
{ label: 100000, value: 100000 },
|
|
]
|
|
|
|
onOpen = async () => {
|
|
const { pod, container } = this.data;
|
|
this.containers = pod.getContainers();
|
|
this.initContainers = pod.getInitContainers();
|
|
this.selectedContainer = container || this.containers[0];
|
|
await this.load();
|
|
this.refresher.start();
|
|
}
|
|
|
|
onClose = () => {
|
|
this.resetLogs();
|
|
this.refresher.stop();
|
|
}
|
|
|
|
close = () => {
|
|
PodLogsDialog.close();
|
|
}
|
|
|
|
load = async () => {
|
|
if (!this.data) return;
|
|
const { pod } = this.data;
|
|
try {
|
|
// if logs already loaded, check the latest timestamp for getting updates only from this point
|
|
const logsTimestamps = this.getTimestamps(this.newLogs || this.logs);
|
|
let lastLogDate = new Date(0)
|
|
if (logsTimestamps) {
|
|
lastLogDate = new Date(logsTimestamps.slice(-1)[0]);
|
|
lastLogDate.setSeconds(lastLogDate.getSeconds() + 1); // avoid duplicates from last second
|
|
}
|
|
const namespace = pod.getNs();
|
|
const name = pod.getName();
|
|
const logs = await podsApi.getLogs({ namespace, name }, {
|
|
container: this.selectedContainer.name,
|
|
timestamps: true,
|
|
tailLines: this.tailLines ? this.tailLines : undefined,
|
|
sinceTime: lastLogDate.toISOString(),
|
|
});
|
|
if (!this.logs) {
|
|
this.logs = logs;
|
|
}
|
|
else if (logs) {
|
|
this.newLogs = `${this.newLogs}\n${logs}`.trim();
|
|
}
|
|
} catch (error) {
|
|
this.logs = [
|
|
_i18n._(t`Failed to load logs: ${error.message}`),
|
|
_i18n._(t`Reason: ${error.reason} (${error.code})`),
|
|
].join("\n")
|
|
}
|
|
this.logsReady = true;
|
|
}
|
|
|
|
reload = async () => {
|
|
this.resetLogs();
|
|
this.refresher.stop();
|
|
await this.load();
|
|
this.refresher.start();
|
|
}
|
|
|
|
componentDidUpdate() {
|
|
// scroll logs only when it's already in the end,
|
|
// otherwise it can interrupt reading by jumping after loading new logs update
|
|
if (this.logsArea && this.lastLineIsShown) {
|
|
this.logsArea.scrollTop = this.logsArea.scrollHeight;
|
|
}
|
|
}
|
|
|
|
onScroll = (evt: React.UIEvent<HTMLDivElement>) => {
|
|
const logsArea = evt.currentTarget;
|
|
const { scrollHeight, clientHeight, scrollTop } = logsArea;
|
|
this.lastLineIsShown = clientHeight + scrollTop === scrollHeight;
|
|
};
|
|
|
|
getLogs() {
|
|
const { logs, newLogs, showTimestamps } = this;
|
|
return {
|
|
logs: showTimestamps ? logs : this.removeTimestamps(logs),
|
|
newLogs: showTimestamps ? newLogs : this.removeTimestamps(newLogs),
|
|
}
|
|
}
|
|
|
|
getTimestamps(logs: string) {
|
|
return logs.match(/^\d+\S+/gm);
|
|
}
|
|
|
|
removeTimestamps(logs: string) {
|
|
return logs.replace(/^\d+.*?\s/gm, "");
|
|
}
|
|
|
|
resetLogs() {
|
|
this.logs = "";
|
|
this.newLogs = "";
|
|
this.lastLineIsShown = true;
|
|
this.logsReady = false;
|
|
}
|
|
|
|
onContainerChange = (option: SelectOption) => {
|
|
this.selectedContainer = this.containers
|
|
.concat(this.initContainers)
|
|
.find(container => container.name === option.value);
|
|
this.reload();
|
|
}
|
|
|
|
onTailLineChange = (option: SelectOption) => {
|
|
this.tailLines = option.value;
|
|
this.reload();
|
|
}
|
|
|
|
formatOptionLabel = (option: SelectOption) => {
|
|
const { value, label } = option;
|
|
return label || <><Icon small material="view_carousel"/> {value}</>;
|
|
}
|
|
|
|
toggleTimestamps = () => {
|
|
this.showTimestamps = !this.showTimestamps;
|
|
}
|
|
|
|
downloadLogs = () => {
|
|
const { logs, newLogs } = this.getLogs();
|
|
const fileName = this.selectedContainer.name + ".log";
|
|
const fileContents = logs + newLogs;
|
|
downloadFile(fileName, fileContents, "text/plain");
|
|
}
|
|
|
|
get containerSelectOptions() {
|
|
return [
|
|
{
|
|
label: _i18n._(t`Containers`),
|
|
options: this.containers.map(container => {
|
|
return { value: container.name }
|
|
}),
|
|
},
|
|
{
|
|
label: _i18n._(t`Init Containers`),
|
|
options: this.initContainers.map(container => {
|
|
return { value: container.name }
|
|
}),
|
|
}
|
|
];
|
|
}
|
|
|
|
renderControlsPanel() {
|
|
const { logsReady, showTimestamps } = this;
|
|
if (!logsReady) return;
|
|
const timestamps = this.getTimestamps(this.logs + this.newLogs);
|
|
let from = "";
|
|
let to = "";
|
|
if (timestamps) {
|
|
from = new Date(timestamps[0]).toLocaleString();
|
|
to = new Date(timestamps[timestamps.length - 1]).toLocaleString();
|
|
}
|
|
return (
|
|
<div className="controls flex align-center">
|
|
<div className="time-range">
|
|
{timestamps && <Trans>From <b>{from}</b> to <b>{to}</b></Trans>}
|
|
</div>
|
|
<div className="control-buttons flex gaps">
|
|
<Icon
|
|
material="av_timer"
|
|
onClick={this.toggleTimestamps}
|
|
className={cssNames("timestamps-icon", { active: showTimestamps })}
|
|
tooltip={(showTimestamps ? _i18n._(t`Hide`) : _i18n._(t`Show`)) + " " + _i18n._(t`timestamps`)}
|
|
/>
|
|
<Icon
|
|
material="save_alt"
|
|
onClick={this.downloadLogs}
|
|
tooltip={_i18n._(t`Save`)}
|
|
/>
|
|
</div>
|
|
</div>
|
|
)
|
|
}
|
|
|
|
renderLogs() {
|
|
if (!this.logsReady) {
|
|
return <Spinner center/>
|
|
}
|
|
const { logs, newLogs } = this.getLogs();
|
|
if (!logs && !newLogs) {
|
|
return <p className="no-logs"><Trans>There are no logs available for container.</Trans></p>
|
|
}
|
|
return (
|
|
<>
|
|
<div dangerouslySetInnerHTML={{ __html: DOMPurify.sanitize(this.colorConverter.ansi_to_html(logs))}} />
|
|
{newLogs && (
|
|
<>
|
|
<p className="new-logs-sep" title={_i18n._(t`New logs since opening the dialog`)}/>
|
|
<div dangerouslySetInnerHTML={{ __html: DOMPurify.sanitize(this.colorConverter.ansi_to_html(newLogs))}} />
|
|
</>
|
|
)}
|
|
</>
|
|
);
|
|
}
|
|
|
|
render() {
|
|
const { ...dialogProps } = this.props;
|
|
const { selectedContainer, tailLines } = this;
|
|
const podName = this.data ? this.data.pod.getName() : "";
|
|
const header = <h5><Trans>{podName} Logs</Trans></h5>;
|
|
return (
|
|
<Dialog
|
|
{...dialogProps}
|
|
isOpen={PodLogsDialog.isOpen}
|
|
className="PodLogsDialog"
|
|
onOpen={this.onOpen}
|
|
onClose={this.onClose}
|
|
close={this.close}
|
|
>
|
|
<Wizard header={header} done={this.close}>
|
|
<WizardStep hideNextBtn prevLabel={<Trans>Close</Trans>}>
|
|
<div className="log-controls flex gaps align-center justify-space-between">
|
|
<div className="container flex gaps align-center">
|
|
<span><Trans>Container</Trans></span>
|
|
{selectedContainer && (
|
|
<Select
|
|
className="container-selector"
|
|
options={this.containerSelectOptions}
|
|
themeName="light"
|
|
value={{ value: selectedContainer.name }}
|
|
onChange={this.onContainerChange}
|
|
formatOptionLabel={this.formatOptionLabel}
|
|
autoConvertOptions={false}
|
|
/>
|
|
)}
|
|
<span><Trans>Lines</Trans></span>
|
|
<Select
|
|
value={tailLines}
|
|
options={this.lineOptions}
|
|
onChange={this.onTailLineChange}
|
|
themeName="light"
|
|
/>
|
|
</div>
|
|
{this.renderControlsPanel()}
|
|
</div>
|
|
<div className="logs-area" onScroll={this.onScroll} ref={e => this.logsArea = e}>
|
|
{this.renderLogs()}
|
|
</div>
|
|
</WizardStep>
|
|
</Wizard>
|
|
</Dialog>
|
|
)
|
|
}
|
|
}
|