Source code of Windows XP (NT5)
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

84 lines
6.5 KiB

  1. ####################################################################
  2. #
  3. # Copyright (c) 1998-1999 Microsoft Corporation
  4. #
  5. # Module Name:
  6. #
  7. # REPCONN.int
  8. #
  9. # Abstract:
  10. #
  11. # This is the file read by the NTFRSCON.pl (perl script) to
  12. # generate the files,
  13. # 1. NTFRSCON.h 2. NTFRSCON.ini 3. REPCONN.h 4. REPCONN.c
  14. #
  15. # Author:
  16. #
  17. # Rohan Kumar [rohank] 10-Sept-1998
  18. # David Orbits [Davidor] 4-oct-1999 Added help message text.
  19. #
  20. # Environment:
  21. #
  22. # User Mode Service
  23. #
  24. # Description:
  25. #
  26. # 1. The comments in this file begin with a '#' character in column 1.
  27. # 2. Blank lines are ignored.
  28. # 3. The last line should be the string "EOF".
  29. # 4. All fields must be separated by a ":" character.
  30. #
  31. # 5. The "Flags" field values are defined in repconn.h.
  32. # 6. The "Field names" are derived from and MUST match the struct
  33. # def ReplicaConnCounters in inc\perrepsr.h.
  34. # They are used to build an offset table for init.
  35. # 7. The "Counter String Name" becomes the counter display name inserted
  36. # into ntfrscon.ini for perfmon consumption.
  37. # 8. The "counter type" code is perfmon defined.
  38. # The string prefix "PERF_COUNTER_" is dropped here.
  39. # 9. The "Help Message" string is the counter help string inserted into
  40. # ntfrscon.ini for perfmon consumption.
  41. #
  42. # 10. See the readme file in the same dir as this file for instructions on
  43. # how to add/remove a counter to this counter object.
  44. #
  45. # Revision History:
  46. #
  47. ####################################################################
  48. #
  49. # Flags Field Name Counter string name Counter Type help Message
  50. #
  51. 0 :PacketsSentBytes :Packets Sent in Bytes :BULK_COUNT :The total number of FRS data and control bytes sent to the partner associated with this connection.
  52. 0 :FetBSentBytes :Fetch Blocks Sent in Bytes :BULK_COUNT :The number of bytes of staging file data sent to the partner associated with this connection.
  53. 0 :FetBRcvdBytes :Fetch Blocks Received in Bytes :BULK_COUNT :The number of bytes of staging file data received from the partner associated with this connection.
  54. 0 :LCOSent :Local Change Orders Sent :COUNTER :The number of locally originated replication change orders that have been sent to the partner associated with this connection.
  55. 0 :LCOSentAtJoin :Local Change Orders Sent At Join :COUNTER :The number of locally originated replication change orders produced by a partner induced version vector scan that have been sent to the partner associated with this connection.
  56. 0 :RCOSent :Remote Change Orders Sent :COUNTER :The number of replication change orders originating upstream from this member (i.e. remote) that have been sent to the partner associated with this connection.
  57. 0 :RCOReceived :Remote Change Orders Received :COUNTER :The number of change orders received from the partner associated with this connection that have passed the inbound dampening check.
  58. 0 :InCODampned :Inbound Change Orders Dampened :COUNTER :The number of change orders received from the partner associated with this connection that have been filtered out by the inbound dampening check.
  59. 0 :OutCODampned :Outbound Change Orders Dampened :COUNTER :The number of change orders sent to the partner associated with this connection that have been filtered out by the outbound dampening check and thus were never sent.
  60. 0 :PacketsSent :Packets Sent :COUNTER :The total number of FRS data and control packets sent to the partner associated with this connection.
  61. 0 :PacketsSentError :Packets Sent in Error :RAWCOUNT :The cumulative number of FRS data or control packets not sent because of some error condition associated with this connection.
  62. 0 :CommTimeouts :Communication Timeouts :RAWCOUNT :The cumulative number of times a communication request has taken too long to the partner associated with this connection.
  63. 0 :FetRSent :Fetch Requests Sent :COUNTER :The number of staging files requested from the partner associated with this connection.
  64. 0 :FetRReceived :Fetch Requests Received :COUNTER :The number of staging files received from the partner associated with this connection.
  65. 0 :FetBSent :Fetch Blocks Sent :COUNTER :The number of blocks of staging file data sent to the partner associated with this connection. The underlying transport may break a block into a smaller number of packets on the wire.
  66. 0 :FetBRcvd :Fetch Blocks Received :COUNTER :The number of blocks of staging file data received from the partner associated with this connection. The underlying transport may break a block into a smaller number of packets on the wire.
  67. 0 :JoinNSent :Join Notifications Sent :COUNTER :The number of partner join requests (if this is an inbound connection) or ready-to-join notifications (if this is an outbound connection) sent to the partner associated with this connection.
  68. 0 :JoinNRcvd :Join Notifications Received :COUNTER :The number of partner join notifications received from the partner associated with this connection.
  69. 0 :Joins :Joins :COUNTER :The number of successful joins with the partner associated with this connection.
  70. 0 :Unjoins :Unjoins :COUNTER :The number of unjoins with the partner associated with this connection.
  71. 0 :Bindings :Bindings :COUNTER :The number of successful RPC bind requests to the FRS server on the partner associated with this connection.
  72. 0 :BindingsError :Bindings in Error :RAWCOUNT :The cumulative number of unsuccessful RPC bind requests to the FRS server on the partner associated with this connection.
  73. 0 :Authentications :Authentications :COUNTER :The number of successful authentication checks made on packets received from the partner associated with this connection.
  74. 0 :AuthenticationsError :Authentications in Error :RAWCOUNT :The cumulative number of authentication check failures detected on packets received from the partner associated with this connection.
  75. EOF