0
votes

is it possible to read the system status of a Sharepoint (2019) SSA with powershell? I am especially interested in the values: Recent crawl rate Searchable items and Recent query rate

Search Service Administration - System Status - Picture

Unfortunately I do not get on with this problem. many thanks for your help

1

1 Answers

0
votes

Try to use this:

$ssa = Get-SPEnterpriseSearchServiceApplication
($ssa.GetType().InvokeMember("get_Monitoring",("NonPublic", "Instance", "InvokeMethod"),$null,$ssa,$null))