github.com/pyroscope-io/pyroscope@v0.37.3-0.20230725203016-5f6947968bd0/pkg/ingestion/noop.go (about)

     1  package ingestion
     2  
     3  import "context"
     4  
     5  type NoopIngester struct{}
     6  
     7  func NewNoopIngester() *NoopIngester {
     8  	return &NoopIngester{}
     9  }
    10  func (*NoopIngester) Ingest(_ context.Context, _ *IngestInput) error {
    11  	return nil
    12  }