Skip to content

Commit

Permalink
benchmarks: restore original eventstore configuration
Browse files Browse the repository at this point in the history
  • Loading branch information
lewurm committed Nov 2, 2015
1 parent 5324e2c commit fa1fb18
Show file tree
Hide file tree
Showing 21 changed files with 3,100 additions and 0 deletions.
6 changes: 6 additions & 0 deletions benchmarks/eventstore.benchmark
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
{
"Name": "eventstore",
"TestDirectory": "Eventstore",
"CommandLine": ["EventStore.ClusterNode.exe --force"],
"ClientCommandLine": ["EventStore.TestClient.exe --force --command 'wrfl 10 500000'"]
}
Binary file not shown.
Binary file added tests/Eventstore/EventStore.ClientAPI.dll
Binary file not shown.
3,049 changes: 3,049 additions & 0 deletions tests/Eventstore/EventStore.ClientAPI.xml

Large diffs are not rendered by default.

Binary file added tests/Eventstore/EventStore.ClusterNode.Web.dll
Binary file not shown.
Binary file added tests/Eventstore/EventStore.ClusterNode.exe
Binary file not shown.
Binary file added tests/Eventstore/EventStore.Common.dll
Binary file not shown.
Binary file added tests/Eventstore/EventStore.Core.dll
Binary file not shown.
Binary file added tests/Eventstore/EventStore.Projections.Core.dll
Binary file not shown.
Binary file added tests/Eventstore/EventStore.TestClient.exe
Binary file not shown.
Binary file added tests/Eventstore/EventStore.Transport.Http.dll
Binary file not shown.
Binary file added tests/Eventstore/EventStore.Transport.Tcp.dll
Binary file not shown.
Binary file added tests/Eventstore/EventStore.Web.dll
Binary file not shown.
45 changes: 45 additions & 0 deletions tests/Eventstore/NLog.config
Original file line number Diff line number Diff line change
@@ -0,0 +1,45 @@
<?xml version="1.0" encoding="utf-8" ?>

<nlog xmlns="http://www.nlog-project.org/schemas/NLog.xsd"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
throwExceptions="true"
autoReload="true">

<variable name="VerboseLayout" value="[PID:${processid:padCharacter=0:padding=5}:${threadid:padCharacter=0:padding=3} ${date:universalTime=true:format=yyyy\.MM\.dd HH\:mm\:ss\.fff} ${level:padding=-5:uppercase=true} ${logger:padding=-20:fixedLength=true}] ${message}${onexception:${newline}EXCEPTION OCCURRED:${newline}${exception:format=tostring:innerFormat=tostring:maxInnerExceptionLevel=20}}"/>
<variable name="ConsoleLayout" value="[${processid:padCharacter=0:padding=5},${threadid:padCharacter=0:padding=2},${date:universalTime=true:format=HH\:mm\:ss\.fff}] ${message}${onexception:${newline}EXCEPTION OCCURRED:${newline}${exception:format=message}}"/>
<variable name="LogFileNameBase" value="${logsdir}/${shortdate:universalTime=true}/${environment:variable=EVENTSTORE_INT-COMPONENT-NAME}"/>

<targets async="true">
<target name="fileLog" xsi:type="File" fileName="${LogFileNameBase}.log" layout="${VerboseLayout}"/>

<target name="errorFileLog" xsi:type="FilteringWrapper" condition="length('${exception}')>0 || level==LogLevel.Error || level==LogLevel.Fatal">
<target xsi:type="File" fileName="${LogFileNameBase}-err.log" layout="${VerboseLayout}"/>
</target>

<target name="coloredConsoleLog" xsi:type="ColoredConsole" layout="${ConsoleLayout}" useDefaultRowHighlightingRules="true">
<highlight-row condition="level == LogLevel.Info" foregroundColor="Green" backgroundColor="NoChange"/>
</target>

<target name="plainConsoleLog" xsi:type="Console" layout="${ConsoleLayout}"/>

<target name="statsFileLog" xsi:type="File" fileName="${LogFileNameBase}-stats.csv" layout="${message}"/>
</targets>

<rules>
<logger name="REGULAR-STATS-LOGGER" minlevel="Trace" writeTo="statsFileLog" final="true" />

<logger name="*" minlevel="Trace" writeTo="fileLog, errorFileLog"/>

<logger name="*" minlevel="Trace" writeTo="plainConsoleLog">
<filters>
<when condition="is-dot-net()" action="Ignore"/>
</filters>
</logger>
<logger name="*" minlevel="Trace" writeTo="coloredConsoleLog">
<filters>
<when condition="is-mono()" action="Ignore"/>
</filters>
</logger>

</rules>
</nlog>
Binary file added tests/Eventstore/NLog.dll
Binary file not shown.
Binary file added tests/Eventstore/Newtonsoft.Json.dll
Binary file not shown.
Binary file added tests/Eventstore/libicui18n.dylib
Binary file not shown.
Binary file added tests/Eventstore/libicuuc.dylib
Binary file not shown.
Binary file added tests/Eventstore/libjs1.dylib
Binary file not shown.
Binary file added tests/Eventstore/libv8.dylib
Binary file not shown.
Binary file added tests/Eventstore/protobuf-net.dll
Binary file not shown.

0 comments on commit fa1fb18

Please sign in to comment.