cancel
Showing results for 
Search instead for 
Did you mean: 
cancel
734
Views
0
Helpful
2
Replies

Sending CPU Statistic report every 5 min.

ms_sourav
Level 1
Level 1

Hi All,

     Can anyone tell me how can I send Router's CPU utilization report to a particular mail id in a certain time interval using event manager applet?

1 Accepted Solution

Accepted Solutions

Joe Clarke
Cisco Employee
Cisco Employee

Sure:

event manager applet send-cpu

event timer watchdog time 300

action 1.0 cli command "enable"

action 2.0 cli command "show proc cpu | inc CPU utilization"

action 3.0 mail from user@company.com to user@company.com subject "CPU Utilization" server 10.1.1.1 body "$_cli_result"

View solution in original post

2 Replies 2

Joe Clarke
Cisco Employee
Cisco Employee

Sure:

event manager applet send-cpu

event timer watchdog time 300

action 1.0 cli command "enable"

action 2.0 cli command "show proc cpu | inc CPU utilization"

action 3.0 mail from user@company.com to user@company.com subject "CPU Utilization" server 10.1.1.1 body "$_cli_result"

Thank you very much Joseph.