-
Notifications
You must be signed in to change notification settings - Fork 49
Expand file tree
/
Copy pathApp.config
More file actions
54 lines (45 loc) · 3.11 KB
/
App.config
File metadata and controls
54 lines (45 loc) · 3.11 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
<?xml version="1.0" encoding="utf-8"?>
<!--
NOTE: Any settings in this file are not kept as part of packaging ServiceControl for a release.
These settings are only here so that we can debug ServiceControl while developing it.
-->
<configuration>
<appSettings>
<add key="ServiceControl.Audit/ServiceControlQueueAddress" value="Particular.ServiceControl" />
<add key="ServiceControl.Audit/HostName" value="localhost" />
<add key="ServiceControl.Audit/DatabaseMaintenancePort" value="44445" />
<add key="ServiceControl.Audit/OtelMetricsUrl" value="http://localhost:4317" />
<!-- DEVS - Pick a transport to run Auditing instance on -->
<add key="ServiceControl.Audit/TransportType" value="LearningTransport" />
<!--<add key="ServiceControl.Audit/TransportType" value="AmazonSQS" />-->
<!--<add key="ServiceControl.Audit/TransportType" value="AzureStorageQueue" />-->
<!--<add key="ServiceControl.Audit/TransportType" value="MSMQ" />-->
<!--<add key="ServiceControl.Audit/TransportType" value="NetStandardAzureServiceBus" />-->
<!--<add key="ServiceControl.Audit/TransportType" value="PostgreSQL" />-->
<!--<add key="ServiceControl.Audit/TransportType" value="RabbitMQ.QuorumConventionalRouting" />-->
<!--<add key="ServiceControl.Audit/TransportType" value="SQLServer" />-->
<!-- DEVS - Pick a persistence to run Auditing instance on. -->
<add key="ServiceControl.Audit/PersistenceType" value="InMemory" />
<!--<add key="ServiceControl.Audit/PersistenceType" value="RavenDB" />-->
</appSettings>
<connectionStrings>
<!-- DEVS - Pick a transport connection string to match chosen transport above -->
<!-- Learning -->
<!-- If the LearningTransport connectionString is empty, it will default to the solution directory when running/debugging from the IDE -->
<add name="NServiceBus/Transport" connectionString="" />
<!--Amazon SQS -->
<!--<add name="NServiceBus/Transport" connectionString="Region=;QueueNamePrefix=;TopicNamePrefix=;AccessKeyId=;SecretAccessKey=;S3BucketForLargeMessages=;S3KeyPrefix=" />-->
<!--AzureStorageQueue -->
<!--<add name="NServiceBus/Transport" connectionString="DefaultEndpointsProtocol=[http|https];AccountName=;AccountKey=;Subscriptions Table=tablename" />-->
<!--MSMQ -->
<!--<add name="NServiceBus/Transport" connectionString="" />-->
<!--NetStandardAzureServiceBus -->
<!--<add name="NServiceBus/Transport" connectionString="Endpoint=sb://[namespace].servicebus.windows.net; SharedSecretIssuer=;SharedSecretValue=;QueueLengthQueryDelayInterval=;TopicName=default-is-bundle-1" />-->
<!--PostgreSQL -->
<!--<add name="NServiceBus/Transport" connectionString="Server=;Database=nservicebus;Port=5432;User Id=;Password=" />-->
<!--RabbitMQ.QuorumConventionalRouting -->
<!--<add name="NServiceBus/Transport" connectionString="host=;username=;password=" />-->
<!--SQLServer -->
<!--<add name="NServiceBus/Transport" connectionString="Data Source=;Initial Catalog=nservicebus;Integrated Security=True;Queue Schema=myschema;Subscriptions Table=tablename@schema@catalog" />-->
</connectionStrings>
</configuration>