Is it possible to store BDN data in Azure blob instead of the GitHub branch? #2845
-
|
We are hitting the ceiling for storing data in the GH branch. Is there a way to have it store in a Azure Blob instead? |
Beta Was this translation helpful? Give feedback.
Answered by
adamsitnik
Oct 29, 2025
Replies: 1 comment
-
|
Hi! You can implement your own exporter that implements the IExporter interface and then just add an instance to the config you are using: MyCustomExporter exporter = new(...);
var config = DefaultConfig.Instance.AddExporter(exporter); |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
AndreyAkinshin
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Hi!
You can implement your own exporter that implements the IExporter interface and then just add an instance to the config you are using: