About 66,900 results
Open links in new tab
  1. How to monitor a windows log file in real time? [closed]

    On windows how can I easily monitor a log file and see updates to the file in real time? Basically, same functionality like tail -f log_file on Unix systems Platform: Windows XP/2003/2008 server …

  2. Shell command to monitor changes in a file - Server Fault

    Feb 3, 2020 · I know there was a command on Unix that I could use to monitor a file and see changes that are getting written to it. This was quite useful especially for checking log files. Do …

  3. windows - Get a history of CPU/memory usage - Server Fault

    Jun 30, 2009 · Windows Performance Monitor (perfmon) should do the job for you; you can configure it to log to a file, so just enable the counters you need and it'll log as much as you want.

  4. How do I log every command executed by a user? - Server Fault

    I want to monitor all user's activity in my server. Even when the user executes a shell command from some editor like vim I want to see them in the log file. I have checked the tool acct but it i...

  5. log files - Colorize Monitoring of Logs - Server Fault

    Aug 13, 2009 · I have several presets for various file types in separate runnable files. Then I just run mvn clear install | colorbuild, tail -f *.log* | colorlog or svn diff | colordif to have really fancy …

  6. I want to use zabbix6 to monitor the log files - Server Fault

    Jun 19, 2023 · I want to use zabbix6 to monitor the log files Ask Question Asked 2 years, 4 months ago Modified 2 years, 4 months ago

  7. Continuously monitor logs with tail that are occasionally rotated

    Jul 21, 2016 · We're using tail to continuously monitor several logs, but when a log is rotated the tail for that file will cease. As far as I understand, the problem is that when the log is rotated, …

  8. How to save a perfmon Performance Counter as a textfile …

    The format is: relog -f csv input.blg -o output.csv If you are talking about changing the collector to use a CSV by default, it is a setting in Perfmon itself. On the Log Files tab of your counter, you …

  9. windows - Where can I see what calls of EXE-programs have been …

    Sep 17, 2015 · System Monitor (Sysmon) is a Windows system service and device driver that, once installed on a system, remains resident across system reboots to monitor and log system …

  10. How can I fully log all bash scripts actions? - Server Fault

    exec 1>log.out 2>&1 # Everything below will go to the file 'log.out': Explanation: exec 3>&1 4>&2 Saves file descriptors so they can be restored to whatever they were before redirection or …