Refactoring of input creation in Configuration
This commit is contained in:
@@ -11,7 +11,7 @@ namespace TimberWinR.Filters
|
||||
{
|
||||
public class DateFilter : FilterBase
|
||||
{
|
||||
public const string TagName = "Date";
|
||||
public new const string TagName = "Date";
|
||||
|
||||
public string Field { get; private set; }
|
||||
public string Target { get; private set; }
|
||||
|
||||
@@ -12,7 +12,7 @@ namespace TimberWinR.Filters
|
||||
{
|
||||
public class GrokFilter : FilterBase
|
||||
{
|
||||
public const string TagName = "Grok";
|
||||
public new const string TagName = "Grok";
|
||||
|
||||
public string Match { get; private set; }
|
||||
public string Field { get; private set; }
|
||||
|
||||
@@ -11,7 +11,7 @@ namespace TimberWinR.Filters
|
||||
{
|
||||
public class MutateFilter : FilterBase
|
||||
{
|
||||
public const string TagName = "Mutate";
|
||||
public new const string TagName = "Mutate";
|
||||
|
||||
public List<MutateOperation> Operations { get; private set; }
|
||||
|
||||
|
||||
@@ -9,7 +9,7 @@ namespace TimberWinR.Inputs
|
||||
public class IISLog : InputBase
|
||||
{
|
||||
public const string ParentTagName = "IISLogs";
|
||||
public const string TagName = "IISLog";
|
||||
public new const string TagName = "IISLog";
|
||||
|
||||
public string Name { get; private set; }
|
||||
public string Location { get; private set; }
|
||||
|
||||
@@ -8,7 +8,7 @@ namespace TimberWinR.Inputs
|
||||
public class IISW3CLog : InputBase
|
||||
{
|
||||
public const string ParentTagName = "IISW3CLogs";
|
||||
public const string TagName = "IISW3CLog";
|
||||
public new const string TagName = "IISW3CLog";
|
||||
|
||||
public string Name { get; private set; }
|
||||
public string Location { get; private set; }
|
||||
|
||||
@@ -8,7 +8,7 @@ namespace TimberWinR.Inputs
|
||||
public class TailFileInput : InputBase
|
||||
{
|
||||
public const string ParentTagName = "Logs";
|
||||
public const string TagName = "Log";
|
||||
public new const string TagName = "Log";
|
||||
|
||||
public string Name { get; private set; }
|
||||
public string Location { get; private set; }
|
||||
|
||||
@@ -9,7 +9,7 @@ namespace TimberWinR.Inputs
|
||||
public class WindowsEvent : InputBase
|
||||
{
|
||||
public const string ParentTagName = "WindowsEvents";
|
||||
public const string TagName = "Event";
|
||||
public new const string TagName = "Event";
|
||||
|
||||
public string Source { get; private set; }
|
||||
public bool FullText { get; private set; }
|
||||
|
||||
Reference in New Issue
Block a user