You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
52 lines
1.6 KiB
52 lines
1.6 KiB
3 years ago
|
using Microsoft.Extensions.Logging;
|
||
|
using System;
|
||
|
using System.Collections.Generic;
|
||
|
using System.Threading;
|
||
|
using System.Threading.Tasks;
|
||
|
|
||
|
namespace Sanhe.Abp.Logging
|
||
|
{
|
||
|
public interface ILoggingManager
|
||
|
{
|
||
|
Task<LogInfo> GetAsync(
|
||
|
string id,
|
||
|
CancellationToken cancellationToken = default);
|
||
|
|
||
|
Task<long> GetCountAsync(
|
||
|
DateTime? startTime = null,
|
||
|
DateTime? endTime = null,
|
||
|
LogLevel? level = null,
|
||
|
string machineName = null,
|
||
|
string environment = null,
|
||
|
string application = null,
|
||
|
string context = null,
|
||
|
string requestId = null,
|
||
|
string requestPath = null,
|
||
|
string correlationId = null,
|
||
|
int? processId = null,
|
||
|
int? threadId = null,
|
||
|
bool? hasException = null,
|
||
|
CancellationToken cancellationToken = default);
|
||
|
|
||
|
Task<List<LogInfo>> GetListAsync(
|
||
|
string sorting = null,
|
||
|
int maxResultCount = 50,
|
||
|
int skipCount = 0,
|
||
|
DateTime? startTime = null,
|
||
|
DateTime? endTime = null,
|
||
|
LogLevel? level = null,
|
||
|
string machineName = null,
|
||
|
string environment = null,
|
||
|
string application = null,
|
||
|
string context = null,
|
||
|
string requestId = null,
|
||
|
string requestPath = null,
|
||
|
string correlationId = null,
|
||
|
int? processId = null,
|
||
|
int? threadId = null,
|
||
|
bool? hasException = null,
|
||
|
bool includeDetails = false,
|
||
|
CancellationToken cancellationToken = default);
|
||
|
}
|
||
|
}
|