|
LogPublisherMaxDistinctEventPublisherCount Property
|
The maximum number of distinct events that this publisher can generate. (Default: 20)
Namespace: GSF.DiagnosticsAssembly: GSF.Core (in GSF.Core.dll) Version: 2.4.205-beta+5ef4169f3b1079d8b163dd363614f656bd140924
Syntax public int MaxDistinctEventPublisherCount { get; set; }
Public Property MaxDistinctEventPublisherCount As Integer
Get
Set
public:
property int MaxDistinctEventPublisherCount {
int get ();
void set (int value);
}
member MaxDistinctEventPublisherCount : int with get, set
function get_MaxDistinctEventPublisherCount();
function set_MaxDistinctEventPublisherCount(value);
View SourceProperty Value
Int32Remarks
Since message suppression and collection occurs at the event name level, it is important
to have only a few distinct message types. This is the limit so misapplication
of this publisher will not cause memory impacts on the system.
It is recommended to keep the event name as a fixed string and not report any other meta data
with the event.
See Also