|
1 | 1 | <?xml version="1.0" encoding="utf-8"?> |
2 | 2 | <configuration> |
3 | 3 | <startup> |
4 | | - <supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.8"/> |
| 4 | + <supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.8" /> |
5 | 5 | </startup> |
6 | 6 | <connectionStrings> |
7 | | - <add name="Db" connectionString="Server=tcp:YOUR_SERVER.database.windows.net,1433;Database=ConnectedCar;User ID=YOUR_USERNAME;Password=YOUR_PASSWORD;Encrypt=True;TrustServerCertificate=False;Connection Timeout=30;"/> |
| 7 | + <add name="Db" connectionString="Server=tcp:YOUR_SERVER.database.windows.net,1433;Database=ConnectedCar;User ID=YOUR_USERNAME;Password=YOUR_PASSWORD;Encrypt=True;TrustServerCertificate=False;Connection Timeout=30;" /> |
8 | 8 | </connectionStrings> |
9 | 9 | <appSettings> |
10 | | - <add key="insertSPName" value="InsertEvent"/> <!--Stored Procedure Name--> |
11 | | - <add key="numberOfTasks" value="5"/> <!--Number of concurrent async tasks that the Data Generator will use--> |
12 | | - <add key="numberOfCars" value="2500"/> <!--Number of unique cars--> |
13 | | - <add key="batchSize" value="250"/> <!--Row Batch Size that every task produces--> |
14 | | - <add key="commandDelay" value="10"/> <!--Delay between sql commands. You can set this to 0 for max high volume workload--> |
15 | | - <add key="commandTimeout" value="600"/> <!--SQL Command Timeout--> |
16 | | - <add key="enableShock" value="0"/> <!--Flag that turns on/off the data shock. This should be set to 0 for max high volume workload--> |
17 | | - <add key="rpsFrequency" value="1000"/> <!--How frequently the Data Generator Rows Per Second(RPS) is polled--> |
18 | | - <add key="logFileName" value="log.txt"/> <!--Log File Path--> |
| 10 | + <add key="insertSPName" value="InsertEvent" /> <!--Stored Procedure Name--> |
| 11 | + <add key="numberOfTasks" value="5" /> <!--Number of concurrent async tasks that the Data Generator will use--> |
| 12 | + <add key="numberOfCars" value="2500" /> <!--Number of unique cars--> |
| 13 | + <add key="batchSize" value="250" /> <!--Row Batch Size that every task produces--> |
| 14 | + <add key="commandDelay" value="10" /> <!--Delay between sql commands. You can set this to 0 for max high volume workload--> |
| 15 | + <add key="commandTimeout" value="600" /> <!--SQL Command Timeout--> |
| 16 | + <add key="enableShock" value="0" /> <!--Flag that turns on/off the data shock. This should be set to 0 for max high volume workload--> |
| 17 | + <add key="rpsFrequency" value="1000" /> <!--How frequently the Data Generator Rows Per Second(RPS) is polled--> |
| 18 | + <add key="logFileName" value="log.txt" /> <!--Log File Path--> |
19 | 19 |
|
20 | 20 | <!--random number generator settings--> |
21 | | - <add key="HighSpeedProbabilityPower" value="0.5"/> |
22 | | - <add key="LowSpeedProbabilityPower" value="0.9"/> |
23 | | - <add key="HighOilProbabilityPower" value="0.3"/> |
24 | | - <add key="LowOilProbabilityPower" value="1.2"/> |
25 | | - <add key="HighTyrePressureProbabilityPower" value="0.5"/> |
26 | | - <add key="LowTyrePressureProbabilityPower" value="1.7"/> |
27 | | - <add key="HighOutsideTempProbabilityPower" value="0.3"/> |
28 | | - <add key="LowOutsideTempProbabilityPower" value="1.2"/> |
29 | | - <add key="HighEngineTempProbabilityPower" value="0.3"/> |
30 | | - <add key="LowEngineTempProbabilityPower" value="1.2"/> |
| 21 | + <add key="HighSpeedProbabilityPower" value="0.5" /> |
| 22 | + <add key="LowSpeedProbabilityPower" value="0.9" /> |
| 23 | + <add key="HighOilProbabilityPower" value="0.3" /> |
| 24 | + <add key="LowOilProbabilityPower" value="1.2" /> |
| 25 | + <add key="HighTyrePressureProbabilityPower" value="0.5" /> |
| 26 | + <add key="LowTyrePressureProbabilityPower" value="1.7" /> |
| 27 | + <add key="HighOutsideTempProbabilityPower" value="0.3" /> |
| 28 | + <add key="LowOutsideTempProbabilityPower" value="1.2" /> |
| 29 | + <add key="HighEngineTempProbabilityPower" value="0.3" /> |
| 30 | + <add key="LowEngineTempProbabilityPower" value="1.2" /> |
31 | 31 | </appSettings> |
32 | 32 | </configuration> |
0 commit comments