exceptionless/Exceptionless

Selfhosted - More information needed

JoshTickles opened this issue · 2 comments

Hey all - I've almost got this running in my self hosted k8s clusters.

I'm just after a bit more information about the following 2 vars in the example scripts you have.

https://github.com/exceptionless/Exceptionless/tree/master/k8s
storage.connectionString
queue.connectionString

Is anyone able to let me know what are these used for, and what would an example be for a locally hosted k8s cluster (i.e not in Azure or AWS)?

cheers

They are used to configure the different abstractions. Since you are using multiple processes you would want to configure it to not use the in memory implementations.

Redis: server="localhost,abortConnect=false"
Cache: provider=redis;
MessageBus: provider=redis;
Queue: provider=redis;
Storage: provider=folder;path=/mnt/my_storage_path

Please let us know if you have any other questions.