Tools and methods for live-monitoring ASP.NET web applications?
I think many developers know that uncomfortable feeling when users tell them that “The application is slow (again).”
I think many developers know that uncomfortable feeling when users tell them that “The application is slow (again).”
I’m looking for a cross-platform file monitoring python package? I know it is possible to monitor files on windows using pywin32, and there are packages working on Linux/Unix but does anyone know about a cross-platform one? Answers: Thank you for visiting the Q&A section on Magenaut. Please note that all the answers may not help … Read more
I’m trying to find a nice way to read a log file in real time using python. I’d like to process lines from a log file one at a time as it is written. Somehow I need to keep trying to read the file until it is created and then continue to process lines until I terminate the process. Is there an appropriate way to do this? Thanks.
I would like to see what’s happening in my app server folders, i.e. which files are changed by process x or which *.war files have been changed (replaced/created) in the last x minutes.
Is it possible to forcibly add a timing alias (for lack of a better way to phrase it) to every command in bash?
I was wondering if there are any tools to keep track of the access history of a file. I know of stat, but as far as I understand, it only returns information about the last time the file was accessed. Answers: Thank you for visiting the Q&A section on Magenaut. Please note that all the … Read more
I installed CUDA toolkit on my computer and started BOINC project on GPU. In BOINC I can see that it is running on GPU, but is there a tool that can show me more details about that what is running on GPU – GPU usage and memory usage?
I want to monitor memory usage of a process, and I want this data to be logged. Does such a tool exist?
I’ve got a few processes with a known name that all write to files in a single directory. I’d like to log the number of disk block reads and writes over a period (not just file access) to test whether a parameter change reduces the amount of I/O significantly. I’m currently using iostat -d -p, but that is limited to the whole partition.