@kubernetes/client-node
Version:
NodeJS client for kubernetes
50 lines (49 loc) • 2.17 kB
TypeScript
import { Writable } from 'node:stream';
import { KubeConfig } from './config.js';
export interface LogOptions {
/**
* Follow the log stream of the pod. Defaults to false.
*/
follow?: boolean;
/**
* If set, the number of bytes to read from the server before terminating the log output. This may not display a
* complete final line of logging, and may return slightly more or slightly less than the specified limit.
*/
limitBytes?: number;
/**
* If true, then the output is pretty printed.
*/
pretty?: boolean;
/**
* Return previous terminated container logs. Defaults to false.
*/
previous?: boolean;
/**
* A relative time in seconds before the current time from which to show logs. If this value precedes the time a
* pod was started, only logs since the pod start will be returned. If this value is in the future, no logs will
* be returned. Only one of sinceSeconds or sinceTime may be specified.
*/
sinceSeconds?: number;
/**
* Only return logs after a specific date (RFC3339). Defaults to all logs.
* Only one of sinceSeconds or sinceTime may be specified.
*/
sinceTime?: string;
/**
* If set, the number of lines from the end of the logs to show. If not specified, logs are shown from the creation
* of the container or sinceSeconds or sinceTime
*/
tailLines?: number;
/**
* If true, add an RFC3339 or RFC3339Nano timestamp at the beginning of every line of log output. Defaults to false.
*/
timestamps?: boolean;
}
export declare function AddOptionsToSearchParams(options: LogOptions | undefined, searchParams: URLSearchParams): URLSearchParams | undefined;
export declare class Log {
config: KubeConfig;
constructor(config: KubeConfig);
log(namespace: string, podName: string, containerName: string, stream: Writable, options?: LogOptions): Promise<AbortController>;
/** @deprecated done callback is deprecated */
log(namespace: string, podName: string, containerName: string, stream: Writable, done: (err: any) => void, options?: LogOptions): Promise<AbortController>;
}