Hi @안 남기
Here is one example
Perf
| where Computer == "DC00.na.contosohotels.com"
| where ObjectName == "Process"
| where CounterName == "% Processor Time"
| where InstanceName =~ "MsSenseS"
| make-series Average = avg(CounterValue) default = 0 on TimeGenerated from ago(1d) to now() step 15m by InstanceName
| render timechart
Here I am looking at the average processor time used by the process named "MsSenseS" across 15 minute intervals for the last 24 hours for the computer "DC00.na.contosohotels.com".
I hope this helps provide you with the information you need. If it does, please make sure to mark the question as answered so it helps other people in future.
Kind regards
Alistair