import { ModelData, Model } from "@kubernetes-models/base"; /** * OutputStageSpec is an action stage that takes data from the extracted map * and changes the log line that will be sent to Loki. */ export interface IOutputStageSpec { /** * Name from extract data to use for the log entry. Required. */ "source": string; } /** * OutputStageSpec is an action stage that takes data from the extracted map * and changes the log line that will be sent to Loki. */ export declare class OutputStageSpec extends Model implements IOutputStageSpec { "source": string; constructor(data?: ModelData); } export type { IOutputStageSpec as IComGithubGrafanaAgentPkgOperatorApisMonitoringV1alpha1OutputStageSpec, OutputStageSpec as ComGithubGrafanaAgentPkgOperatorApisMonitoringV1alpha1OutputStageSpec };