LogConfigurationExtensionsUseFileAndElasticSearchWithApiKey Method
同時使用檔案與 ElasticSearch 日誌 (ApiKey Authentication)
Namespace: eBizprise.Framework.Log.ElasticSearchAssembly: eBizprise.Framework.Log.LogHelper.ElasticSearch (in eBizprise.Framework.Log.LogHelper.ElasticSearch.dll) Version: 25.0.3.0+6e92afb880fa099fdfe407c9aa8d1b17eaaf3625
public static LogConfiguration UseFileAndElasticSearchWithApiKey(
this LogConfiguration logConfiguration,
string elasticSearchUri,
string apiKeyId,
string apiKey,
string logDirectory = null,
string indexFormat = "logs-${shortdate}"
)
- logConfiguration LogConfiguration
- 日誌配置物件
- elasticSearchUri String
- ElasticSearch 伺服器 URI
- apiKeyId String
- API Key ID
- apiKey String
- API Key
- logDirectory String (Optional)
- 日誌檔案目錄
- indexFormat String (Optional)
- ElasticSearch 索引格式
LogConfigurationLogConfiguration 物件 (支援鏈式呼叫)In Visual Basic and C#, you can call this method as an instance method on any object of type
LogConfiguration. When you use instance method syntax to call this method, omit the first parameter. For more information, see
Extension Methods (Visual Basic) or
Extension Methods (C# Programming Guide).
LogHelper.Configure(config =>
{
config.UseFileAndElasticSearchWithApiKey(
"http://localhost:9200",
"VuaCfGcBCdbkQm-e5aOx",
"ui2lp2axTNmsyakw9tvNnw",
@"C:\Logs",
"myapp-${shortdate}");
});
| Date | Version | Description |
|---|
| 2025/12/09 | 25.0.0.0 | 新增 ApiKey 驗證支援 |