You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
To avoid conflict with the new LogRecord class, rename existing sdk::logs::LogRecord class to some better name (say sdk::logs::LogRecordData).
Add setter for observed_timestamp in sdk:logs::Reordable and sdk::logs::LogRecordData.
Similar to Span's Recordable, add a getter method for LogRecordData in Recordable class. This can be eventually implemented by all it's derived implementation (not in scope for now).
/** * Get the LogRecordData object for this Recordable. * * @return LogRecordData**/virtualexplicitoperator LogRecordData *() const { returnnullptr; }
This would let us avoid having ReadWriteLogRecord class. This method can be potentially used inside LogRecordProcessor to filter the logs based on it's contents (not in scope for now).
The text was updated successfully, but these errors were encountered:
This would let us avoid having
ReadWriteLogRecord
class. This method can be potentially used insideLogRecordProcessor
to filter the logs based on it's contents (not in scope for now).The text was updated successfully, but these errors were encountered: