-
-
Notifications
You must be signed in to change notification settings - Fork 8
Open
Labels
Description
When someone installs the nuget package, add the follwoing connection string:
<add name="ElmahElasticSearch" connectionString="Nodes=http://localhost:9200;DefaultIndex=elmah;" />
Also update the configuration section with the correct connection string name including:
- application name
- environment name
- customer name
<elmah>
<errorLog
type="Elmah.Io.ElasticSearch.ElasticSearchErrorLog, Elmah.Io.ElasticSearch, Version=1.0.0.0, Culture=neutral"
connectionStringName="ElmahElasticSearch"
applicationName="ElmahElasticSearchSampleWebsite"
environmentName="development"
customerName="sample customer"
/>
</elmah>
guibranco