= ValueDisplay & " Write" Case "EXECUTE" IIsObject.AccessExecute = True ValueDisplay = ValueDisplay & " Execute" Case "SCRIPT" IIsObject.AccessScript = True ValueDisplay = ValueDisplay & " Script" Case Else WScript.Echo "Error: Setting not supported: " & Args(PermIndex) WScript.Quit (GENERAL_FAILURE) End Select Next End If If (Err.Number <> 0) Then ReportError () WScript.Echo "Error Trying To Set data on the Object: " & ObjectPath WScript.Quit (Err.Number) End If IIsObject.Setinfo If (Err.Number <> 0) Then ReportError () WScript.Echo "Error Trying To Set data on the Object: " & ObjectPath WScript.Quit (Err.Number) End If ' Send the current settings to the screen WScript.Echo ValueDisplay Case "VRPATH" IIsObjectPath = "IIS://" & MachineName & "/" & ObjectPath Set IIsObject = GetObject(IIsObjectPath) If (Err.Number <> 0) Then ReportError () WScript.Echo "Error Trying To Get the Object: " & ObjectPath WScript.Quit (Err.Number) End If ' Set the access flags to None, first, and then add them back, as necessary IIsObject.Path = Args(2) If (Err.Number <> 0) Then ReportError () WScript.Echo "Error Trying To Set data on the Object: " & ObjectPath WScript.Quit (Err.Number) End If ' Set up the display output ValueDisplay = "Path (VRPath)" & (Right(Spacer, SpacerSize - Len("Path (VRPath)")) & ": " & "(" & TypeName(IIsObject.Path) & ") " & IIsObject.Path) IIsObject.Setinfo If (Err.Number <> 0) Then ReportError () WScript.Echo "Error Trying To Set data on the Object: " & ObjectPath WScript.Quit (Err.Number) End If ' Send the current settings to the screen WScript.Echo ValueDisplay Case "AUTHORIZATION" IIsObjectPath = "IIS://" & MachineName & "/" & ObjectPath Set IIsObject = GetObject(IIsObjectPath) If (Err.Number <> 0) Then ReportError () WScript.Echo "Error Trying To Get the Object: " & ObjectPath WScript.Quit (Err.Number) End If ' Set the auth flags to None, first, and then add them back, as necessary IIsObject.AuthFlags = 0 ' Set up the display output ValueDisplay = "Authorization" & (Right(Spacer, SpacerSize - Len("Authorization")) & ": " & "(" & TypeName(IIsObject.AuthFlags) & ") ") For PermIndex = 2 To ArgCount - 1 Select Case UCase(Args(PermIndex)) Case "NT" IIsObject.AuthNTLM = True ValueDisplay = ValueDisplay & " NT" Case "ANONYMOUS" IIsObject.AuthAnonymous = True ValueDisplay = ValueDisplay & " Anonymous" Case "BASIC" IIsObject.AuthBasic = True ValueDisplay = ValueDisplay & " Basic" Case Else WScript.Echo "Error: Setting not supported: " & Args(PermIndex) WScript.Quit (GENERAL_FAILURE) End Select Next If (Err.Number <> 0) Then ReportError () WScript.Echo "Error Trying To Set data on the Object: " & ObjectPath WScript.Quit (Err.Number) End If IIsObject.Setinfo If (Err.Number <> 0) Then ReportError () WScript.Echo "Error Trying To Set data on the Object: " & ObjectPath WScript.Quit (Err.Number) End If ' Send the current settings to the screen WScript.Echo ValueDisplay Case "MIMEMAP" DoSpecialSetProp = MimeMapSet(ObjectPath, ObjectParameter, MachineName) ' Case "FILTER" ' DoSpecialSetProp = FiltersSet() Case Else DoSpecialSetProp = GENERAL_FAILURE End Select End Function '''''''''''''''''''''''''''''' ' ' Function SeparateMachineName ' ' This function will get the machine name from the Path parameter ' that was passed into the script. It will also alter the passed in ' path so that it contains only the rest of the path - not the machine ' name. If there is no machine name in the path, then the script ' will assume LocalHost. ' '''''''''''''''''''''''''''''' Function SeparateMachineName(Path) On Error Resume Next ' Temporarily, just return LocalHost ' SeparateMachineName = "LocalHost" SeparateMachineName = TargetServer Exit Function End Function '''''''''''''''''''''''''''''' ' ' Function MapSpecGetParamName ' ' Some parameters in MDUTIL are named differently in ADSI. ' This function maps the improtant parameter names to ADSI ' names. ' '''''''''''''''''''''''''''''' Function MapSpecGetParamName(ObjectParameter) On Error Resume Next Select Case UCase(ObjectParameter) Case "ACCESSPERM" WScript.Echo "Note: Your parameter """ & ObjectParameter & """ is being mapped to AccessFlags" WScript.Echo " Check individual perms using ""GET AccessRead"", ""GET AccessWrite"", etc." MapSpecGetParamName = "AccessFlags" Case "VRPATH" 'WScript.Echo "Note: Your parameter """ & ObjectParameter & """ is being mapped to PATH" MapSpecGetParamName = "Path" Case "AUTHORIZATION" WScript.Echo "Note: Your parameter """ & ObjectParameter & """ is being mapped to AuthFlags" WScript.Echo " Check individual auths using ""GET AuthNTLM"", ""GET AuthBasic"", etc." MapSpecGetParamName = "AuthFlags" Case Else ' Do nothing - the parameter doesn't map to anything special MapSpecGetParamName = ObjectParameter End Select End Function Sub ReportError() ' On Error Resume Next Dim ErrorDescription Select Case (Err.Number) Case &H80070003 ErrorDescription = "The path requested could not be found." Case &H80070005 ErrorDescription = "Access is denied for the requested path or property." Case &H80070094 ErrorDescription = "The requested path is being used by another application." Case Else ErrorDescription = Err.Description End Select WScript.Echo ErrorDescription WScript.Echo "ErrNumber: " & Err.Number & " (0x" & Hex(Err.Number) & ")" End Sub Function SplitParam(ObjectPath) ' Note: Assume the string has been sanitized (no leading or trailing slashes) On Error Resume Next Dim SlashIndex Dim TempParam Dim ObjectPathLen SplitParam = "" ' Assume no parameter ObjectPathLen = Len(ObjectPath) ' Separate the path of the node from the parameter SlashIndex = InStrRev(ObjectPath, "/") If (SlashIndex = 0) Or (SlashIndex = ObjectPathLen) Then TempParam = ObjectPath ObjectPath = "" ' ObjectParameter is more important Else TempParam = ObjectPath ObjectPath = Left(ObjectPath, SlashIndex - 1) TempParam = Right(TempParam, Len(TempParam) - SlashIndex) End If SplitParam = TempParam If (Err.Number <> 0) Then ReportError () WScript.Echo "Error trying to Split the parameter from the object: " & ObjectPath WScript.Quit (Err.Number) End If End Function Function SplitLeftPath(ObjectPath) ' Note: Assume the string has been sanitized (no leading or trailing slashes) On Error Resume Next Dim SlashIndex Dim TmpLeftPath Dim ObjectPathLen 'WScript.Echo "SplitLeftPath: ObjectPath: " & ObjectPath 'WScript.Echo "LastError: " & Err.Number & " (" & Hex (Err.Number) & ")" SplitLeftPath = "" ' Assume no LeftPath ObjectPathLen = Len(ObjectPath) ' Separate the left part of the path from the remaining path SlashIndex = InStr(ObjectPath, "/") If (SlashIndex = 0) Or (SlashIndex = ObjectPathLen) Then TmpLeftPath = ObjectPath ObjectPath = "" Else TmpLeftPath = Left(ObjectPath, SlashIndex - 1) ObjectPath = Right(ObjectPath, Len(ObjectPath) - SlashIndex) End If 'WScript.Echo "SplitLeftPath: ObjectPath: " & ObjectPath 'WScript.Echo "SplitLeftPath: TmpLeftPath: " & TmpLeftPath 'WScript.Echo "LastError: " & Err.Number & " (" & Hex (Err.Number) & ")" SplitLeftPath = TmpLeftPath 'WScript.Echo "SplitLeftPath: ObjectPath: " & ObjectPath 'WScript.Echo "LastError: " & Err.Number & " (" & Hex (Err.Number) & ")" 'WScript.Echo "SplitLeftPath: TmpLeftPath: " & TmpLeftPath If (Err.Number <> 0) Then ReportError () WScript.Echo "Error trying to split the left part of the path: " & ObjectPath WScript.Quit (Err.Number) End If End Function Sub SanitizePath(ObjectPath) On Error Resume Next ' Remove WhiteSpace Do While (Left(ObjectPath, 1) = " ") ObjectPath = Right(ObjectPath, Len(ObjectPath) - 1) Loop Do While (Right(ObjectPath, 1) = " ") ObjectPath = Left(ObjectPath, Len(ObjectPath) - 1) Loop ' Replace all occurrences of \ with / ObjectPath = Replace(ObjectPath, "\", "/") ' Remove leading and trailing slashes If Left(ObjectPath, 1) = "/" Then ObjectPath = Right(ObjectPath, Len(ObjectPath) - 1) End If If Right(ObjectPath, 1) = "/" Then ObjectPath = Left(ObjectPath, Len(ObjectPath) - 1) End If If (Err.Number <> 0) Then ReportError () WScript.Echo "Error Trying To Sanitize the path: " & ObjectPath WScript.Quit (Err.Number) End If End Sub ''''''''''''''''''''''''''''' ' AppCreateCommand ''''''''''''''''''''''''''''' Function AppCreateCommand(InProcFlag) On Error Resume Next Dim IIsObject Dim IIsObjectPath Dim ObjectPath Dim MachineName AppCreateCommand = 0 ' Assume Success If ArgCount <> 2 Then WScript.Echo "Error: Wrong number of Args for the APPCREATE command" WScript.Quit (GENERAL_FAILURE) End If ObjectPath = Args(1) SanitizePath ObjectPath MachineName = SeparateMachineName(ObjectPath) IIsObjectPath = "IIS://" & MachineName If ObjectPath <> "" Then IIsObjectPath = IIsObjectPath & "/" & ObjectPath End If Set IIsObject = GetObject(IIsObjectPath) If (Err.Number <> 0) Then ReportError () WScript.Echo "Error trying to get the path of the application: " & ObjectPath WScript.Quit (Err.Number) End If IIsObject.AppCreate2 (InProcFlag) If (Err.Number <> 0) Then ReportError () WScript.Echo "Error trying to create the application: " & ObjectPath WScript.Quit (Err.Number) End If WScript.Echo "Application Created." End Function ''''''''''''''''''''''''''''' ' AppDeleteCommand ''''''''''''''''''''''''''''' Function AppDeleteCommand() On Error Resume Next Dim IIsObject Dim IIsObjectPath Dim ObjectPath Dim MachineName AppDeleteCommand = 0 ' Assume Success If ArgCount <> 2 Then WScript.Echo "Error: Wrong number of Args for the APPDELETE command" WScript.Quit (GENERAL_FAILURE) End If ObjectPath = Args(1) SanitizePath ObjectPath MachineName = SeparateMachineName(ObjectPath) IIsObjectPath = "IIS://" & MachineName If ObjectPath <> "" Then IIsObjectPath = IIsObjectPath & "/" & ObjectPath End If Set IIsObject = GetObject(IIsObjectPath) If (Err.Number <> 0) Then ReportError () WScript.Echo "Error trying to get the path of the application: " & ObjectPath WScript.Quit (Err.Number) End If IIsObject.AppDelete If (Err.Number <> 0) Then ReportError () WScript.Echo "Error trying to DELETE the application: " & ObjectPath WScript.Quit (Err.Number) End If WScript.Echo "Application Deleted." End Function ''''''''''''''''''''''''''''' ' AppUnloadCommand ''''''''''''''''''''''''''''' Function AppUnloadCommand() On Error Resume Next Dim IIsObject Dim IIsObjectPath Dim ObjectPath Dim MachineName AppUnloadCommand = 0 ' Assume Success If ArgCount <> 2 Then WScript.Echo "Error: Wrong number of Args for the APPUNLOAD command" WScript.Quit (GENERAL_FAILURE) End If ObjectPath = Args(1) SanitizePath ObjectPath MachineName = SeparateMachineName(ObjectPath) IIsObjectPath = "IIS://" & MachineName If ObjectPath <> "" Then IIsObjectPath = IIsObjectPath & "/" & ObjectPath End If Set IIsObject = GetObject(IIsObjectPath) If (Err.Number <> 0) Then ReportError () WScript.Echo "Error trying to get the path of the application: " & ObjectPath WScript.Quit (Err.Number) End If IIsObject.AppUnload If (Err.Number <> 0) Then ReportError () WScript.Echo "Error trying to UNLOAD the application: " & ObjectPath WScript.Quit (Err.Number) End If WScript.Echo "Application Unloaded." End Function Function AppDisableCommand() On Error Resume Next Dim IIsObject Dim IIsObjectPath Dim ObjectPath Dim MachineName AppDisableCommand = 0 ' Assume Success If ArgCount <> 2 Then WScript.Echo "Error: Wrong number of Args for the APPDISABLE command" WScript.Quit (GENERAL_FAILURE) End If ObjectPath = Args(1) SanitizePath ObjectPath MachineName = SeparateMachineName(ObjectPath) 'debug 'WScript.Echo "Last Error: " & Err & " (" & Hex (Err) & "): " & Err.Description IIsObjectPath = "IIS://" & MachineName If ObjectPath <> "" Then IIsObjectPath = IIsObjectPath & "/" & ObjectPath End If Set IIsObject = GetObject(IIsObjectPath) If (Err.Number <> 0) Then ReportError () WScript.Echo "Error trying to get the path of the application: " & ObjectPath WScript.Quit (Err.Number) End If IIsObject.AppDisable If (Err.Number <> 0) Then ReportError () WScript.Echo "Error trying to disable the application: " & ObjectPath WScript.Quit (Err.Number) End If 'debug 'WScript.Echo "Last Error: " & Err & " (" & Hex (Err) & "): " & Err.Description WScript.Echo "Application Disabled." End Function Function AppEnableCommand() On Error Resume Next Dim IIsObject Dim IIsObjectPath Dim ObjectPath Dim MachineName AppEnableCommand = 0 ' Assume Success If ArgCount <> 2 Then WScript.Echo "Error: Wrong number of Args for the APPENABLE command" WScript.Quit (GENERAL_FAILURE) End If ObjectPath = Args(1) SanitizePath ObjectPath MachineName = SeparateMachineName(ObjectPath) 'debug 'WScript.Echo "Last Error: " & Err & " (" & Hex (Err) & "): " & Err.Description IIsObjectPath = "IIS://" & MachineName If ObjectPath <> "" Then IIsObjectPath = IIsObjectPath & "/" & ObjectPath End If Set IIsObject = GetObject(IIsObjectPath) If (Err.Number <> 0) Then ReportError () WScript.Echo "Error trying to get the path of the application: " & ObjectPath WScript.Quit (Err.Number) End If IIsObject.AppEnable If (Err.Number <> 0) Then ReportError () WScript.Echo "Error trying to Enable the application: " & ObjectPath WScript.Quit (Err.Number) End If 'debug 'WScript.Echo "Last Error: " & Err & " (" & Hex (Err) & "): " & Err.Description WScript.Echo "Application Enabled." End Function ''''''''''''''''''''''''''''' ' AppGetStatusCommand ''''''''''''''''''''''''''''' Function AppGetStatusCommand() On Error Resume Next Dim IIsObject Dim IIsObjectPath Dim ObjectPath Dim MachineName Dim Status AppGetStatusCommand = 0 ' Assume Success If ArgCount <> 2 Then WScript.Echo "Error: Wrong number of Args for the APPGETSTATUS command" WScript.Quit (GENERAL_FAILURE) End If ObjectPath = Args(1) SanitizePath ObjectPath MachineName = SeparateMachineName(ObjectPath) IIsObjectPath = "IIS://" & MachineName If ObjectPath <> "" Then IIsObjectPath = IIsObjectPath & "/" & ObjectPath End If Set IIsObject = GetObject(IIsObjectPath) If (Err.Number <> 0) Then ReportError () WScript.Echo "Error trying to get the path of the application: " & ObjectPath WScript.Quit (Err.Number) End If Status = IIsObject.AppGetStatus2 If (Err.Number <> 0) Then ReportError () WScript.Echo "Error trying to retrieve the application STATUS: " & ObjectPath WScript.Quit (Err.Number) End If WScript.Echo "Application Status: " & Status End Function '''''''''''''''''''''''''' ' ' IsSecureProperty ' ' Checks to see if the property requires special processing in order to ' display its contents. ' '''''''''''''''''''''''''' Function IsSecureProperty(ObjectParameter,MachineName) On Error Resume Next Dim PropObj,Attribute Set PropObj = GetObject("IIS://" & MachineName & "/schema/" & ObjectParameter) If (Err.Number <> 0) Then ReportError () WScript.Echo "Error trying to get the property: " & err.number WScript.Quit (Err.Number) End If Attribute = PropObj.Secure If (Attribute = True) Then IsSecureProperty = True Else IsSecureProperty = False End If End Function ' We want to be able to cope with 32-bit unsigned integers, ' but CLng works with 32-bit signed integers Function StringTo32BitUnsignedInteger(ValueData) Dim numVal If (UCase(Left(ValueData, 2))) = "0X" Then ValueData = "&h" & Right(ValueData, Len(ValueData) - 2) End If numVal = Int(ValueData) ' Despite its name, this actually turns it into a double. If numVal < 0 Or numVal >= 4294967296 Then ' this number is out of the range of a 32-bit unsigned integer, Err.Raise 6 ' overflow ElseIf numVal >= 2147483648 Then ' bias downwards by -2^32 numVal = numVal - 4294967296 End If StringTo32BitUnsignedInteger = CLng(numVal) End Function Function UnsignedIntegerToString(ValueData) Dim numVal numVal = CLng(ValueData) numVal = Int(numVal) If numVal < 0 Then numVal = numVal + 4294967296 End If UnsignedIntegerToString = CStr(numVal) End Function [info] drivername=MSSearch symbolfile=dsscntrs.h [languages] 000=Neutral 009=English 00C=French 007=German 011=Japanese 00A=Spanish 010=Italian 012=Korean 004=Chinese [text] OBJECT_DSS_009_NAME = Microsoft Search OBJECT_DSS_009_HELP = Global counters in the Microsoft search service. COUNTER_DSS_CURRENT_CONNECTIONS_009_NAME = Current Connections COUNTER_DSS_CURRENT_CONNECTIONS_009_HELP = The number of currently established connections between the Search service and all clients. COUNTER_DSS_THREADS_009_NAME = Threads COUNTER_DSS_THREADS_009_HELP = The total number of threads avaliable for servicing queries. COUNTER_DSS_ACTIVE_THREADS_009_NAME = Active Threads COUNTER_DSS_ACTIVE_THREADS_009_HELP = The total number of threads currently servicing queries. COUNTER_DSS_QUERIES_009_NAME = Queries COUNTER_DSS_QUERIES_009_HELP = Cumulative number of queries posted to the server. COUNTER_DSS_QUERIES_PER_SEC_009_NAME = Query Rate COUNTER_DSS_QUERIES_PER_SEC_009_HELP = The number of queries posted to the server per second. COUNTER_DSS_FAILED_QUERIES_009_NAME = Failed Queries COUNTER_DSS_FAILED_QUERIES_009_HELP = The number of queries that have failed. COUNTER_DSS_FAILED_QUERIES_PER_SEC_009_NAME = Failed Query Rate COUNTER_DSS_FAILED_QUERIES_PER_SEC_009_HELP = The number of failed queries per second. COUNTER_DSS_RESULTS_009_NAME = Results COUNTER_DSS_RESULTS_009_HELP = The cumulative number of results returned to clients. COUNTER_DSS_RESULTS_PER_SEC_009_NAME = Result Rate COUNTER_DSS_RESULTS_PER_SEC_009_HELP = The number of results returned to the client per second. COUNTER_DSS_SUCCESS_QUERIES_009_NAME = Succeeded Queries COUNTER_DSS_SUCCESS_QUERIES_009_HELP = The number of queries that produce successful searches. COUNTER_DSS_SUCCESS_QUERIES_PER_SEC_009_NAME = Succeeded Query Rate COUNTER_DSS_SUCCESS_QUERIES_PER_SEC_009_HELP = The number of queries per second that produce successful searches. OBJECT_DATASOURCE_009_NAME = Microsoft Search Catalogs OBJECT_DATASOURCE_009_HELP = Represents a single catalog in the Microsoft Search service. COUNTER_DATASOURCE_QUERIES_009_NAME = Queries COUNTER_DATASOURCE_QUERIES_009_HELP = Cumulative number of queries posted to the catalog. COUNTER_DATASOURCE_QUERIES_PER_SEC_009_NAME = Queries Rate COUNTER_DATASOURCE_QUERIES_PER_SEC_009_HELP = The number of queries posted to the catalog per second. COUNTER_DATASOURCE_FAILED_QUERIES_009_NAME = Failed Queries COUNTER_DATASOURCE_FAILED_QUERIES_009_HELP = The number of queries that have failed. COUNTER_DATASOURCE_FAILED_QUERIES_PER_SEC_009_NAME = Failed Queries Rate COUNTER_DATASOURCE_FAILED_QUERIES_PER_SEC_009_HELP = The number of failed queries per second. COUNTER_DATASOURCE_RESULTS_009_NAME = Results COUNTER_DATASOURCE_RESULTS_009_HELP = The cumulative number of results returned to clients. COUNTER_DATASOURCE_RESULTS_PER_SEC_009_NAME = Results Rate COUNTER_DATASOURCE_RESULTS_PER_SEC_009_HELP = The number of results returned to the client per second. COUNTER_DATASOURCE_SUCCESS_QUERIES_009_NAME = Successful Queries COUNTER_DATASOURCE_SUCCESS_QUERIES_009_HELP = The number of queries that produce successful searches. COUNTER_DATASOURCE_SUCCESS_QUERIES_PER_SEC_009_NAME = Successful Queries Rate COUNTER_DATASOURCE_SUCCESS_QUERIES_PER_SEC_009_HELP = The number of queries per second that produce successful searches. COUNTER_INDEXER_PERSISTENT_INDEXES_009_NAME = Persistent Indexes COUNTER_INDEXER_PERSISTENT_INDEXES_009_HELP = The number of persistent indexes. COUNTER_INDEXER_INDEX_SIZE_009_NAME = Catalog Size (MBytes) COUNTER_INDEXER_INDEX_SIZE_009_HELP = Size of catalog data in megabytes. COUNTER_INDEXER_NUM_UNIQUE_KEY_009_NAME = Unique Keys COUNTER_INDEXER_NUM_UNIQUE_KEY_009_HELP = Number of unique words and properties in the catalog. COUNTER_INDEXER_NUM_DOCUMENTS_009_NAME = Number Of Documents COUNTER_INDEXER_NUM_DOCUMENTS_009_HELP = The total number of documents in the catalog. OBJECT_DSS_000_NAME = Microsoft Search OBJECT_DSS_000_HELP = Global counters in the Microsoft search service. COUNTER_DSS_CURRENT_CONNECTIONS_000_NAME = Current Connections COUNTER_DSS_CURRENT_CONNECTIONS_000_HELP = The number of currently established connections between the Search service and all clients. COUNTER_DSS_THREADS_000_NAME = Threads COUNTER_DSS_THREADS_000_HELP = The total number of threads avaliable for servicing queries. COUNTER_DSS_ACTIVE_THREADS_000_NAME = Active Threads COUNTER_DSS_ACTIVE_THREADS_000_HELP = The total number of threads currently servicing queries. COUNTER_DSS_QUERIES_000_NAME = Queries COUNTER_DSS_QUERIES_000_HELP = Cumulative number of queries posted to the server. COUNTER_DSS_QUERIES_PER_SEC_000_NAME = Query Rate COUNTER_DSS_QUERIES_PER_SEC_000_HELP = The number of queries posted to the server per second. COUNTER_DSS_FAILED_QUERIES_000_NAME = Failed Queries COUNTER_DSS_FAILED_QUERIES_000_HELP = The number of queries that have failed. COUNTER_DSS_FAILED_QUERIES_PER_SEC_000_NAME = Failed Query Rate COUNTER_DSS_FAILED_QUERIES_PER_SEC_000_HELP = The number of failed queries per second. COUNTER_DSS_RESULTS_000_NAME = Results COUNTER_DSS_RESULTS_000_HELP = The cumulative number of results returned to clients. COUNTER_DSS_RESULTS_PER_SEC_000_NAME = Result Rate COUNTER_DSS_RESULTS_PER_SEC_000_HELP = The number of results returned to the client per second. COUNTER_DSS_SUCCESS_QUERIES_000_NAME = Succeeded Queries COUNTER_DSS_SUCCESS_QUERIES_000_HELP = The number of queries that produce successful searches. COUNTER_DSS_SUCCESS_QUERIES_PER_SEC_000_NAME = Succeeded Query Rate COUNTER_DSS_SUCCESS_QUERIES_PER_SEC_000_HELP = The number of queries per second that produce successful searches. OBJECT_DATASOURCE_000_NAME = Microsoft Search Catalogs OBJECT_DATASOURCE_000_HELP = Represents a single catalog in the Microsoft Search service. COUNTER_DATASOURCE_QUERIES_000_NAME = Queries COUNTER_DATASOURCE_QUERIES_000_HELP = Cumulative number of queries posted to the catalog. COUNTER_DATASOURCE_QUERIES_PER_SEC_000_NAME = Queries Rate COUNTER_DATASOURCE_QUERIES_PER_SEC_000_HELP = The number of queries posted to the catalog per second. COUNTER_DATASOURCE_FAILED_QUERIES_000_NAME = Failed Queries COUNTER_DATASOURCE_FAILED_QUERIES_000_HELP = The number of queries that have failed. COUNTER_DATASOURCE_FAILED_QUERIES_PER_SEC_000_NAME = Failed Queries Rate COUNTER_DATASOURCE_FAILED_QUERIES_PER_SEC_000_HELP = The number of failed queries per second. COUNTER_DATASOURCE_RESULTS_000_NAME = Results COUNTER_DATASOURCE_RESULTS_000_HELP = The cumulative number of results returned to clients. COUNTER_DATASOURCE_RESULTS_PER_SEC_000_NAME = Results Rate COUNTER_DATASOURCE_RESULTS_PER_SEC_000_HELP = The number of results returned to the client per second. COUNTER_DATASOURCE_SUCCESS_QUERIES_000_NAME = Successful Queries COUNTER_DATASOURCE_SUCCESS_QUERIES_000_HELP = The number of queries that produce successful searches. COUNTER_DATASOURCE_SUCCESS_QUERIES_PER_SEC_000_NAME = Successful Queries Rate COUNTER_DATASOURCE_SUCCESS_QUERIES_PER_SEC_000_HELP = The number of queries per second that produce successful searches. COUNTER_INDEXER_PERSISTENT_INDEXES_000_NAME = Persistent Indexes COUNTER_INDEXER_PERSISTENT_INDEXES_000_HELP = The number of persistent indexes. COUNTER_INDEXER_INDEX_SIZE_000_NAME = Catalog Size (MBytes) COUNTER_INDEXER_INDEX_SIZE_000_HELP = Size of catalog data in megabytes. COUNTER_INDEXER_NUM_UNIQUE_KEY_000_NAME = Unique Keys COUNTER_INDEXER_NUM_UNIQUE_KEY_000_HELP = Number of unique words and properties in the catalog. COUNTER_INDEXER_NUM_DOCUMENTS_000_NAME = Number Of Documents COUNTER_INDEXER_NUM_DOCUMENTS_000_HELP = The total number of documents in the catalog. OBJECT_DSS_00C_NAME=Microsoft Search OBJECT_DSS_00C_HELP=Global counters in the Microsoft search service. COUNTER_DSS_CURRENT_CONNECTIONS_00C_NAME=Current Connections COUNTER_DSS_CURRENT_CONNECTIONS_00C_HELP=The number of currently established connections between the Search service and all clients. COUNTER_DSS_THREADS_00C_NAME=Threads COUNTER_DSS_THREADS_00C_HELP=The total number of threads avaliable for servicing queries. COUNTER_DSS_ACTIVE_THREADS_00C_NAME=Active Threads COUNTER_DSS_ACTIVE_THREADS_00C_HELP=The total number of threads currently servicing queries. COUNTER_DSS_QUERIES_00C_NAME=Queries COUNTER_DSS_QUERIES_00C_HELP=Cumulative number of queries posted to the server. COUNTER_DSS_QUERIES_PER_SEC_00C_NAME=Query Rate COUNTER_DSS_QUERIES_PER_SEC_00C_HELP=The number of queries posted to the server per second. COUNTER_DSS_FAILED_QUERIES_00C_NAME=Failed Queries COUNTER_DSS_FAILED_QUERIES_00C_HELP=The number of queries that have failed. COUNTER_DSS_FAILED_QUERIES_PER_SEC_00C_NAME=Failed Query Rate COUNTER_DSS_FAILED_QUERIES_PER_SEC_00C_HELP=The number of failed queries per second. COUNTER_DSS_RESULTS_00C_NAME=Results COUNTER_DSS_RESULTS_00C_HELP=The cumulative number of results returned to clients. COUNTER_DSS_RESULTS_PER_SEC_00C_NAME=Result Rate COUNTER_DSS_RESULTS_PER_SEC_00C_HELP=The number of results returned to the client per second. COUNTER_DSS_SUCCESS_QUERIES_00C_NAME=Succeeded Queries COUNTER_DSS_SUCCESS_QUERIES_00C_HELP=The number of queries that produce successful searches. COUNTER_DSS_SUCCESS_QUERIES_PER_SEC_00C_NAME=Succeeded Query Rate COUNTER_DSS_SUCCESS_QUERIES_PER_SEC_00C_HELP=The number of queries per second that produce successful searches. OBJECT_DATASOURCE_00C_NAME=Microsoft Search Catalogs OBJECT_DATASOURCE_00C_HELP=Represents a single catalog in the Microsoft Search service. COUNTER_DATASOURCE_QUERIES_00C_NAME=Queries COUNTER_DATASOURCE_QUERIES_00C_HELP=Cumulative number of queries posted to the catalog. COUNTER_DATASOURCE_QUERIES_PER_SEC_00C_NAME=Queries Rate COUNTER_DATASOURCE_QUERIES_PER_SEC_00C_HELP=The number of queries posted to the catalog per second. COUNTER_DATASOURCE_FAILED_QUERIES_00C_NAME=Failed Queries COUNTER_DATASOURCE_FAILED_QUERIES_00C_HELP=The number of queries that have failed. COUNTER_DATASOURCE_FAILED_QUERIES_PER_SEC_00C_NAME=Failed Queries Rate COUNTER_DATASOURCE_FAILED_QUERIES_PER_SEC_00C_HELP=The number of failed queries per second. COUNTER_DATASOURCE_RESULTS_00C_NAME=Results COUNTER_DATASOURCE_RESULTS_00C_HELP=The cumulative number of results returned to clients. COUNTER_DATASOURCE_RESULTS_PER_SEC_00C_NAME=Results Rate COUNTER_DATASOURCE_RESULTS_PER_SEC_00C_HELP=The number of results returned to the client per second. COUNTER_DATASOURCE_SUCCESS_QUERIES_00C_NAME=Successful Queries COUNTER_DATASOURCE_SUCCESS_QUERIES_00C_HELP=The number of queries that produce successful searches. COUNTER_DATASOURCE_SUCCESS_QUERIES_PER_SEC_00C_NAME=Successful Queries Rate COUNTER_DATASOURCE_SUCCESS_QUERIES_PER_SEC_00C_HELP=The number of queries per second that produce successful searches. COUNTER_INDEXER_PERSISTENT_INDEXES_00C_NAME=Persistent Indexes COUNTER_INDEXER_PERSISTENT_INDEXES_00C_HELP=The number of persistent indexes. COUNTER_INDEXER_INDEX_SIZE_00C_NAME=Catalog Size (MBytes) COUNTER_INDEXER_INDEX_SIZE_00C_HELP=Size of catalog data in megabytes. COUNTER_INDEXER_NUM_UNIQUE_KEY_00C_NAME=Unique Keys COUNTER_INDEXER_NUM_UNIQUE_KEY_00C_HELP=Number of unique words and properties in the catalog. COUNTER_INDEXER_NUM_DOCUMENTS_00C_NAME=Number Of Documents COUNTER_INDEXER_NUM_DOCUMENTS_00C_HELP=The total number of documents in the catalog. OBJECT_DSS_007_NAME=Microsoft Search OBJECT_DSS_007_HELP=Global counters in the Microsoft search service. COUNTER_DSS_CURRENT_CONNECTIONS_007_NAME=Current Connections COUNTER_DSS_CURRENT_CONNECTIONS_007_HELP=The number of currently established connections between the Search service and all clients. COUNTER_DSS_THREADS_007_NAME=Threads COUNTER_DSS_THREADS_007_HELP=The total number of threads avaliable for servicing queries. COUNTER_DSS_ACTIVE_THREADS_007_NAME=Active Threads COUNTER_DSS_ACTIVE_THREADS_007_HELP=The total number of threads currently servicing queries. COUNTER_DSS_QUERIES_007_NAME=Queries COUNTER_DSS_QUERIES_007_HELP=Cumulative number of queries posted to the server. COUNTER_DSS_QUERIES_PER_SEC_007_NAME=Query Rate COUNTER_DSS_QUERIES_PER_SEC_007_HELP=The number of queries posted to the server per second. COUNTER_DSS_FAILED_QUERIES_007_NAME=Failed Queries COUNTER_DSS_FAILED_QUERIES_007_HELP=The number of queries that have failed. COUNTER_DSS_FAILED_QUERIES_PER_SEC_007_NAME=Failed Query Rate COUNTER_DSS_FAILED_QUERIES_PER_SEC_007_HELP=The number of failed queries per second. COUNTER_DSS_RESULTS_007_NAME=Results COUNTER_DSS_RESULTS_007_HELP=The cumulative number of results returned to clients. COUNTER_DSS_RESULTS_PER_SEC_007_NAME=Result Rate COUNTER_DSS_RESULTS_PER_SEC_007_HELP=The number of results returned to the client per second. COUNTER_DSS_SUCCESS_QUERIES_007_NAME=Succeeded Queries COUNTER_DSS_SUCCESS_QUERIES_007_HELP=The number of queries that produce successful searches. COUNTER_DSS_SUCCESS_QUERIES_PER_SEC_007_NAME=Succeeded Query Rate COUNTER_DSS_SUCCESS_QUERIES_PER_SEC_007_HELP=The number of queries per second that produce successful searches. OBJECT_DATASOURCE_007_NAME=Microsoft Search Catalogs OBJECT_DATASOURCE_007_HELP=Represents a single catalog in the Microsoft Search service. COUNTER_DATASOURCE_QUERIES_007_NAME=Queries COUNTER_DATASOURCE_QUERIES_007_HELP=Cumulative number of queries posted to the catalog. COUNTER_DATASOURCE_QUERIES_PER_SEC_007_NAME=Queries Rate COUNTER_DATASOURCE_QUERIES_PER_SEC_007_HELP=The number of queries posted to the catalog per second. COUNTER_DATASOURCE_FAILED_QUERIES_007_NAME=Failed Queries COUNTER_DATASOURCE_FAILED_QUERIES_007_HELP=The number of queries that have failed. COUNTER_DATASOURCE_FAILED_QUERIES_PER_SEC_007_NAME=Failed Queries Rate COUNTER_DATASOURCE_FAILED_QUERIES_PER_SEC_007_HELP=The number of failed queries per second. COUNTER_DATASOURCE_RESULTS_007_NAME=Results COUNTER_DATASOURCE_RESULTS_007_HELP=The cumulative number of results returned to clients. COUNTER_DATASOURCE_RESULTS_PER_SEC_007_NAME=Results Rate COUNTER_DATASOURCE_RESULTS_PER_SEC_007_HELP=The number of results returned to the client per second. COUNTER_DATASOURCE_SUCCESS_QUERIES_007_NAME=Successful Queries COUNTER_DATASOURCE_SUCCESS_QUERIES_007_HELP=The number of queries that produce successful searches. COUNTER_DATASOURCE_SUCCESS_QUERIES_PER_SEC_007_NAME=Successful Queries Rate COUNTER_DATASOURCE_SUCCESS_QUERIES_PER_SEC_007_HELP=The number of queries per second that produce successful searches. COUNTER_INDEXER_PERSISTENT_INDEXES_007_NAME=Persistent Indexes COUNTER_INDEXER_PERSISTENT_INDEXES_007_HELP=The number of persistent indexes. COUNTER_INDEXER_INDEX_SIZE_007_NAME=Catalog Size (MBytes) COUNTER_INDEXER_INDEX_SIZE_007_HELP=Size of catalog data in megabytes. COUNTER_INDEXER_NUM_UNIQUE_KEY_007_NAME=Unique Keys COUNTER_INDEXER_NUM_UNIQUE_KEY_007_HELP=Number of unique words and properties in the catalog. COUNTER_INDEXER_NUM_DOCUMENTS_007_NAME=Number Of Documents COUNTER_INDEXER_NUM_DOCUMENTS_007_HELP=The total number of documents in the catalog. OBJECT_DSS_011_NAME=Microsoft Search OBJECT_DSS_011_HELP=Global counters in the Microsoft search service. COUNTER_DSS_CURRENT_CONNECTIONS_011_NAME=Current Connections COUNTER_DSS_CURRENT_CONNECTIONS_011_HELP=The number of currently established connections between the Search service and all clients. COUNTER_DSS_THREADS_011_NAME=Threads COUNTER_DSS_THREADS_011_HELP=The total number of threads avaliable for servicing queries. COUNTER_DSS_ACTIVE_THREADS_011_NAME=Active Threads COUNTER_DSS_ACTIVE_THREADS_011_HELP=The total number of threads currently servicing queries. COUNTER_DSS_QUERIES_011_NAME=Queries COUNTER_DSS_QUERIES_011_HELP=Cumulative number of queries posted to the server. COUNTER_DSS_QUERIES_PER_SEC_011_NAME=Query Rate COUNTER_DSS_QUERIES_PER_SEC_011_HELP=The number of queries posted to the server per second. COUNTER_DSS_FAILED_QUERIES_011_NAME=Failed Queries COUNTER_DSS_FAILED_QUERIES_011_HELP=The number of queries that have failed. COUNTER_DSS_FAILED_QUERIES_PER_SEC_011_NAME=Failed Query Rate COUNTER_DSS_FAILED_QUERIES_PER_SEC_011_HELP=The number of failed queries per second. COUNTER_DSS_RESULTS_011_NAME=Results COUNTER_DSS_RESULTS_011_HELP=The cumulative number of results returned to clients. COUNTER_DSS_RESULTS_PER_SEC_011_NAME=Result Rate COUNTER_DSS_RESULTS_PER_SEC_011_HELP=The number of results returned to the client per second. COUNTER_DSS_SUCCESS_QUERIES_011_NAME=Succeeded Queries COUNTER_DSS_SUCCESS_QUERIES_011_HELP=The number of queries that produce successful searches. COUNTER_DSS_SUCCESS_QUERIES_PER_SEC_011_NAME=Succeeded Query Rate COUNTER_DSS_SUCCESS_QUERIES_PER_SEC_011_HELP=The number of queries per second that produce successful searches. OBJECT_DATASOURCE_011_NAME=Microsoft Search Catalogs OBJECT_DATASOURCE_011_HELP=Represents a single catalog in the Microsoft Search service. COUNTER_DATASOURCE_QUERIES_011_NAME=Queries COUNTER_DATASOURCE_QUERIES_011_HELP=Cumulative number of queries posted to the catalog. COUNTER_DATASOURCE_QUERIES_PER_SEC_011_NAME=Queries Rate COUNTER_DATASOURCE_QUERIES_PER_SEC_011_HELP=The number of queries posted to the catalog per second. COUNTER_DATASOURCE_FAILED_QUERIES_011_NAME=Failed Queries COUNTER_DATASOURCE_FAILED_QUERIES_011_HELP=The number of queries that have failed. COUNTER_DATASOURCE_FAILED_QUERIES_PER_SEC_011_NAME=Failed Queries Rate COUNTER_DATASOURCE_FAILED_QUERIES_PER_SEC_011_HELP=The number of failed queries per second. COUNTER_DATASOURCE_RESULTS_011_NAME=Results COUNTER_DATASOURCE_RESULTS_011_HELP=The cumulative number of results returned to clients. COUNTER_DATASOURCE_RESULTS_PER_SEC_011_NAME=Results Rate COUNTER_DATASOURCE_RESULTS_PER_SEC_011_HELP=The number of results returned to the client per second. COUNTER_DATASOURCE_SUCCESS_QUERIES_011_NAME=Successful Queries COUNTER_DATASOURCE_SUCCESS_QUERIES_011_HELP=The number of queries that produce successful searches. COUNTER_DATASOURCE_SUCCESS_QUERIES_PER_SEC_011_NAME=Successful Queries Rate COUNTER_DATASOURCE_SUCCESS_QUERIES_PER_SEC_011_HELP=The number of queries per second that produce successful searches. COUNTER_INDEXER_PERSISTENT_INDEXES_011_NAME=Persistent Indexes COUNTER_INDEXER_PERSISTENT_INDEXES_011_HELP=The number of persistent indexes. COUNTER_INDEXER_INDEX_SIZE_011_NAME=Catalog Size (MBytes) COUNTER_INDEXER_INDEX_SIZE_011_HELP=Size of catalog data in megabytes. COUNTER_INDEXER_NUM_UNIQUE_KEY_011_NAME=Unique Keys COUNTER_INDEXER_NUM_UNIQUE_KEY_011_HELP=Number of unique words and properties in the catalog. COUNTER_INDEXER_NUM_DOCUMENTS_011_NAME=Number Of Documents COUNTER_INDEXER_NUM_DOCUMENTS_011_HELP=The total number of documents in the catalog. OBJECT_DSS_00A_NAME=Microsoft Search OBJECT_DSS_00A_HELP=Global counters in the Microsoft search service. COUNTER_DSS_CURRENT_CONNECTIONS_00A_NAME=Current Connections COUNTER_DSS_CURRENT_CONNECTIONS_00A_HELP=The number of currently established connections between the Search service and all clients. COUNTER_DSS_THREADS_00A_NAME=Threads COUNTER_DSS_THREADS_00A_HELP=The total number of threads avaliable for servicing queries. COUNTER_DSS_ACTIVE_THREADS_00A_NAME=Active Threads COUNTER_DSS_ACTIVE_THREADS_00A_HELP=The total number of threads currently servicing queries. COUNTER_DSS_QUERIES_00A_NAME=Queries COUNTER_DSS_QUERIES_00A_HELP=Cumulative number of queries posted to the server. COUNTER_DSS_QUERIES_PER_SEC_00A_NAME=Query Rate COUNTER_DSS_QUERIES_PER_SEC_00A_HELP=The number of queries posted to the server per second. COUNTER_DSS_FAILED_QUERIES_00A_NAME=Failed Queries COUNTER_DSS_FAILED_QUERIES_00A_HELP=The number of queries that have failed. COUNTER_DSS_FAILED_QUERIES_PER_SEC_00A_NAME=Failed Query Rate COUNTER_DSS_FAILED_QUERIES_PER_SEC_00A_HELP=The number of failed queries per second. COUNTER_DSS_RESULTS_00A_NAME=Results COUNTER_DSS_RESULTS_00A_HELP=The cumulative number of results returned to clients. COUNTER_DSS_RESULTS_PER_SEC_00A_NAME=Result Rate COUNTER_DSS_RESULTS_PER_SEC_00A_HELP=The number of results returned to the client per second. COUNTER_DSS_SUCCESS_QUERIES_00A_NAME=Succeeded Queries COUNTER_DSS_SUCCESS_QUERIES_00A_HELP=The number of queries that produce successful searches. COUNTER_DSS_SUCCESS_QUERIES_PER_SEC_00A_NAME=Succeeded Query Rate COUNTER_DSS_SUCCESS_QUERIES_PER_SEC_00A_HELP=The number of queries per second that produce successful searches. OBJECT_DATASOURCE_00A_NAME=Microsoft Search Catalogs OBJECT_DATASOURCE_00A_HELP=Represents a single catalog in the Microsoft Search service. COUNTER_DATASOURCE_QUERIES_00A_NAME=Queries COUNTER_DATASOURCE_QUERIES_00A_HELP=Cumulative number of queries posted to the catalog. COUNTER_DATASOURCE_QUERIES_PER_SEC_00A_NAME=Queries Rate COUNTER_DATASOURCE_QUERIES_PER_SEC_00A_HELP=The number of queries posted to the catalog per second. COUNTER_DATASOURCE_FAILED_QUERIES_00A_NAME=Failed Queries COUNTER_DATASOURCE_FAILED_QUERIES_00A_HELP=The number of queries that have failed. COUNTER_DATASOURCE_FAILED_QUERIES_PER_SEC_00A_NAME=Failed Queries Rate COUNTER_DATASOURCE_FAILED_QUERIES_PER_SEC_00A_HELP=The number of failed queries per second. COUNTER_DATASOURCE_RESULTS_00A_NAME=Results COUNTER_DATASOURCE_RESULTS_00A_HELP=The cumulative number of results returned to clients. COUNTER_DATASOURCE_RESULTS_PER_SEC_00A_NAME=Results Rate COUNTER_DATASOURCE_RESULTS_PER_SEC_00A_HELP=The number of results returned to the client per second. COUNTER_DATASOURCE_SUCCESS_QUERIES_00A_NAME=Successful Queries COUNTER_DATASOURCE_SUCCESS_QUERIES_00A_HELP=The number of queries that produce successful searches. COUNTER_DATASOURCE_SUCCESS_QUERIES_PER_SEC_00A_NAME=Successful Queries Rate COUNTER_DATASOURCE_SUCCESS_QUERIES_PER_SEC_00A_HELP=The number of queries per second that produce successful searches. COUNTER_INDEXER_PERSISTENT_INDEXES_00A_NAME=Persistent Indexes COUNTER_INDEXER_PERSISTENT_INDEXES_00A_HELP=The number of persistent indexes. COUNTER_INDEXER_INDEX_SIZE_00A_NAME=Catalog Size (MBytes) COUNTER_INDEXER_INDEX_SIZE_00A_HELP=Size of catalog data in megabytes. COUNTER_INDEXER_NUM_UNIQUE_KEY_00A_NAME=Unique Keys COUNTER_INDEXER_NUM_UNIQUE_KEY_00A_HELP=Number of unique words and properties in the catalog. COUNTER_INDEXER_NUM_DOCUMENTS_00A_NAME=Number Of Documents COUNTER_INDEXER_NUM_DOCUMENTS_00A_HELP=The total number of documents in the catalog. OBJECT_DSS_010_NAME=Microsoft Search OBJECT_DSS_010_HELP=Global counters in the Microsoft search service. COUNTER_DSS_CURRENT_CONNECTIONS_010_NAME=Current Connections COUNTER_DSS_CURRENT_CONNECTIONS_010_HELP=The number of currently established connections between the Search service and all clients. COUNTER_DSS_THREADS_010_NAME=Threads COUNTER_DSS_THREADS_010_HELP=The total number of threads avaliable for servicing queries. COUNTER_DSS_ACTIVE_THREADS_010_NAME=Active Threads COUNTER_DSS_ACTIVE_THREADS_010_HELP=The total number of threads currently servicing queries. COUNTER_DSS_QUERIES_010_NAME=Queries COUNTER_DSS_QUERIES_010_HELP=Cumulative number of queries posted to the server. COUNTER_DSS_QUERIES_PER_SEC_010_NAME=Query Rate COUNTER_DSS_QUERIES_PER_SEC_010_HELP=The number of queries posted to the server per second. COUNTER_DSS_FAILED_QUERIES_010_NAME=Failed Queries COUNTER_DSS_FAILED_QUERIES_010_HELP=The number of queries that have failed. COUNTER_DSS_FAILED_QUERIES_PER_SEC_010_NAME=Failed Query Rate COUNTER_DSS_FAILED_QUERIES_PER_SEC_010_HELP=The number of failed queries per second. COUNTER_DSS_RESULTS_010_NAME=Results COUNTER_DSS_RESULTS_010_HELP=The cumulative number of results returned to clients. COUNTER_DSS_RESULTS_PER_SEC_010_NAME=Result Rate COUNTER_DSS_RESULTS_PER_SEC_010_HELP=The number of results returned to the client per second. COUNTER_DSS_SUCCESS_QUERIES_010_NAME=Succeeded Queries COUNTER_DSS_SUCCESS_QUERIES_010_HELP=The number of queries that produce successful searches. COUNTER_DSS_SUCCESS_QUERIES_PER_SEC_010_NAME=Succeeded Query Rate COUNTER_DSS_SUCCESS_QUERIES_PER_SEC_010_HELP=The number of queries per second that produce successful searches. OBJECT_DATASOURCE_010_NAME=Microsoft Search Catalogs OBJECT_DATASOURCE_010_HELP=Represents a single catalog in the Microsoft Search service. COUNTER_DATASOURCE_QUERIES_010_NAME=Queries COUNTER_DATASOURCE_QUERIES_010_HELP=Cumulative number of queries posted to the catalog. COUNTER_DATASOURCE_QUERIES_PER_SEC_010_NAME=Queries Rate COUNTER_DATASOURCE_QUERIES_PER_SEC_010_HELP=The number of queries posted to the catalog per second. COUNTER_DATASOURCE_FAILED_QUERIES_010_NAME=Failed Queries COUNTER_DATASOURCE_FAILED_QUERIES_010_HELP=The number of queries that have failed. COUNTER_DATASOURCE_FAILED_QUERIES_PER_SEC_010_NAME=Failed Queries Ra