[][src]Struct pachyderm::pps::LogMessage

pub struct LogMessage {
    pub pipeline_name: String,
    pub job_id: String,
    pub worker_id: String,
    pub datum_id: String,
    pub master: bool,
    pub data: Vec<InputFile>,
    pub user: bool,
    pub ts: Option<Timestamp>,
    pub message: String,
}

LogMessage is a log line from a PPS worker, annotated with metadata indicating when and why the line was logged.

Fields

pipeline_name: String

The job and pipeline for which a PFS file is being processed (if the job is an orphan job, pipeline name and ID will be unset)

job_id: Stringworker_id: Stringdatum_id: Stringmaster: booldata: Vec<InputFile>

The PFS files being processed (one per pipeline/job input)

user: bool

User is true if log message comes from the users code.

ts: Option<Timestamp>

The message logged, and the time at which it was logged

message: String

Trait Implementations

impl Clone for LogMessage[src]

impl Debug for LogMessage[src]

impl Default for LogMessage[src]

impl Message for LogMessage[src]

impl PartialEq<LogMessage> for LogMessage[src]

impl StructuralPartialEq for LogMessage[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> IntoRequest<T> for T[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>, 

impl<T> WithSubscriber for T[src]