github.com/google/fleetspeak@v0.1.15-0.20240426164851-4f31f62c1aea/fleetspeak/src/client/daemonservice/proto/fleetspeak_daemonservice/messages.proto (about)

     1  syntax = "proto3";
     2  
     3  package fleetspeak.daemonservice;
     4  
     5  option go_package = "github.com/google/fleetspeak/fleetspeak/src/client/daemonservice/proto/fleetspeak_daemonservice";
     6  
     7  // A fleetspeak.Message with message type "StdOutput" and data type
     8  // StdOutputData is sent by a daemon service to the server when the daemon
     9  // subprocess produces output on stdout or stderr.
    10  message StdOutputData {
    11    // The pid of the daemon process.
    12    int64 pid = 1;
    13  
    14    // The index of this message within the set of messages returned for
    15    // this pid.
    16    int64 message_index = 2;
    17  
    18    bytes stdout = 3;
    19    bytes stderr = 4;
    20  }