Skip to main content
Filter by
Sorted by
Tagged with
1 vote
0 answers
655 views

I'm using NLog to create semantic logs in a Seq server. I want to log an object that has a ToString() method that produces a short human readable summary of the data content. So I want to render the ...
Tim Long's user avatar
  • 13.8k
2 votes
1 answer
4k views

I have ASP.NET Core 1.1 application and i am using Serilog for logging. I want to log DTO object by preserving its structure. So If i directly use Serilog.Log to log the DTO, like below Serilog.Log....
LP13's user avatar
  • 34.8k
1 vote
1 answer
842 views

On some machines (probably only on Windows 7 and 2008 R2 but not on Windows 10) I have problem using SemanticLogging. When I run it I'm receiving fallowing output: Event Trace Session prefix: ...
Maciej Zawiasa's user avatar
0 votes
0 answers
353 views

I am currently in the process of designing a .net logging library that could potentially be used across different solutions in our organisation as a nuget package. However, I also want to make sure ...
MichaelChan's user avatar
  • 1,866
1 vote
1 answer
76 views

I am doing an out-of-process semantic logging with elastic search. When i browsed the events using kibana, i could see the events are coming. But the event name showing as "Event name + OpCode". That ...
Binu Vijayan's user avatar
0 votes
1 answer
56 views

I'm using the Enterprise semantic logging on sql server database I need to add one or more specif columns in the Traces table instead of adding value in Payload column Maye the only way is to create ...
CDominik's user avatar
  • 115
1 vote
1 answer
90 views

I have a Windows Service (myService) writing ETW events. When I start the service I'm able to see the logs written to file when SLAB Service (slabService) listens to the events. After a few days ...
Arturo Martinez's user avatar
1 vote
2 answers
436 views

I'm trying to use Semantic Logging Application Block to store logs into Azure Table Storage. Setup: ObservableEventListener listener1 = new ObservableEventListener(); var conString = $"...
cassandrad's user avatar
  • 3,576
1 vote
1 answer
362 views

During the development of my custom EventSource I need to change the count and types of an event's parameters. Since I've used this EventSource for a while, it had already registered its events ...
Attila Cseh's user avatar
0 votes
1 answer
389 views

I'm trying to get SemanticLogging-svc.exe from the Enterprise Library Semantic Logging Application Block to listen to events for my custom event source and dump them to console. This works fine for ...
Kræn Munck's user avatar
0 votes
1 answer
302 views

I am trying to configure semantic logging on my Windows 8.1 Enterprise environment. Although I have followed the steps specified by Microsoft here I get the following error when Semantic Logging ...
MariaMadalina's user avatar
0 votes
1 answer
370 views

So I subclassed TraceListener in order to pipe output to EntLib6 SLAB without the need for injecting a customer logger implementation. The problem that I'm running into now is that I need to see that ...
Sinaesthetic's user avatar
  • 12.4k
3 votes
1 answer
364 views

