pub struct RecordingScrubber<'a> { /* private fields */ }
Expand description

A utility that performs data scrubbing on compressed Replay recording payloads.

§Example

use relay_replays::recording::RecordingScrubber;
use relay_pii::PiiConfig;

// Obtain a PII config from the project state or create one on-demand.
let pii_config = PiiConfig::default();
let mut scrubber = RecordingScrubber::new(1_000_000, Some(&pii_config), None);

let payload = b"{}\n[]";
let result = scrubber.process_recording(payload.as_slice());

Implementations§

source§

impl<'a> RecordingScrubber<'a>

source

pub fn new( limit: usize, config1: Option<&'a PiiConfig>, config2: Option<&'a PiiConfig> ) -> Self

Creates a new RecordingScrubber from PII configs.

limit controls the maximum size in bytes during decompression. This function returns an Err if decompressed contents exceed the limit. The two optional configs to be passed here are from data scrubbing settings and from the dedicated PII config.

§Performance

The passed PII configs are compiled by this constructor if their compiled version is not yet cached. This can be a CPU-intensive process and should be called from a blocking context.

source

pub fn is_empty(&self) -> bool

Returns true if both configs are empty and no scrubbing would occur.

source

pub fn process_recording( &mut self, bytes: &[u8] ) -> Result<Vec<u8>, ParseRecordingError>

Parses a replay recording payload and applies data scrubbers.

§Compression

The recording bytes passed to this function can be a raw recording payload or compressed with zlib. The result is always compressed, regardless of the input.

During decompression, the scrubber applies a limit. If the decompressed buffer exceeds the configured size, an Err is returned. This does not apply to decompressed payloads.

§Errors

This function requires a full recording payload including headers and body. This function will return errors if:

  • Headers or the body are missing.
  • Headers and the body are separated by exactly one UNIX newline (\n).
  • The payload size exceeds the configured limit of the scrubber after decompression.
  • On errors during decompression or JSON parsing.

Auto Trait Implementations§

§

impl<'a> Freeze for RecordingScrubber<'a>

§

impl<'a> !RefUnwindSafe for RecordingScrubber<'a>

§

impl<'a> !Send for RecordingScrubber<'a>

§

impl<'a> !Sync for RecordingScrubber<'a>

§

impl<'a> Unpin for RecordingScrubber<'a>

§

impl<'a> !UnwindSafe for RecordingScrubber<'a>

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T> Instrument for T

source§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
source§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> Same for T

§

type Output = T

Should always be Self
source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

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

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
§

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

§

fn vzip(self) -> V

source§

impl<T> WithSubscriber for T

source§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more
source§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more