public IEventProcessor CreateEventProcessor(PartitionContext context)
 {
     var processor = new ColdStorageProcessor(
         _blobWriterFactory,
         _instrumentationPublisher,
         _token,
         _warningLevel,
         _tripLevel,
         _stallInterval,
         _logCooldownInterval, 
         _eventHubName
     );
     return processor;
 }