0
votes
0answers
3 views
Windows Azure logging: WADLogsTable as Application logs?
With the new changes in Diagnostics monitoring with November Windows Azure CTP, based on what I’ve seen with logging samples I have the following question:
Is it a best practice to just use …
1
vote
4answers
463 views
How fast is a log4net logging method (Debug, Info, etc)?
I'm a big fan of log4net, but recently, some (in my department) have questioned its inclusion in our projects because of the seemingly heaviness of each logging method. I would argue that there are …
1
vote
4answers
536 views
TimedRotatingFileHandler Changing File Name?
I am trying to implement the python logging handler called TimedRotatingFileHandler.
When it rolls over to midnight it appends the current day in the form: "YYYY-MM-DD".
LOGGING_MSG_FORMAT = …
2
votes
3answers
109 views
Threadsafe logging
Hi All!
I want to implement a simple class for logging from multiple threads. The idea there is, that each object that wants to log stuff, receives an ostream-object that it can write messages to …
1
vote
6answers
31 views
What information should/shouldn’t an error page display in a web application?
I'm developing a number of error views for an ASP.NET MVC application (a not-found, unknown and general error view) and I'm curious to know how others would answer these questions:
What kind of …
2
votes
6answers
40 views
Physical/in-Memory database. (for logging purposes on my website)
We all know MYSQL.
We all know memcached.
I love memcached. You have a string key , and it returns a value. Dead simple.
Is there a database for memory?
For example, I am building a website that …
1
vote
2answers
32 views
How to log the memory consumption on Linux?
Is there any ready-to-use solution to log the memory consumption from the start of the system? I'd like to log the data to simple text file or some database so I can analyze it later.
I'm working on …
0
votes
1answer
18 views
Audit Logging in SharePoint MOSS
Hi
We want to be able to view an audit of changes to groups/members/user profiles within MOSS. Can we do this out of the box or would we need a 3rd party tool?
Is everything within MOSS audited …
2
votes
3answers
28 views
Monitor account activity for SQL Server 2005
I'm looking for the easiest way to view what users are logging into my database. We have some old user accounts that might not be getting used anymore. Instead of just turning them off and seeing who …
0
votes
0answers
6 views
Displaying access log analysis
I'm doing some work to analyse the access logs from a Catalyst web application. The data is from the load balancers in front of the web farm and totals about 35Gb per day. It's stored in a Hadoop HDFS …
4
votes
6answers
289 views
Java Logging: show the source line number of the caller (not the logging helper method)
The numerous (sigh...) logging frameworks for Java all do a nice job of showing the line number of the source file name for the method that created the log message:
log.info("hey");
[INFO] …
1
vote
1answer
45 views
Monitor How Often Assemblies Are Loaded From GAC
I currently have 3 servers each running different applications. Occasionally through installation misconfiguration and code re-factoring these machines are left with assemblies in the GAC that are no …
3
votes
7answers
383 views
Logging frameworks for embedded linux?
I need a small, portable framework for logging on embedded linux. Ideally it would output to a file or a socket, and having some sort of log rotation/compression would also be nice.
So far, I've …
2
votes
4answers
108 views
Who is calling my WebService?
I have a web service that is on an internal server. It can be called from any website on our network.
More and more developers are starting to use it. Current probably 20+ pages use this service, …
0
votes
1answer
19 views
adding date to Java util logger fileHandler name
Hi I currently have this in my .properties file:
java.util.logging.FileHandler.pattern = %h/programName%u%g.log
I would also like to append a timestamp / username to this so its easy to identify log …
