1
すべてが事実を除いてうまくログインされています。下の画像を参照してください。NLOG&Azureのテーブル記憶
誰もがタイムスタンプとLogTimeStampの違いはここにある何かを説明することはできますか?
エントリがたくさんある場合、ここでの並べ替えは、ログエントリが見つからない場合はひどく複雑になります。
が私の現在の設定ファイルの例を参照してください
<?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">
<!-- include this assembly as an NLog extension -->
<extensions>
<add assembly="NLog.Extensions.AzureTableStorage"/>
</extensions>
<!-- set up a an azure storage table target -->
<targets>
<target name="AzureTableStorage"
xsi:type="AzureTableStorage"
PartitionKey="${date}.${logger}"
RowKey="${guid}"
ConnectionString="UseDevelopmentStorage=true"
tableName="Bootloader" />
</targets>
<rules>
<!-- set up a rule to log to the azure storage target! -->
<logger name="*" minlevel="Trace" writeTo="AzureTableStorage" />
</rules>
</nlog>