This fragment makes the Semantic Log Analyzer throw "The number of WriteEvent arguments and event parameters are different in event name 'HandlingCommand'." [NonEvent] public void HandlingCommand(...
gumaflux's user avatar
  • 350
0 votes
1 answer
75 views

I am using semantic logging application block and using in proc to log entries into azure table storage(SLABLogsTable). But is there a way to query the SLABLogsTable using StorageClient?
Hari Subramaniam's user avatar
1 vote
0 answers
81 views

I am using the Semantic Logging for my ASP.NET MVC app. https://github.com/mspnp/semantic-logging (SQL database) installed via nuget Install-Package EnterpriseLibrary.SemanticLogging.Database Here ...
Ronald Ramos's user avatar
  • 5,490
0 votes
1 answer
175 views

I need to log my web application errors to three different files For Ex:- Dashboard --> DashboardLog.Log Login Information --> LoginLog.Log AAA Section --> AAALog.Log I ...
janitheshan's user avatar
0 votes
1 answer
649 views

I have implemented semantic logging to log entries into the azure table storage. Now I want to remove old log entries(say older than 30 days) from the azure table. The problem is that the ...
nitinvertigo's user avatar
  • 1,180
2 votes
1 answer
692 views

So I'm using SLAB and I have a Database listener logging out to a database. I'm testing with a single method on the event source. The issue that I'm having is that the log is being inserted into the ...
Sinaesthetic's user avatar
  • 12.4k
0 votes
0 answers
756 views

I've migrated to Enterprise Library 6 with semantic logging. It works fine with in process logging, but I could not get out-of-process logging working. SemanticLogging SVC is started as Windows ...
K232's user avatar
  • 1,069
0 votes
2 answers
304 views

I write a custom EventSource class and add a method for log as below: [EventSource(Name = "MyCompany")] public class MyCompanyEventSource : EventSource { [Event(6, Message = "test.", Keywords = ...
capcom923's user avatar
  • 735
7 votes
2 answers
933 views

Short version If I change this ... EventSource(Name="BasicLogger") public class BasicLogger : EventSource { ... } to this ... EventSource(Name="HardymanDatabaseLog") public class BasicLogger : ...
3-14159265358979323846264's user avatar
0 votes
1 answer
101 views

I've setup my application to use Semantic Logging and Azure sink. What I see in the tables looks great and I'm pretty happy with what I'm seeing. My issue is that I'd really like to filter and search ...
Mike Bynum's user avatar
0 votes
2 answers
426 views

We have a scenario whereby multiple pre-release versions of an application run in the same environment. The problem we're seeing is that, because our EventSource has the same name/guid, we cannot ...
Richard Szalay's user avatar
3 votes
1 answer
614 views

I am trying to use .Net 4.5, Semantic Logging (SLAB) EventSource, to create events with custom keywords. I would like to use Out-of-Process, and use the keywords to steer events to logfiles or SQL. ...
BillH's user avatar
  • 421
1 vote
2 answers
1k views

How can I change the log level at run time, using semantic logging? In my Global.asax Application_Startup I have the following code: var listener = new ObservableEventListener(); ...
Paul Fryer's user avatar
  • 9,597
1 vote
1 answer
126 views

I'm using Semantic logging with Windows Azure Websites, I wonder Using Semantic logging using Azure website and store log in Azure Table storage and Azure SQL db is Inproc or out Proc ? Can anyone ...
Neo's user avatar
  • 16.3k
1 vote
1 answer
297 views

For application logging I have used Semantic Logging but I want to save logging into Azure table storage, now I just displayed it on Console. static void Main(string[] args) { //...
Neo's user avatar
  • 16.3k
1 vote
1 answer
184 views

I've created an EventSource in my application, which is using SLAB. It's working fine, for the most part. I had an initial message, but I decided to change the message. Whenever the out-of-process ...
Blake's user avatar
  • 318
2 votes
2 answers
624 views

How can the SqlDatabaseSink store the payload in separate columns? It's mentioned in the documentation, but I haven't seen it done anywhere. When I've tried, the payload is always stored as a JSON ...
clarionprogrammer's user avatar
2 votes
2 answers
1k views

How to set up the SQL Server database for Semantic logging. Does the table for logging information needs to be created earlier? If yes, what is the schema to be used. I have the following code : var ...
Sumesh Kuttan's user avatar
4 votes
1 answer
648 views

Is there a way to redirect events logged using the Semantic Logging Application Block to a Log4Net listener? What I want to do is fully instrument my libraries for SLAB, but in a way that doesn't ...
Jonathan Allen's user avatar
1 vote
0 answers
450 views

I'm trying to create an event source class for SLAB using C++. I've already tried creating one using C# so I'm really clueless on the following issue. So basically I'm using the System::Diagnostic::...
user3687031's user avatar
0 votes
2 answers
830 views

The reason I'm asking is I would like to use the out-of-proc mode, but I cannot install a service on each user's workstation, only on a central server. Is the communication between event source and ...
ProfK's user avatar
  • 51.4k
0 votes
1 answer
286 views

I want to decide between semantic logging for azure vs traditional logging where all logs use to go to wadlogs table. Is there any specific reason we should go for one or other? what is the difference ...
user3584843's user avatar
4 votes
1 answer
3k views

I am using the Semantic Logging Application Block, and I have the following two EventSource based classes (inner constant classes omitted for brevity: [EventSource(Name = EventSourceNames.Prism)] ...
ProfK's user avatar
  • 51.4k
9 votes
4 answers
3k views

The Semantic Logging Application Block (SLAB) is very appealing to me, and I wish to use it in a large, composite application I am writing. To use it, one writes a class derived from 'EventSource', ...
ProfK's user avatar
  • 51.4k