bosun.org@v0.0.0-20210513094433-e25bc3e69a1f/cmd/scollector/collectors/dns_windows.go (about) 1 package collectors 2 3 import ( 4 "time" 5 6 "bosun.org/metadata" 7 "bosun.org/opentsdb" 8 ) 9 10 func init() { 11 c_dns := &IntervalCollector{ 12 F: c_dns_windows, 13 Interval: time.Second * 30, //Depending on how busy your DNS servers are, 30 might encompass a lot of change, or barely any at all. Seems like a good compromise. 14 } 15 c_dns.init = wmiInitNamespace(c_dns, func() interface{} { return &[]MicrosoftDNS_Statistic{} }, "", &dnsQuery, rootDNS) 16 collectors = append(collectors, c_dns) 17 } 18 19 var ( 20 dnsQuery string //This will be created by wmiInitNamespace() by using reflection over the struct that's been passed 21 rootDNS = "root\\MicrosoftDNS" 22 ) 23 24 func c_dns_windows() (opentsdb.MultiDataPoint, error) { 25 var dst []MicrosoftDNS_Statistic //Data returned from WMI will be stored here 26 var md opentsdb.MultiDataPoint //Data to push out will be here 27 var dupes = make(map[string]MicrosoftDNS_Statistic) //We are going to push duplicate values that need to be summed here (for more details see comment block above getTagsFromDesc()) 28 err := queryWmiNamespace(dnsQuery, &dst, rootDNS) //Get the data. dnsQuery is populated by wmiInitNamespace() in the init function 29 if err != nil { 30 return nil, err 31 } 32 for _, v := range dst { //ForEach record in WMI dataset 33 34 if p, ok := DNSStatPropertyMap[v.Name]; ok { 35 if p.DoubleUp { //This is a stat that has multiple entries we need to collate it for later 36 if _, ok := dupes[p.Metric]; ok { //Key already exists, so we need to add to it 37 *dupes[p.Metric].Value += *v.Value 38 } else { //Key does not exist, so we need to create it 39 dupes[p.Metric] = v 40 } 41 } else { //Unique stat, we can put it straight away 42 if "" == p.Grouping { 43 Add(&md, "dns."+p.Category+"."+p.Metric, *v.Value, opentsdb.TagSet{}, p.RateType, metadata.Count, p.Description) 44 } else { 45 Add(&md, "dns."+p.Category+"."+p.Metric, *v.Value, opentsdb.TagSet{"type": p.Grouping}, p.RateType, metadata.Count, p.Description) 46 } 47 } 48 } 49 } 50 for _, v := range dupes { //ForEach record in our added up duplicates 51 if p, ok := DNSStatPropertyMap[v.Name]; ok { 52 if "" == p.Grouping { 53 Add(&md, "dns."+p.Category+"."+p.Metric, *v.Value, opentsdb.TagSet{}, p.RateType, metadata.Count, p.Description) 54 } else { 55 Add(&md, "dns."+p.Category+"."+p.Metric, *v.Value, opentsdb.TagSet{"type": p.Grouping}, p.RateType, metadata.Count, p.Description) 56 } 57 } 58 59 } 60 return md, nil 61 } 62 63 type DNSStatProperties struct { 64 Category string 65 Metric string 66 DoubleUp bool 67 Grouping string 68 RateType metadata.RateType 69 Description string 70 } 71 72 type MicrosoftDNS_Statistic struct { 73 CollectionId uint32 74 CollectionName string 75 DnsServerName string 76 Name string 77 //StringValue *string 78 Value *uint32 //The namespace documentation does not mention that this is a nullable field, but apparently it is. 79 } 80 81 /* 82 So what's the story here? WMI only returns a descriptive text for the counter, which is not particularly useful for Bosun. 83 The good news is that there is a mapping between the WMI description and the counters actual internal name (exposed 84 in the Get-DNSServerStatus powershell cmdlet. So an awfully long time was spent mapping the description to the actual 85 metric name and category. 86 87 There is also a problem where a bunch of the metrics have the same description. This is likely a bug in the namespace 88 where there is one counter for UDP and one counter for TCP. For these doubleups, "true" will be returned in the 89 third parameter, and these numbers will be summed together and submitted as a single counter. 90 91 The sheet I worked all this out on is here: https://docs.google.com/spreadsheets/d/17Smri2o6Y9EiCrdELRy8TtwTpU5xh_yEoo728XtOgX4/edit?usp=sharing 92 */ 93 var DNSStatPropertyMap = map[string]DNSStatProperties{ 94 "A queries": {"query", "queries", false, "typea", metadata.Counter, "The number of queries received by the DNS server. The 'Type' tag indicates the type of request that was received (A, MX, PTR, etc)."}, 95 "Active record nodes checked": {"timeout", "activerecord", false, "", metadata.Counter, "The number of times while performing checks the server encountered a cache node that had records present while checking nodes for deletion."}, 96 "Additional questions recursed": {"recursion", "additionalrecursed", false, "", metadata.Counter, "The number of recursions performed to return additional data or CNAME."}, 97 "ALL queries": {"query", "queries", false, "typeall", metadata.Counter, "The number of queries received by the DNS server. The 'Type' tag indicates the type of request that was received (A, MX, PTR, etc)."}, 98 "Allocation count": {"memory", "alloc", false, "", metadata.Gauge, "The cumulative number of times memory allocations have been performed for a given purpose."}, 99 "Answer responses": {"recursion", "responseanswer", false, "", metadata.Counter, "The number of responses received from other servers for recursive queries."}, 100 "Authoritative responses": {"recursion", "responseauthoritative", false, "", metadata.Counter, "The number of responses received from the server authoritative for the zone."}, 101 "AXFR in IXFR": {"query", "ixfraxfr", false, "", metadata.Counter, "The number of incremental zone transfer requests received by the server which required a full zone transfer."}, 102 "AXFR in IXFR requests": {"query", "requests", false, "ixfraxfrreq", metadata.Counter, "The number of requests that the DNS server has made to other DNS servers. For example, these could be recursive queries or zone transfers. The 'Type' tag indicates the sort of request that the DNS server has made."}, 103 "AXFR invalid responses": {"query", "axfrinvalid", false, "", metadata.Counter, "The number of full zone transfer invalid responses received by the server."}, 104 "AXFR queries": {"query", "queries", false, "typeaxfr", metadata.Counter, "The number of queries received by the DNS server. The 'Type' tag indicates the type of request that was received (A, MX, PTR, etc)."}, 105 "AXFR refused responses": {"query", "axfrrefused", false, "", metadata.Counter, "The number of full zone transfer rejection responses received by the server."}, 106 "AXFR requests": {"query", "requests", true, "axfrrequest", metadata.Counter, "The number of requests that the DNS server has made to other DNS servers. For example, these could be recursive queries or zone transfers. The 'Type' tag indicates the sort of request that the DNS server has made."}, 107 "AXFR responses": {"query", "axfrresponse", false, "", metadata.Counter, "The number of full zone transfer responses received by the server."}, 108 "AXFR success responses": {"query", "afxrsuccessresponse", false, "", metadata.Counter, "The number of incremental zone transfer requests received by the server which required a full zone transfer."}, 109 "AXFR successes": {"query", "axfrsuccess", false, "", metadata.Counter, "The number of full zone transfers successfully completed by the server."}, 110 "AxfrLimit refused": {"query", "axfrlimit", false, "", metadata.Counter, "The number of full zone transfer requests rejected due to time restrictions between successive full zone transfers."}, 111 "Bad packet responses": {"recursion", "responsebadpacket", false, "", metadata.Counter, "The number of bad response packets received."}, 112 "Bad time TKEYs": {"security", "securitytkeybadtime", false, "", metadata.Counter, "The number of secure DNS update messages that had TKEY with a skewed time stamp."}, 113 "BadKey": {"error", "errors", false, "badkey", metadata.Counter, "The number of errors that the DNS server has processed. The 'Type' metric is the type of error that the DNS server has processed."}, 114 "BadKey TSIGs": {"security", "securitytsigbadkey", false, "", metadata.Counter, "The number of TSIG records received for which the cached security context could not be found."}, 115 "BadSig": {"error", "errors", false, "badsig", metadata.Counter, "The number of errors that the DNS server has processed. The 'Type' metric is the type of error that the DNS server has processed."}, 116 "BadTime": {"error", "errors", false, "badtime", metadata.Counter, "The number of errors that the DNS server has processed. The 'Type' metric is the type of error that the DNS server has processed."}, 117 "Cache update failures": {"recursion", "cacheupdatefailure", false, "", metadata.Counter, "The number of times the server received failure for self-generated cache update recursion queries to remote servers."}, 118 "Cache update queries allocated": {"recursion", "cacheupdatealloc", false, "", metadata.Counter, "The number of times the server allocated a query to be sent to update a cache entry."}, 119 "Cache update queries for root NS": {"recursion", "rootnsquery", false, "", metadata.Counter, "The number of times the server sent a query for a root name server."}, 120 "Cache update queries freed": {"recursion", "cacheupdatefree", false, "", metadata.Counter, "The number of times the server released a query request or response packet sent to update a cache entry."}, 121 "Cache update queries resumed": {"recursion", "resumesuspendedquery", false, "", metadata.Counter, "The number of times the server resumed a suspended query that was needed to update cache entry information."}, 122 "Cache update queries suspended": {"recursion", "suspendedquery", false, "", metadata.Counter, "The number of times the server suspended sending a query needed to update cache entry information."}, 123 "Cache update query responses": {"recursion", "cacheupdateresponse", false, "", metadata.Counter, "The number of times the server received responses for a query sent to update a cache entry."}, 124 "Cache update query retries": {"recursion", "cacheupdateretry", false, "", metadata.Counter, "The number of times the server reattempted a query to update cache entry information."}, 125 "Cache update responses for root NS": {"recursion", "rootnsresponse", false, "", metadata.Counter, "The number of times the server processed a response from one of its root servers."}, 126 "Cached records timed out": {"record", "cachetimeouts", false, "", metadata.Counter, "The cumulative number of resource records that have been freed from the DNS server's cache."}, 127 "Can not delete nodes checked": {"timeout", "cannotdelete", false, "", metadata.Counter, "The number of times the server encountered a cache node that was marked for deletion that could not be deleted because it had been recently accessed or because it had active records or child nodes."}, 128 "Checks where cache exceeded limit": {"cache", "exceededlimit", false, "", metadata.Counter, "Not used. Senders MUST set this value to zero and receivers MUST ignore it."}, 129 "Continue current lookup responses": {"recursion", "continuecurrentlookup", false, "", metadata.Counter, "The number of times the server received a response from a remote DNS server while processing a client query and restarted recursion."}, 130 "Continue current recursion responses": {"recursion", "continuecurrentrecursion", false, "", metadata.Counter, "The number of additional remote queries generated by the DNS server during normal query processing."}, 131 "Continue next lookup responses": {"recursion", "continuenextlookup", false, "", metadata.Counter, "The number of times the server started a lookup with the next query."}, 132 "Database nodes in use": {"database", "nodeinuse", false, "", metadata.Gauge, "The number of nodes currently allocated for use in the record database."}, 133 "Database nodes memory": {"database", "nodememory", false, "", metadata.Gauge, "The total size in bytes of server memory currently used for nodes."}, 134 "Database nodes returned": {"database", "nodereturn", false, "", metadata.Gauge, "The cumulative number of nodes freed from the record database."}, 135 "Database nodes used": {"database", "nodeused", false, "", metadata.Gauge, "The cumulative number of nodes allocated for use in the record database."}, 136 "Delayed frees executed": {"timeout", "delayedfreesexecuted", false, "", metadata.Counter, "The number of times the server released a block of memory that had previously been entered into an internal list of memory blocks that can be freed in the future."}, 137 "Delayed frees executed with function": {"timeout", "delayedfreesexecutedwithfunction", false, "", metadata.Counter, "The number of times the server released a block of memory that had previously been entered into an internal list of memory blocks that can be freed in the future where a function other than the standard memory free function was used for release."}, 138 "Delayed frees queued": {"timeout", "delayedfreesqueued", false, "", metadata.Counter, "The number of times the server entered a block of memory into an internal list of memory blocks that can be freed in the future."}, 139 "Delayed frees queued with function": {"timeout", "delayedfreesqueuedwithfunction", false, "", metadata.Counter, "The number of times the server entered a block of memory into an internal list of memory blocks that can be freed in the future where the block is freed using a function other than the standard memory free function."}, 140 "Delegation responses": {"recursion", "responsedelegation", false, "", metadata.Counter, "The number of delegation responses received by the server."}, 141 "Deleted nodes checked": {"timeout", "deleted", false, "", metadata.Counter, "The number of times the server successfully deleted a cache node that was marked as eligible for deletion."}, 142 "DnsLib blocks allocated": {"memory", "dnslib", false, "dnslibblocksallocated", metadata.Gauge, "Memory statistics for DnsLib."}, 143 "DnsLib blocks freed": {"memory", "dnslib", false, "dnslibblocksfreed", metadata.Gauge, "Memory statistics for DnsLib."}, 144 "DnsLib blocks in use": {"memory", "dnslib", false, "dnslibblocksinuse", metadata.Gauge, "Memory statistics for DnsLib."}, 145 "DnsLib memory": {"memory", "dnslib", false, "dnslibmemory", metadata.Gauge, "Memory statistics for DnsLib."}, 146 "DS DN blocks allocated": {"domainservices", "dnblocksallocated", false, "", metadata.Counter, "The number of full zone transfers successfully completed by the server."}, 147 "DS DN blocks freed": {"domainservices", "dnblocksfreed", false, "", metadata.Gauge, "The number of blocks freed from Directory Services Distinguished Names."}, 148 "DS DN blocks in use": {"domainservices", "dnblocksinuse", false, "", metadata.Gauge, "The number of blocks in use for Directory Services Distinguished Names."}, 149 "DS DN memory": {"domainservices", "dnmemory", false, "", metadata.Gauge, "The amount of memory allocated to Directory Services Distinguished Names."}, 150 "DS Mod blocks allocated": {"domainservices", "modblocksallocated", false, "", metadata.Gauge, "The number of blocks in use for Directory Services Module."}, 151 "DS Mod blocks freed": {"domainservices", "modblocksfreed", false, "", metadata.Gauge, "The number of blocks freed from Directory Services Mod Module."}, 152 "DS Mod blocks in use": {"domainservices", "modblocksinuse", false, "", metadata.Gauge, "The number of blocks in use for Directory Services Mod Module."}, 153 "DS Mod memory": {"domainservices", "modmemory", false, "", metadata.Gauge, "The amount of memory allocated to Directory Services Mod Module."}, 154 "DS Other blocks allocated": {"domainservices", "otherblocksallocated", false, "", metadata.Gauge, "The number of blocks in use for Other directory server related operations."}, 155 "DS Other blocks freed": {"domainservices", "otherblocksfreed", false, "", metadata.Gauge, "The number of blocks freed from Other directory server related operations."}, 156 "DS Other blocks in use": {"domainservices", "otherblocksinuse", false, "", metadata.Gauge, "The number of blocks in use for Other directory server related operations."}, 157 "DS Other memory": {"domainservices", "othermemory", false, "", metadata.Gauge, "The amount of memory allocated to Directory Services Other."}, 158 "DS Record blocks allocated": {"domainservices", "recordblocksallocated", false, "", metadata.Gauge, "The number of blocks in use for Directory Services Records."}, 159 "DS Record blocks freed": {"domainservices", "recordblocksfreed", false, "", metadata.Gauge, "The number of blocks freed from Directory Services Records."}, 160 "DS Record blocks in use": {"domainservices", "recordblocksinuse", false, "", metadata.Gauge, "The number of blocks in use for Directory Services Records."}, 161 "DS Record memory": {"domainservices", "recordmemory", false, "", metadata.Gauge, "The amount of memory allocated to Directory Services Records."}, 162 "Echo TSIGs": {"security", "securitytsigecho", false, "", metadata.Counter, "The number of echo TSIG records received by the server indicating that the remote server is not security aware. [RFC2845]"}, 163 "Empty responses": {"recursion", "responseempty", false, "", metadata.Counter, "The number of empty responses received from other servers."}, 164 "EventControl blocks allocated": {"memory", "eventcontrol", false, "eventcontrolblocksallocated", metadata.Gauge, "Memory statistics for Event Control."}, 165 "EventControl blocks freed": {"memory", "eventcontrol", false, "eventcontrolblocksfreed", metadata.Gauge, "Memory statistics for Event Control."}, 166 "EventControl blocks in use": {"memory", "eventcontrol", false, "eventcontrolblocksinuse", metadata.Gauge, "Memory statistics for Event Control."}, 167 "EventControl memory": {"memory", "eventcontrol", false, "eventcontrolmemory", metadata.Gauge, "Memory statistics for Event Control."}, 168 "Failed adds": {"domainservices", "failedldapadd", false, "", metadata.Counter, "The number of times the server failed to add entries to the directory server."}, 169 "Failed cache enforcement passes": {"cache", "failedfreepasses", false, "", metadata.Counter, "The number of times since the server last started that the server cache was found to exceed the cache size limit which is 90 percent of the MaxCacheSize (section 3.1.1.1.1) and that an attempt to free nodes was unsuccessful in meeting the cache size limit. After reaching 0xFFFFFFFF the value increments to 0x00000000."}, 170 "Failed deletions": {"domainservices", "faileddeletedsentries", false, "", metadata.Counter, "The number of times the server failed to delete entries from the directory server."}, 171 "Failed modifies": {"domainservices", "failedldapmodify", false, "", metadata.Counter, "The number of times the server failed to modify records in the directory server."}, 172 "Failed reads": {"domainservices", "failedreadrecords", false, "", metadata.Counter, "The number of times the server failed to read records from the directory server."}, 173 "File Buffer blocks allocated": {"memory", "filebuffer", false, "filebufferblocksallocated", metadata.Gauge, "Memory statistics for File Buffers."}, 174 "File Buffer blocks freed": {"memory", "filebuffer", false, "filebufferblocksfreed", metadata.Gauge, "Memory statistics for File Buffers."}, 175 "File Buffer blocks in use": {"memory", "filebuffer", false, "filebufferblocksinuse", metadata.Gauge, "Memory statistics for File Buffers."}, 176 "File Buffer memory": {"memory", "filebuffer", false, "filebuffermemory", metadata.Gauge, "Memory statistics for File Buffers."}, 177 "Final queued timeouts": {"recursion", "finaltimeoutqueued", false, "", metadata.Counter, "The number of recursive queries enlisted to wait for final time-out before they expire."}, 178 "Final timeouts expired": {"recursion", "finaltimeoutexpired", false, "", metadata.Counter, "The number of recursive queries expired without the server receiving any response."}, 179 "FormErr TSIGs": {"security", "securitytsigformerror", false, "", metadata.Counter, "The number of TSIG records from which signature extraction failed."}, 180 "FormError": {"error", "errors", false, "formerror", metadata.Counter, "The number of errors that the DNS server has processed. The 'Type' metric is the type of error that the DNS server has processed."}, 181 "FormErrors": {"query", "formerror", false, "", metadata.Counter, "The number of invalid format error responses returned by the server."}, 182 "Forwarded responses": {"query", "forwardedresponses", false, "", metadata.Counter, "The number of response packets received for the update requests that were forwarded to other servers."}, 183 "Forwarded updates in queue": {"update", "forwardinqueue", true, "", metadata.Counter, "The number of update packets forwarded to other servers and which are waiting for a response."}, 184 "Free count": {"memory", "free", false, "", metadata.Gauge, "The cumulative number of times memory has been released for a given purpose."}, 185 "Into authority failures": {"error", "errors", false, "intoauthorityfailures", metadata.Counter, "The number of errors that the DNS server has processed. The 'Type' metric is the type of error that the DNS server has processed."}, 186 "Invalid TKEYs": {"security", "securitytkeyinvalid", false, "", metadata.Counter, "The number of secure DNS update messages from which TKEY was successfully retrieved."}, 187 "IXFR queries": {"query", "queries", false, "typeixfr", metadata.Counter, "The number of queries received by the DNS server. The 'Type' tag indicates the type of request that was received (A, MX, PTR, etc)."}, 188 "IXFR requests": {"query", "requests", false, "ixfrrequest", metadata.Counter, "The number of requests that the DNS server has made to other DNS servers. For example, these could be recursive queries or zone transfers. The 'Type' tag indicates the sort of request that the DNS server has made."}, 189 "IXFR successes": {"query", "ixfrsuccesses", false, "", metadata.Counter, "The number of secure DNS update messages from which TKEY was successfully retrieved."}, 190 "IXFR TCP AXFR responses": {"query", "ixfrtcpaxfr", false, "", metadata.Counter, "The number of incremental zone transfer responses received by the server over TCP indicating that full zone transfer is needed."}, 191 "IXFR TCP force AXFR": {"query", "ixfrtcpforceaxfr", false, "", metadata.Counter, "The number of IXFR TCP requests that have forced AFXR."}, 192 "IXFR TCP FormError responses": {"query", "ixfrtcpformerror", false, "", metadata.Counter, "The number of incremental zone transfer responses received by the server over TCP where either the primary DNS server does not support incremental zone transfer or the primary DNS server indicated that the zone transfer request was malformed."}, 193 "IXFR TCP invalid responses": {"query", "ixfrtcpinvalid", false, "", metadata.Counter, "The number of incremental zone transfer invalid responses received by the server over TCP."}, 194 "IXFR TCP refused responses": {"query", "ixfrtcprefused", false, "", metadata.Counter, "The number of incremental zone transfer rejection responses received by the server over TCP."}, 195 "IXFR TCP requests": {"query", "requests", true, "ixfrtcprequest", metadata.Counter, "The number of requests that the DNS server has made to other DNS servers. For example, these could be recursive queries or zone transfers. The 'Type' tag indicates the sort of request that the DNS server has made."}, 196 "IXFR TCP responses": {"query", "ixfrtcpresponse", false, "", metadata.Counter, "The number of incremental zone transfer success responses received by the server over TCP."}, 197 "IXFR TCP success responses": {"query", "ixfrtcpsuccessresponses", false, "", metadata.Counter, "The number of success responses for incremental zone transfer sent by the server."}, 198 "IXFR TCP successes": {"query", "ixfrtcpsuccess", false, "", metadata.Counter, "The number of success responses for incremental zone transfers sent by the server over TCP."}, 199 "IXFR UDP force AXFR": {"query", "ixfrudpforceaxfr", false, "", metadata.Counter, "The number of incremental zone transfer requests received by the server over UDP for which the server responded with a full zone transfer."}, 200 "IXFR UDP force TCP": {"query", "ixfrudpforcetcp", false, "", metadata.Counter, "The number of incremental zone transfer requests received by the server over UDP for which the server responded using TCP."}, 201 "IXFR UDP FormError responses": {"query", "ixfrudpformerror", false, "", metadata.Counter, "The number of incremental zone transfer responses received by the server over UDP where either the master does not support incremental zone transfer or the master indicated that the zone transfer request was malformed."}, 202 "IXFR UDP invalid responses": {"query", "ixfrudpinvalid", false, "", metadata.Counter, "The number of incremental zone transfer invalid responses received by the server over UDP."}, 203 "IXFR UDP new primary responses": {"query", "ixfrudpnewprimary", false, "", metadata.Counter, "The number of incremental zone transfer responses received by the server over UDP where the SOA indicates a new primary server name."}, 204 "IXFR UDP refused responses": {"query", "ixfrudprefused", false, "", metadata.Counter, "The number of incremental zone transfer rejection responses received by the server over UDP."}, 205 "IXFR UDP requests": {"query", "requests", true, "ixfrudprequest", metadata.Counter, "The number of requests that the DNS server has made to other DNS servers. For example, these could be recursive queries or zone transfers. The 'Type' tag indicates the sort of request that the DNS server has made."}, 206 "IXFR UDP responses": {"query", "ixfrudpresponse", false, "", metadata.Counter, "The number of incremental zone transfer success responses received by the server over UDP."}, 207 "IXFR UDP success responses": {"query", "ixfrudpsuccessresponses", false, "", metadata.Counter, "The number of incremental zone transfer success responses received by the server over UDP."}, 208 "IXFR UDP successes": {"query", "ixfrudpsuccess", false, "", metadata.Counter, "The number of success responses for incremental zone transfers sent by the server over UDP."}, 209 "IXFR UDP UseAxfr responses": {"query", "ixfrudpuseaxfr", false, "", metadata.Counter, "The number of incremental zone transfer responses received by the server over UDP indicating that full zone transfer is needed."}, 210 "IXFR UDP UseTcp responses": {"query", "ixfrudpusetcp", false, "", metadata.Counter, "The number of incremental zone transfer responses received by the server over UDP indicating that TCP is needed."}, 211 "IXFR UDP wrong server responses": {"query", "ixfrudpwrongserver", false, "", metadata.Counter, "The number of incremental zone transfer responses received by the server over UDP where the remote sender is not among the masters for this zone."}, 212 "LDAP average write time": {"domainservices", "ldapwriteaverage", false, "", metadata.Counter, "The average time in milliseconds for all server performed timed LDAP write operations since the server was last restarted."}, 213 "LDAP reconnects": {"domainservices", "ldapreconnects", false, "", metadata.Counter, "The number of times the server attempted to reconnect to the directory server. This field MUST be present if and only if PollingPassesWithDsErrors is present. A client can tell whether the field is present based on the size of the buffer holding this structure."}, 214 "LDAP timed writes": {"domainservices", "ldaptimedwrites", false, "", metadata.Counter, "The number of times the server performed a timed LDAP write operation."}, 215 "LDAP total write time": {"domainservices", "ldapwritetimetotal", false, "", metadata.Counter, "The cumulative time in milliseconds consumed by server-performed timed LDAP write operations."}, 216 "LDAP writes < 10 ms": {"domainservices", "writespeed", false, "ldapwritesunder10ms", metadata.Counter, "The speed at which the DNS server was able to write to the LDAP Directory Server. The 'type' tag indicates the number of writes that were undertaken in each time bracket (the time is in milliseconds)."}, 217 "LDAP writes < 100 ms": {"domainservices", "writespeed", false, "ldapwritesunder100ms", metadata.Counter, "The speed at which the DNS server was able to write to the LDAP Directory Server. The 'type' tag indicates the number of writes that were undertaken in each time bracket (the time is in milliseconds)."}, 218 "LDAP writes < 1 s": {"domainservices", "writespeed", false, "ldapwritesunder1s", metadata.Counter, "The speed at which the DNS server was able to write to the LDAP Directory Server. The 'type' tag indicates the number of writes that were undertaken in each time bracket (the time is in milliseconds)."}, 219 "LDAP writes < 10 s": {"domainservices", "writespeed", false, "ldapwritesunder10s", metadata.Counter, "The speed at which the DNS server was able to write to the LDAP Directory Server. The 'type' tag indicates the number of writes that were undertaken in each time bracket (the time is in milliseconds)."}, 220 "LDAP writes < 100 s": {"domainservices", "writespeed", false, "ldapwritesunder100s", metadata.Counter, "The speed at which the DNS server was able to write to the LDAP Directory Server. The 'type' tag indicates the number of writes that were undertaken in each time bracket (the time is in milliseconds)."}, 221 "LDAP writes > 100 s": {"domainservices", "writespeed", false, "ldapwritesover100s", metadata.Counter, "The speed at which the DNS server was able to write to the LDAP Directory Server. The 'type' tag indicates the number of writes that were undertaken in each time bracket (the time is in milliseconds)."}, 222 "LDAP writes for A type": {"domainservices", "writetypes", false, "writesforatype", metadata.Counter, "The number of LDAP Directory Services updates that the DNS server has received. The 'Type' tag indicates the type of request that was received (e.g. A, MX, PTR, etc)"}, 223 "LDAP writes for A6 type": {"domainservices", "writetypes", false, "writesfora6type", metadata.Counter, "The number of LDAP Directory Services updates that the DNS server has received. The 'Type' tag indicates the type of request that was received (e.g. A, MX, PTR, etc)"}, 224 "LDAP writes for AAAA type": {"domainservices", "writetypes", false, "writesforaaaatype", metadata.Counter, "The number of LDAP Directory Services updates that the DNS server has received. The 'Type' tag indicates the type of request that was received (e.g. A, MX, PTR, etc)"}, 225 "LDAP writes for AFSDB type": {"domainservices", "writetypes", false, "writesforafsdbtype", metadata.Counter, "The number of LDAP Directory Services updates that the DNS server has received. The 'Type' tag indicates the type of request that was received (e.g. A, MX, PTR, etc)"}, 226 "LDAP writes for ATMA type": {"domainservices", "writetypes", false, "writesforatmatype", metadata.Counter, "The number of LDAP Directory Services updates that the DNS server has received. The 'Type' tag indicates the type of request that was received (e.g. A, MX, PTR, etc)"}, 227 "LDAP writes for CERT type": {"domainservices", "writetypes", false, "writesforcerttype", metadata.Counter, "The number of LDAP Directory Services updates that the DNS server has received. The 'Type' tag indicates the type of request that was received (e.g. A, MX, PTR, etc)"}, 228 "LDAP writes for CNAME type": {"domainservices", "writetypes", false, "writesforcnametype", metadata.Counter, "The number of LDAP Directory Services updates that the DNS server has received. The 'Type' tag indicates the type of request that was received (e.g. A, MX, PTR, etc)"}, 229 "LDAP writes for EID type": {"domainservices", "writetypes", false, "writesforeidtype", metadata.Counter, "The number of LDAP Directory Services updates that the DNS server has received. The 'Type' tag indicates the type of request that was received (e.g. A, MX, PTR, etc)"}, 230 "LDAP writes for GPOS type": {"domainservices", "writetypes", false, "writesforgpostype", metadata.Counter, "The number of LDAP Directory Services updates that the DNS server has received. The 'Type' tag indicates the type of request that was received (e.g. A, MX, PTR, etc)"}, 231 "LDAP writes for HINFO type": {"domainservices", "writetypes", false, "writesforhinfotype", metadata.Counter, "The number of LDAP Directory Services updates that the DNS server has received. The 'Type' tag indicates the type of request that was received (e.g. A, MX, PTR, etc)"}, 232 "LDAP writes for ISDN type": {"domainservices", "writetypes", false, "writesforisdntype", metadata.Counter, "The number of LDAP Directory Services updates that the DNS server has received. The 'Type' tag indicates the type of request that was received (e.g. A, MX, PTR, etc)"}, 233 "LDAP writes for KEY type": {"domainservices", "writetypes", false, "writesforkeytype", metadata.Counter, "The number of LDAP Directory Services updates that the DNS server has received. The 'Type' tag indicates the type of request that was received (e.g. A, MX, PTR, etc)"}, 234 "LDAP writes for KX type": {"domainservices", "writetypes", false, "writesforkxtype", metadata.Counter, "The number of LDAP Directory Services updates that the DNS server has received. The 'Type' tag indicates the type of request that was received (e.g. A, MX, PTR, etc)"}, 235 "LDAP writes for LOC type": {"domainservices", "writetypes", false, "writesforloctype", metadata.Counter, "The number of LDAP Directory Services updates that the DNS server has received. The 'Type' tag indicates the type of request that was received (e.g. A, MX, PTR, etc)"}, 236 "LDAP writes for MB type": {"domainservices", "writetypes", false, "writesformbtype", metadata.Counter, "The number of LDAP Directory Services updates that the DNS server has received. The 'Type' tag indicates the type of request that was received (e.g. A, MX, PTR, etc)"}, 237 "LDAP writes for MG type": {"domainservices", "writetypes", false, "writesformgtype", metadata.Counter, "The number of LDAP Directory Services updates that the DNS server has received. The 'Type' tag indicates the type of request that was received (e.g. A, MX, PTR, etc)"}, 238 "LDAP writes for MINFO type": {"domainservices", "writetypes", false, "writesforminfotype", metadata.Counter, "The number of LDAP Directory Services updates that the DNS server has received. The 'Type' tag indicates the type of request that was received (e.g. A, MX, PTR, etc)"}, 239 "LDAP writes for mixed type": {"domainservices", "writetypes", false, "writesformixedtype", metadata.Counter, "The number of LDAP Directory Services updates that the DNS server has received. The 'Type' tag indicates the type of request that was received (e.g. A, MX, PTR, etc)"}, 240 "LDAP writes for MR type": {"domainservices", "writetypes", false, "writesformrtype", metadata.Counter, "The number of LDAP Directory Services updates that the DNS server has received. The 'Type' tag indicates the type of request that was received (e.g. A, MX, PTR, etc)"}, 241 "LDAP writes for MX type": {"domainservices", "writetypes", false, "writesformxtype", metadata.Counter, "The number of LDAP Directory Services updates that the DNS server has received. The 'Type' tag indicates the type of request that was received (e.g. A, MX, PTR, etc)"}, 242 "LDAP writes for NAPTR type": {"domainservices", "writetypes", false, "writesfornaptrtype", metadata.Counter, "The number of LDAP Directory Services updates that the DNS server has received. The 'Type' tag indicates the type of request that was received (e.g. A, MX, PTR, etc)"}, 243 "LDAP writes for NIMLOC type": {"domainservices", "writetypes", false, "writesfornimloctype", metadata.Counter, "The number of LDAP Directory Services updates that the DNS server has received. The 'Type' tag indicates the type of request that was received (e.g. A, MX, PTR, etc)"}, 244 "LDAP writes for NS type": {"domainservices", "writetypes", false, "writesfornstype", metadata.Counter, "The number of LDAP Directory Services updates that the DNS server has received. The 'Type' tag indicates the type of request that was received (e.g. A, MX, PTR, etc)"}, 245 "LDAP writes for NSAP type": {"domainservices", "writetypes", false, "writesfornsaptype", metadata.Counter, "The number of LDAP Directory Services updates that the DNS server has received. The 'Type' tag indicates the type of request that was received (e.g. A, MX, PTR, etc)"}, 246 "LDAP writes for NSAPPTR type": {"domainservices", "writetypes", false, "writesfornsapptrtype", metadata.Counter, "The number of LDAP Directory Services updates that the DNS server has received. The 'Type' tag indicates the type of request that was received (e.g. A, MX, PTR, etc)"}, 247 "LDAP writes for NULL type": {"domainservices", "writetypes", false, "writesfornulltype", metadata.Counter, "The number of LDAP Directory Services updates that the DNS server has received. The 'Type' tag indicates the type of request that was received (e.g. A, MX, PTR, etc)"}, 248 "LDAP writes for NXT type": {"domainservices", "writetypes", false, "writesfornxttype", metadata.Counter, "The number of LDAP Directory Services updates that the DNS server has received. The 'Type' tag indicates the type of request that was received (e.g. A, MX, PTR, etc)"}, 249 "LDAP writes for PTR type": {"domainservices", "writetypes", false, "writesforptrtype", metadata.Counter, "The number of LDAP Directory Services updates that the DNS server has received. The 'Type' tag indicates the type of request that was received (e.g. A, MX, PTR, etc)"}, 250 "LDAP writes for PX type": {"domainservices", "writetypes", false, "writesforpxtype", metadata.Counter, "The number of LDAP Directory Services updates that the DNS server has received. The 'Type' tag indicates the type of request that was received (e.g. A, MX, PTR, etc)"}, 251 "LDAP writes for RP type": {"domainservices", "writetypes", false, "writesforrptype", metadata.Counter, "The number of LDAP Directory Services updates that the DNS server has received. The 'Type' tag indicates the type of request that was received (e.g. A, MX, PTR, etc)"}, 252 "LDAP writes for RT type": {"domainservices", "writetypes", false, "writesforrttype", metadata.Counter, "The number of LDAP Directory Services updates that the DNS server has received. The 'Type' tag indicates the type of request that was received (e.g. A, MX, PTR, etc)"}, 253 "LDAP writes for SIG type": {"domainservices", "writetypes", false, "writesforsigtype", metadata.Counter, "The number of LDAP Directory Services updates that the DNS server has received. The 'Type' tag indicates the type of request that was received (e.g. A, MX, PTR, etc)"}, 254 "LDAP writes for SOA type": {"domainservices", "writetypes", false, "writesforsoatype", metadata.Counter, "The number of LDAP Directory Services updates that the DNS server has received. The 'Type' tag indicates the type of request that was received (e.g. A, MX, PTR, etc)"}, 255 "LDAP writes for SRV type": {"domainservices", "writetypes", false, "writesforsrvtype", metadata.Counter, "The number of LDAP Directory Services updates that the DNS server has received. The 'Type' tag indicates the type of request that was received (e.g. A, MX, PTR, etc)"}, 256 "LDAP writes for TXT type": {"domainservices", "writetypes", false, "writesfortxttype", metadata.Counter, "The number of LDAP Directory Services updates that the DNS server has received. The 'Type' tag indicates the type of request that was received (e.g. A, MX, PTR, etc)"}, 257 "LDAP writes for unknown type": {"domainservices", "writetypes", false, "writesforunknowntype", metadata.Counter, "The number of LDAP Directory Services updates that the DNS server has received. The 'Type' tag indicates the type of request that was received (e.g. A, MX, PTR, etc)"}, 258 "LDAP writes for WKS type": {"domainservices", "writetypes", false, "writesforwkstype", metadata.Counter, "The number of LDAP Directory Services updates that the DNS server has received. The 'Type' tag indicates the type of request that was received (e.g. A, MX, PTR, etc)"}, 259 "LDAP writes for X25 type": {"domainservices", "writetypes", false, "writesforx25type", metadata.Counter, "The number of LDAP Directory Services updates that the DNS server has received. The 'Type' tag indicates the type of request that was received (e.g. A, MX, PTR, etc)"}, 260 "LDAP writes for ZERO type": {"domainservices", "writetypes", false, "writesforzerotype", metadata.Counter, "The number of LDAP Directory Services updates that the DNS server has received. The 'Type' tag indicates the type of request that was received (e.g. A, MX, PTR, etc)"}, 261 "LDAP writes max timeout": {"domainservices", "writetypes", false, "writesmaxtimeout", metadata.Counter, "The number of LDAP Directory Services updates that the DNS server has received. The 'Type' tag indicates the type of request that was received (e.g. A, MX, PTR, etc)"}, 262 "Max": {"error", "errors", false, "max", metadata.Counter, "The number of errors that the DNS server has processed. The 'Type' metric is the type of error that the DNS server has processed."}, 263 "MX queries": {"query", "queries", false, "typemx", metadata.Counter, "The number of queries received by the DNS server. The 'Type' tag indicates the type of request that was received (A, MX, PTR, etc)."}, 264 "Name blocks allocated": {"memory", "name", false, "nameblocksallocated", metadata.Gauge, "Memory statistics for Name-related operations."}, 265 "Name blocks freed": {"memory", "name", false, "nameblocksfreed", metadata.Gauge, "Memory statistics for Name-related operations."}, 266 "Name blocks in use": {"memory", "name", false, "nameblocksinuse", metadata.Gauge, "Memory statistics for Name-related operations."}, 267 "Name error responses": {"recursion", "responsenameerror", false, "", metadata.Counter, "The number of name errors received by the server."}, 268 "Name memory": {"memory", "name", false, "namememory", metadata.Gauge, "Memory statistics for Name-related operations."}, 269 "NameErrors": {"query", "nameerror", false, "", metadata.Counter, "The number of name error responses returned by the server."}, 270 "Nbstat blocks allocated": {"netbios", "nbstatallocated", false, "", metadata.Counter, "The number of NetBIOS blocks that are currently allocated by the server."}, 271 "Nbstat blocks freed": {"netbios", "nbstatfree", false, "", metadata.Counter, "The cumulative number of NetBIOS packet buffers returned by the server to system memory."}, 272 "Nbstat blocks in use": {"netbios", "nbstatused", false, "", metadata.Counter, "The cumulative number of NetBIOS buffers currently in use by the server either servicing queries or in a free list."}, 273 "Nbstat buffers in use": {"netbios", "nbstatinuse", false, "", metadata.Counter, "The number of NetBIOS buffers currently being used by the server to service queries or being held in a free list."}, 274 "Nbstat buffers on free list": {"netbios", "nbstatinfreelist", false, "", metadata.Counter, "The number of NetBIOS buffers currently in a free list."}, 275 "Nbstat buffers returned": {"netbios", "nbstatreturn", false, "", metadata.Counter, "The cumulative number of NetBIOS buffers freed or returned by the server to a free list."}, 276 "Nbstat memory": {"netbios", "nbstatmemory", false, "", metadata.Counter, "The total memory used by the NetBIOS packet buffers currently allocated by the server."}, 277 "Nbstat memory highwater mark": {"netbios", "nbstatnetallocs", false, "", metadata.Counter, "The number of NetBIOS packet buffers currently allocated by the server."}, 278 "Nbstat net buffers allocated": {"memory", "nbstat", true, "nbstatnetbuffersallocated", metadata.Gauge, "Memory statistics for NetBIOS."}, 279 "Nbstat net bytes allocated": {"memory", "nbstat", true, "nbstatnetbytesallocated", metadata.Gauge, "Memory statistics for NetBIOS."}, 280 "Nbstat total buffers allocated": {"memory", "nbstat", true, "nbstattotalbuffersallocated", metadata.Gauge, "Memory statistics for NetBIOS."}, 281 "Nbstat total buffers freed": {"memory", "nbstat", true, "nbstattotalbuffersfreed", metadata.Gauge, "Memory statistics for NetBIOS."}, 282 "Node Admin blocks allocated": {"memory", "node.admin", false, "nodeadminblocksallocated", metadata.Gauge, "Memory statistics for Node operations for administration."}, 283 "Node Admin blocks freed": {"memory", "node.admin", false, "nodeadminblocksfreed", metadata.Gauge, "Memory statistics for Node operations for administration."}, 284 "Node Admin blocks in use": {"memory", "node.admin", false, "nodeadminblocksinuse", metadata.Gauge, "Memory statistics for Node operations for administration."}, 285 "Node Admin memory": {"memory", "node.admin", false, "nodeadminmemory", metadata.Gauge, "Memory statistics for Node operations for administration."}, 286 "Node Auto blocks allocated": {"memory", "node.auto", false, "nodeautoblocksallocated", metadata.Gauge, "Memory statistics for Node operations for autoconfig."}, 287 "Node Auto blocks freed": {"memory", "node.auto", false, "nodeautoblocksfreed", metadata.Gauge, "Memory statistics for Node operations for autoconfig."}, 288 "Node Auto blocks in use": {"memory", "node.auto", false, "nodeautoblocksinuse", metadata.Gauge, "Memory statistics for Node operations for autoconfig."}, 289 "Node Auto memory": {"memory", "node.auto", false, "nodeautomemory", metadata.Gauge, "Memory statistics for Node operations for autoconfig."}, 290 "Node AXFR blocks allocated": {"memory", "node.axfr", false, "nodeaxfrblocksallocated", metadata.Gauge, "Memory statistics for Node operations for complete zone transfers."}, 291 "Node AXFR blocks freed": {"memory", "node.axfr", false, "nodeaxfrblocksfreed", metadata.Gauge, "Memory statistics for Node operations for complete zone transfers."}, 292 "Node AXFR blocks in use": {"memory", "node.axfr", false, "nodeaxfrblocksinuse", metadata.Gauge, "Memory statistics for Node operations for complete zone transfers."}, 293 "Node AXFR memory": {"memory", "node.axfr", false, "nodeaxfrmemory", metadata.Gauge, "Memory statistics for Node operations for complete zone transfers."}, 294 "Node blocks allocated": {"memory", "node", false, "nodeblocksallocated", metadata.Gauge, "Memory statistics for Node operations for database."}, 295 "Node blocks freed": {"memory", "node", false, "nodeblocksfreed", metadata.Gauge, "Memory statistics for Node operations for database."}, 296 "Node blocks in use": {"memory", "node", false, "nodeblocksinuse", metadata.Gauge, "Memory statistics for Node operations for database."}, 297 "Node Cache blocks allocated": {"memory", "node.cache", false, "nodecacheblocksallocated", metadata.Gauge, "Memory statistics for Node operations for cache."}, 298 "Node Cache blocks freed": {"memory", "node.cache", false, "nodecacheblocksfreed", metadata.Gauge, "Memory statistics for Node operations for cache."}, 299 "Node Cache blocks in use": {"memory", "node.cache", false, "nodecacheblocksinuse", metadata.Gauge, "Memory statistics for Node operations for cache."}, 300 "Node Cache memory": {"memory", "node.cache", false, "nodecachememory", metadata.Gauge, "Memory statistics for Node operations for cache."}, 301 "Node Copy blocks allocated": {"memory", "node.copy", false, "nodecopyblocksallocated", metadata.Gauge, "Memory statistics for Node operations for copy."}, 302 "Node Copy blocks freed": {"memory", "node.copy", false, "nodecopyblocksfreed", metadata.Gauge, "Memory statistics for Node operations for copy."}, 303 "Node Copy blocks in use": {"memory", "node.copy", false, "nodecopyblocksinuse", metadata.Gauge, "Memory statistics for Node operations for copy."}, 304 "Node Copy memory": {"memory", "node.copy", false, "nodecopymemory", metadata.Gauge, "Memory statistics for Node operations for copy."}, 305 "Node DS blocks allocated": {"memory", "node.ds", false, "nodedsblocksallocated", metadata.Gauge, "Memory statistics for Node operations for directory server."}, 306 "Node DS blocks freed": {"memory", "node.ds", false, "nodedsblocksfreed", metadata.Gauge, "Memory statistics for Node operations for directory server."}, 307 "Node DS blocks in use": {"memory", "node.ds", false, "nodedsblocksinuse", metadata.Gauge, "Memory statistics for Node operations for directory server."}, 308 "Node DS memory": {"memory", "node.ds", false, "nodedsmemory", metadata.Gauge, "Memory statistics for Node operations for directory server."}, 309 "Node File blocks allocated": {"memory", "node.file", false, "nodefileblocksallocated", metadata.Gauge, "Memory statistics for Node operations for file."}, 310 "Node File blocks freed": {"memory", "node.file", false, "nodefileblocksfreed", metadata.Gauge, "Memory statistics for Node operations for file."}, 311 "Node File blocks in use": {"memory", "node.file", false, "nodefileblocksinuse", metadata.Gauge, "Memory statistics for Node operations for file."}, 312 "Node File memory": {"memory", "node.file", false, "nodefilememory", metadata.Gauge, "Memory statistics for Node operations for file."}, 313 "Node Hash blocks allocated": {"memory", "node.hash", false, "nodehashblocksallocated", metadata.Gauge, "Memory statistics for Node hash"}, 314 "Node Hash blocks freed": {"memory", "node.hash", false, "nodehashblocksfreed", metadata.Gauge, "Memory statistics for Node hash"}, 315 "Node Hash blocks in use": {"memory", "node.hash", false, "nodehashblocksinuse", metadata.Gauge, "Memory statistics for Node hash"}, 316 "Node Hash memory": {"memory", "node.hash", false, "nodehashmemory", metadata.Gauge, "Memory statistics for Node hash"}, 317 "Node IXFR blocks allocated": {"memory", "node.ixfr", false, "nodeixfrblocksallocated", metadata.Gauge, "Memory statistics for Single Record transfer operations."}, 318 "Node IXFR blocks freed": {"memory", "node.ixfr", false, "nodeixfrblocksfreed", metadata.Gauge, "Memory statistics for Single Record transfer operations."}, 319 "Node IXFR blocks in use": {"memory", "node.ixfr", false, "nodeixfrblocksinuse", metadata.Gauge, "Memory statistics for Single Record transfer operations."}, 320 "Node IXFR memory": {"memory", "node.ixfr", false, "nodeixfrmemory", metadata.Gauge, "Memory statistics for Single Record transfer operations."}, 321 "Node memory": {"memory", "nodememory", false, "", metadata.Gauge, "The total size in bytes of server memory currently used for nodes."}, 322 "Node NoExist blocks allocated": {"memory", "node.noexist", false, "nodenoexistblocksallocated", metadata.Gauge, "Memory statistics for Node operations for non-existent records."}, 323 "Node NoExist blocks freed": {"memory", "node.noexist", false, "nodenoexistblocksfreed", metadata.Gauge, "Memory statistics for Node operations for non-existent records."}, 324 "Node NoExist blocks in use": {"memory", "node.noexist", false, "nodenoexistblocksinuse", metadata.Gauge, "Memory statistics for Node operations for non-existent records."}, 325 "Node NoExist memory": {"memory", "node.noexist", false, "nodenoexistmemory", metadata.Gauge, "Memory statistics for Node operations for non-existent records."}, 326 "Node Update blocks allocated": {"memory", "node.update", false, "nodeupdateblocksallocated", metadata.Gauge, "Memory statistics for Node operations for dynamic update."}, 327 "Node Update blocks freed": {"memory", "node.update", false, "nodeupdateblocksfreed", metadata.Gauge, "Memory statistics for Node operations for dynamic update."}, 328 "Node Update blocks in use": {"memory", "node.update", false, "nodeupdateblocksinuse", metadata.Gauge, "Memory statistics for Node operations for dynamic update."}, 329 "Node Update memory": {"memory", "node.update", false, "nodeupdatememory", metadata.Gauge, "Memory statistics for Node operations for dynamic update."}, 330 "Node WINS blocks allocated": {"memory", "node.wins", false, "nodewinsblocksallocated", metadata.Gauge, "Memory statistics for Node operations for WINS."}, 331 "Node WINS blocks freed": {"memory", "node.wins", false, "nodewinsblocksfreed", metadata.Gauge, "Memory statistics for Node operations for WINS."}, 332 "Node WINS blocks in use": {"memory", "node.wins", false, "nodewinsblocksinuse", metadata.Gauge, "Memory statistics for Node operations for WINS."}, 333 "Node WINS memory": {"memory", "node.wins", false, "nodewinsmemory", metadata.Gauge, "Memory statistics for Node operations for WINS."}, 334 "Node WINS-PTR blocks allocated": {"memory", "node.winsptr", false, "nodewins-ptrblocksallocated", metadata.Gauge, "Memory statistics for Node operations for WINS-PTR."}, 335 "Node WINS-PTR blocks freed": {"memory", "node.winsptr", false, "nodewins-ptrblocksfreed", metadata.Gauge, "Memory statistics for Node operations for WINS-PTR."}, 336 "Node WINS-PTR blocks in use": {"memory", "node.winsptr", false, "nodewins-ptrblocksinuse", metadata.Gauge, "Memory statistics for Node operations for WINS-PTR."}, 337 "Node WINS-PTR memory": {"memory", "node.winsptr", false, "nodewins-ptrmemory", metadata.Gauge, "Memory statistics for Node operations for WINS-PTR."}, 338 "Nodes added": {"domainservices", "dsnodesadded", false, "", metadata.Counter, "The number of new nodes added to the directory server."}, 339 "Nodes checked": {"timeout", "checks", false, "", metadata.Counter, "The number of times the server performed any node timeout marking operation."}, 340 "Nodes deleted": {"domainservices", "dsnodesdeleted", false, "", metadata.Counter, "The number of nodes deleted from the directory server."}, 341 "Nodes directed queued": {"timeout", "setdirect", false, "", metadata.Counter, "The number of times the server marked a node as being eligible for deletion when it is no longer in use by the cache by directly referencing the node."}, 342 "Nodes duplicate (already queued)": {"timeout", "alreadyinsystem", false, "", metadata.Counter, "The number of times the server marked a node as being eligible for deletion when it is no longer in use by the cache when the node was already so marked."}, 343 "Nodes loaded": {"domainservices", "dsnodesloaded", false, "", metadata.Counter, "The number of valid DNS nodes found in the directory server and loaded in memory by the server."}, 344 "Nodes modified": {"domainservices", "dsnodesmodified", false, "", metadata.Counter, "The number of nodes modified in the directory server."}, 345 "Nodes queued": {"memory", "nodesqueued", false, "", metadata.Gauge, "The cumulative number of nodes that have been queued."}, 346 "Nodes queued from child delete": {"timeout", "setfromchilddelete", false, "", metadata.Counter, "The number of times the server marked a node as being eligible for deletion when it is no longer in use by the cache because the node's last child was deleted."}, 347 "Nodes queued from reference": {"timeout", "setfromdereference", false, "", metadata.Counter, "The number of times the server marked a node as being eligible for deletion when it is no longer in use by the cache because the last reference was deleted."}, 348 "Nodes read": {"domainservices", "dstotalnodesread", false, "", metadata.Counter, "The total number of DNS nodes read from the directory server."}, 349 "Nodes tombstoned": {"domainservices", "dsnodestombstoned", false, "", metadata.Counter, "The number of nodes tombstoned in the directory server."}, 350 "Nodes write suppressed": {"domainservices", "dswritesuppressed", false, "", metadata.Counter, "The number of records added to the directory server."}, 351 "NoError": {"error", "errors", false, "noerror", metadata.Counter, "The number of errors that the DNS server has processed. The 'Type' metric is the type of error that the DNS server has processed."}, 352 "Non-zone data responses": {"recursion", "responsenonzonedata", false, "", metadata.Counter, "The number of error responses when a name is not found in the zone."}, 353 "None blocks allocated": {"memory", "none", false, "noneblocksallocated", metadata.Gauge, "Memory statistics for Not related to a particular operation."}, 354 "None blocks freed": {"memory", "none", false, "noneblocksfreed", metadata.Gauge, "Memory statistics for Not related to a particular operation."}, 355 "None blocks in use": {"memory", "none", false, "noneblocksinuse", metadata.Gauge, "Memory statistics for Not related to a particular operation."}, 356 "None memory": {"memory", "none", false, "nonememory", metadata.Gauge, "Memory statistics for Not related to a particular operation."}, 357 "NotAuth": {"error", "errors", false, "notauthoritative", metadata.Counter, "The number of errors that the DNS server has processed. The 'Type' metric is the type of error that the DNS server has processed."}, 358 "NotAuthoritative responses": {"recursion", "responsenotauthoritative", false, "", metadata.Counter, "The number of responses received from a server not authoritative for the zone."}, 359 "Notifies current version": {"query", "notifycurrentversion", false, "", metadata.Counter, "The number of zone notifications received by the server where the received SOA has same version number as that of the SOA already present on the server."}, 360 "Notifies invalid": {"query", "notifyinvalid", false, "", metadata.Counter, "The number of invalid zone notifications received by the server."}, 361 "Notifies master unknown": {"query", "notifymasterunknown", false, "", metadata.Counter, "The number of zone notifications received by the server where notifications are received from a server that is not present in the list of masters for the zone."}, 362 "Notifies new version": {"query", "notifynewversion", false, "", metadata.Counter, "The number of zone notifications received by the server where the received SOA has a newer version number than that of the SOA already present on the server."}, 363 "Notifies no version": {"query", "notifynoversion", false, "", metadata.Counter, "The number of zone notifications received by the server for which the server has no SOA."}, 364 "Notifies old version": {"query", "notifyoldversion", false, "", metadata.Counter, "The number of zone notifications received by the server where the received SOA has an older version number than the SOA already present on the server."}, 365 "Notifies primary": {"query", "notifyprimary", false, "", metadata.Counter, "The number of zone notifications for primary zones received by the server."}, 366 "Notifies received": {"query", "notifyreceived", false, "", metadata.Counter, "The number of zone notifications received by the server."}, 367 "Notifies sent": {"query", "notifysent", false, "", metadata.Counter, "The number of update notifications sent to secondaries by the server."}, 368 "Notify queries": {"query", "queries", false, "notify", metadata.Counter, "The number of queries received by the DNS server. The 'Type' tag indicates the type of request that was received (A, MX, PTR, etc)."}, 369 "NotImpl": {"error", "errors", false, "notimpl", metadata.Counter, "The number of errors that the DNS server has processed. The 'Type' metric is the type of error that the DNS server has processed."}, 370 "NotZone": {"error", "errors", false, "notzone", metadata.Counter, "The number of errors that the DNS server has processed. The 'Type' metric is the type of error that the DNS server has processed."}, 371 "NS queries": {"query", "queries", false, "typens", metadata.Counter, "The number of queries received by the DNS server. The 'Type' tag indicates the type of request that was received (A, MX, PTR, etc)."}, 372 "NxDomain": {"error", "errors", false, "nxdomain", metadata.Counter, "The number of errors that the DNS server has processed. The 'Type' metric is the type of error that the DNS server has processed."}, 373 "NxRRSet": {"error", "errors", false, "nxrrset", metadata.Counter, "The number of errors that the DNS server has processed. The 'Type' metric is the type of error that the DNS server has processed."}, 374 "Original questions recursed": {"recursion", "originalquestionrecursed", true, "", metadata.Counter, "The number of new recursive queries initiated."}, 375 "Other queries": {"query", "queries", false, "typeother", metadata.Counter, "The number of queries received by the DNS server. The 'Type' tag indicates the type of request that was received (A, MX, PTR, etc)."}, 376 "Passes requiring aggressive free": {"cache", "passesrequiringaggressivefree", false, "", metadata.Counter, "The number of times since the server last started that the server cache was found to exceed the cache size limit which is 90 percent of the MaxCacheSize (section 3.1.1.1.1) and that the server scanned the cache aggressively attempting to free even nodes that contain unexpired records. An aggressive scan frees in order nodes containing records that are to expire within the next hour records that are to expire within the next day and all records if needed and halts the freeing process immediately once the cache size limit is reached. After reaching 0xFFFFFFFF the value increments to 0x00000000."}, 377 "Passes where nothing was freed": {"cache", "passeswithnofrees", false, "", metadata.Counter, "The number of times since the server last started that the server cache was found to exceed the cache size limit which is 90 percent of the MaxCacheSize (section 3.1.1.1.1) but when the server scanned the cache looking for nodes containing no records or only expired DNS records to free it found no nodes that could be freed. After reaching 0xFFFFFFFF the value increments to 0x00000000."}, 378 "Polling passes with DS errors": {"domainservices", "pollingpasseswithdserrors", false, "", metadata.Counter, "The number of times the server hit failure while polling zones in the directory server. This field SHOULD<73> be present. A client can tell whether the field is present based on the size of the buffer holding this structure."}, 379 "Previous zone failures": {"recursion", "failurereachpreviousresponse", false, "", metadata.Counter, "The number of times the server received failure while performing recursive lookup on queries because the query recursed back to the domain from which a name server had already responded."}, 380 "PTR queries": {"query", "queries", false, "typeptr", metadata.Counter, "The number of queries received by the DNS server. The 'Type' tag indicates the type of request that was received (A, MX, PTR, etc)."}, 381 "Queries received": {"query", "queriesreceived", false, "", metadata.Counter, "The cumulative number of queries received."}, 382 "Queries recursed": {"recursion", "queriesrecursed", false, "", metadata.Counter, "The number of queries received that required recursive lookups."}, 383 "Rcode responses": {"recursion", "responsercode", false, "", metadata.Counter, "The number of errors other than name errors received by the server."}, 384 "Recent access nodes checked": {"timeout", "recentaccess", false, "", metadata.Counter, "The number of times the server encountered a cache node that it could not delete because the node had recently been accessed."}, 385 "Record blocks allocated": {"memory", "record", false, "recordblocksallocated", metadata.Gauge, "Memory statistics for Record operations."}, 386 "Record blocks freed": {"memory", "record", false, "recordblocksfreed", metadata.Gauge, "Memory statistics for Record operations."}, 387 "Record blocks in use": {"memory", "record", false, "recordblocksinuse", metadata.Gauge, "Memory statistics for Record operations."}, 388 "Record memory": {"memory", "record", false, "recordmemory", metadata.Gauge, "Memory statistics for Record operations."}, 389 "Records currently cached": {"record", "cachecurrent", false, "", metadata.Counter, "The number of resource records currently cached by the server."}, 390 "Records in use": {"record", "inuse", false, "", metadata.Counter, "The number of resource records currently allocated by the server."}, 391 "Records loaded": {"domainservices", "dsrecordsloaded", false, "", metadata.Counter, "The number of resource records loaded in memory by the server."}, 392 "Records memory": {"domainservices", "memory", false, "", metadata.Counter, "The amount of memory in bytes currently allocated for resource records by the server."}, 393 "Records queued for slow free": {"record", "slowfreequeued", false, "", metadata.Counter, "Some cached record types such as NS and SOA are not immediately freed to the pool of allocated records instead they are placed in a timeout queue and returned after this timeout expires. This is the cumulative count of such slow-free records that have been entered into the timeout queue."}, 394 "Records read": {"domainservices", "dstotalrecordsread", false, "", metadata.Counter, "The total number of resource records read from the directory server."}, 395 "Records returned": {"record", "return", false, "", metadata.Counter, "The cumulative number of resource records freed by the server."}, 396 "Records slow freed": {"record", "slowfreefinished", false, "", metadata.Counter, "The number of slow frees (see SlowFreeQueued above) that have been completed."}, 397 "Records used": {"record", "used", false, "", metadata.Counter, "The cumulative number of resource records allocated by the server."}, 398 "Recurse failures": {"recursion", "recursionfailure", false, "", metadata.Counter, "The number of times the server received failures for recursion queries to remote servers."}, 399 "Recursion messages returned": {"packet", "recursepacketreturn", false, "", metadata.Counter, "The cumulative number of packets that were used for recursive queries and then returned by the server to the pool of packets."}, 400 "Recursion messages used": {"packet", "recursepacketused", false, "", metadata.Counter, "The cumulative number of packets used by the server for recursion queries."}, 401 "Refused": {"error", "errors", true, "refused", metadata.Counter, "The number of errors that the DNS server has processed. The 'Type' metric is the type of error that the DNS server has processed."}, 402 "Registry blocks allocated": {"memory", "registry", false, "registryblocksallocated", metadata.Gauge, "Memory statistics for Registry operations."}, 403 "Registry blocks freed": {"memory", "registry", false, "registryblocksfreed", metadata.Gauge, "Memory statistics for Registry operations."}, 404 "Registry blocks in use": {"memory", "registry", false, "registryblocksinuse", metadata.Gauge, "Memory statistics for Registry operations."}, 405 "Registry memory": {"memory", "registry", false, "registrymemory", metadata.Gauge, "Memory statistics for Registry operations."}, 406 "Remote IP blocks allocated": {"memory", "remoteip", false, "remoteipblocksallocated", metadata.Gauge, "Memory statistics for Remote IP address operations."}, 407 "Remote IP blocks freed": {"memory", "remoteip", false, "remoteipblocksfreed", metadata.Gauge, "Memory statistics for Remote IP address operations."}, 408 "Remote IP blocks in use": {"memory", "remoteip", false, "remoteipblocksinuse", metadata.Gauge, "Memory statistics for Remote IP address operations."}, 409 "Remote IP memory": {"memory", "remoteip", false, "remoteipmemory", metadata.Gauge, "Memory statistics for Remote IP address operations."}, 410 "Requests": {"query", "request", false, "", metadata.Counter, ""}, 411 "Responses for forwarded updates": {"query", "responsesforforwardedupdates", true, "", metadata.Counter, ""}, 412 "Responses from forwarders": {"recursion", "responsefromforwarder", false, "", metadata.Counter, ""}, 413 "Responses mismatched": {"recursion", "responsesmismatched", false, "", metadata.Counter, ""}, 414 "Responses sent": {"query", "responsessent", false, "", metadata.Counter, ""}, 415 "Responses unmatched": {"recursion", "responsesunmatched", false, "", metadata.Counter, ""}, 416 "Retries": {"recursion", "retries", false, "", metadata.Counter, ""}, 417 "Retry count failures": {"query", "retrycountfailures", false, "", metadata.Counter, ""}, 418 "RPC blocks allocated": {"memory", "rpc", false, "rpcblocksallocated", metadata.Gauge, "Memory statistics for RPC operations."}, 419 "RPC blocks freed": {"memory", "rpc", false, "rpcblocksfreed", metadata.Gauge, "Memory statistics for RPC operations."}, 420 "RPC blocks in use": {"memory", "rpc", false, "rpcblocksinuse", metadata.Gauge, "Memory statistics for RPC operations."}, 421 "RPC memory": {"memory", "rpc", false, "rpcmemory", metadata.Gauge, "Memory statistics for RPC operations."}, 422 "RR Admin blocks allocated": {"memory", "rr.admin", false, "rradminblocksallocated", metadata.Gauge, "Memory statistics for RR operations for administration."}, 423 "RR Admin blocks freed": {"memory", "rr.admin", false, "rradminblocksfreed", metadata.Gauge, "Memory statistics for RR operations for administration."}, 424 "RR Admin blocks in use": {"memory", "rr.admin", false, "rradminblocksinuse", metadata.Gauge, "Memory statistics for RR operations for administration."}, 425 "RR Admin memory": {"memory", "rr.admin", false, "rradminmemory", metadata.Gauge, "Memory statistics for RR operations for administration."}, 426 "RR Auto blocks allocated": {"memory", "rr.auto", false, "rrautoblocksallocated", metadata.Gauge, "Memory statistics for RR operations for autoconfig."}, 427 "RR Auto blocks freed": {"memory", "rr.auto", false, "rrautoblocksfreed", metadata.Gauge, "Memory statistics for RR operations for autoconfig."}, 428 "RR Auto blocks in use": {"memory", "rr.auto", false, "rrautoblocksinuse", metadata.Gauge, "Memory statistics for RR operations for autoconfig."}, 429 "RR Auto memory": {"memory", "rr.auto", false, "rrautomemory", metadata.Gauge, "Memory statistics for RR operations for autoconfig."}, 430 "RR AXFR blocks allocated": {"memory", "rr.axfr", false, "rraxfrblocksallocated", metadata.Gauge, "Memory statistics for Complete zone transfer operations."}, 431 "RR AXFR blocks freed": {"memory", "rr.axfr", false, "rraxfrblocksfreed", metadata.Gauge, "Memory statistics for Complete zone transfer operations."}, 432 "RR AXFR blocks in use": {"memory", "rr.axfr", false, "rraxfrblocksinuse", metadata.Gauge, "Memory statistics for Complete zone transfer operations."}, 433 "RR AXFR memory": {"memory", "rr.axfr", false, "rraxfrmemory", metadata.Gauge, "Memory statistics for Complete zone transfer operations."}, 434 "RR Cache blocks allocated": {"memory", "rr.cache", false, "rrcacheblocksallocated", metadata.Gauge, "Memory statistics for RR operations for cache."}, 435 "RR Cache blocks freed": {"memory", "rr.cache", false, "rrcacheblocksfreed", metadata.Gauge, "Memory statistics for RR operations for cache."}, 436 "RR Cache blocks in use": {"memory", "rr.cache", false, "rrcacheblocksinuse", metadata.Gauge, "Memory statistics for RR operations for cache."}, 437 "RR Cache memory": {"memory", "rr.cache", false, "rrcachememory", metadata.Gauge, "Memory statistics for RR operations for cache."}, 438 "RR Copy blocks allocated": {"memory", "rr.copy", false, "rrcopyblocksallocated", metadata.Gauge, "Memory statistics for RR copy operations."}, 439 "RR Copy blocks freed": {"memory", "rr.copy", false, "rrcopyblocksfreed", metadata.Gauge, "Memory statistics for RR copy operations."}, 440 "RR Copy blocks in use": {"memory", "rr.copy", false, "rrcopyblocksinuse", metadata.Gauge, "Memory statistics for RR copy operations."}, 441 "RR Copy memory": {"memory", "rr.copy", false, "rrcopymemory", metadata.Gauge, "Memory statistics for RR copy operations."}, 442 "RR DS blocks allocated": {"memory", "rr.ds", false, "rrdsblocksallocated", metadata.Gauge, "Memory statistics for Directory server-based RR operations."}, 443 "RR DS blocks freed": {"memory", "rr.ds", false, "rrdsblocksfreed", metadata.Gauge, "Memory statistics for Directory server-based RR operations."}, 444 "RR DS blocks in use": {"memory", "rr.ds", false, "rrdsblocksinuse", metadata.Gauge, "Memory statistics for Directory server-based RR operations."}, 445 "RR DS memory": {"memory", "rr.ds", false, "rrdsmemory", metadata.Gauge, "Memory statistics for Directory server-based RR operations."}, 446 "RR File blocks allocated": {"memory", "rr.file", false, "rrfileblocksallocated", metadata.Gauge, "Memory statistics for File-based operations."}, 447 "RR File blocks freed": {"memory", "rr.file", false, "rrfileblocksfreed", metadata.Gauge, "Memory statistics for File-based operations."}, 448 "RR File blocks in use": {"memory", "rr.file", false, "rrfileblocksinuse", metadata.Gauge, "Memory statistics for File-based operations."}, 449 "RR File memory": {"memory", "rr.file", false, "rrfilememory", metadata.Gauge, "Memory statistics for File-based operations."}, 450 "RR IXFR blocks allocated": {"memory", "rr.ixfr", false, "rrixfrblocksallocated", metadata.Gauge, "Memory statistics for Single Record transfer operations."}, 451 "RR IXFR blocks freed": {"memory", "rr.ixfr", false, "rrixfrblocksfreed", metadata.Gauge, "Memory statistics for Single Record transfer operations."}, 452 "RR IXFR blocks in use": {"memory", "rr.ixfr", false, "rrixfrblocksinuse", metadata.Gauge, "Memory statistics for Single Record transfer operations."}, 453 "RR IXFR memory": {"memory", "rr.ixfr", false, "rrixfrmemory", metadata.Gauge, "Memory statistics for Single Record transfer operations."}, 454 "RR NoExist blocks allocated": {"memory", "rr.noexist", false, "rrnoexistblocksallocated", metadata.Gauge, "Memory statistics for RR operations for non-existent records."}, 455 "RR NoExist blocks freed": {"memory", "rr.noexist", false, "rrnoexistblocksfreed", metadata.Gauge, "Memory statistics for RR operations for non-existent records."}, 456 "RR NoExist blocks in use": {"memory", "rr.noexist", false, "rrnoexistblocksinuse", metadata.Gauge, "Memory statistics for RR operations for non-existent records."}, 457 "RR NoExist memory": {"memory", "rr.noexist", false, "rrnoexistmemory", metadata.Gauge, "Memory statistics for RR operations for non-existent records."}, 458 "RR sets added": {"memory", "rrsetsadded", false, "", metadata.Gauge, ""}, 459 "RR sets replaced": {"domainservices", "dsrecordsreplaced", false, "", metadata.Counter, ""}, 460 "RR Update blocks allocated": {"memory", "rr.update", false, "rrupdateblocksallocated", metadata.Gauge, "Memory statistics for RR operations for dynamic update."}, 461 "RR Update blocks freed": {"memory", "rr.update", false, "rrupdateblocksfreed", metadata.Gauge, "Memory statistics for RR operations for dynamic update."}, 462 "RR Update blocks in use": {"memory", "rr.update", false, "rrupdateblocksinuse", metadata.Gauge, "Memory statistics for RR operations for dynamic update."}, 463 "RR Update memory": {"memory", "rr.update", false, "rrupdatememory", metadata.Gauge, "Memory statistics for RR operations for dynamic update."}, 464 "RR WINS blocks allocated": {"memory", "rr.wins", false, "rrwinsblocksallocated", metadata.Gauge, "Memory statistics for RR operations for WINS."}, 465 "RR WINS blocks freed": {"memory", "rr.wins", false, "rrwinsblocksfreed", metadata.Gauge, "Memory statistics for RR operations for WINS."}, 466 "RR WINS blocks in use": {"memory", "rr.wins", false, "rrwinsblocksinuse", metadata.Gauge, "Memory statistics for RR operations for WINS."}, 467 "RR WINS memory": {"memory", "rr.wins", false, "rrwinsmemory", metadata.Gauge, "Memory statistics for RR operations for WINS."}, 468 "RR WINS-PTR blocks allocated": {"memory", "rr.winsptr", false, "rrwins-ptrblocksallocated", metadata.Gauge, "Memory statistics for RR operations for WINS-PTR."}, 469 "RR WINS-PTR blocks freed": {"memory", "rr.winsptr", false, "rrwins-ptrblocksfreed", metadata.Gauge, "Memory statistics for RR operations for WINS-PTR."}, 470 "RR WINS-PTR blocks in use": {"memory", "rr.winsptr", false, "rrwins-ptrblocksinuse", metadata.Gauge, "Memory statistics for RR operations for WINS-PTR."}, 471 "RR WINS-PTR memory": {"memory", "rr.winsptr", false, "rrwins-ptrmemory", metadata.Gauge, "Memory statistics for RR operations for WINS-PTR."}, 472 "Safe blocks allocated": {"memory", "safe", false, "safeblocksallocated", metadata.Gauge, "Memory statistics for Miscellaneous queuing operations."}, 473 "Safe blocks freed": {"memory", "safe", false, "safeblocksfreed", metadata.Gauge, "Memory statistics for Miscellaneous queuing operations."}, 474 "Safe blocks in use": {"memory", "safe", false, "safeblocksinuse", metadata.Gauge, "Memory statistics for Miscellaneous queuing operations."}, 475 "Safe memory": {"memory", "safe", false, "safememory", metadata.Gauge, "Memory statistics for Miscellaneous queuing operations."}, 476 "Seconds since start": {"time", "timeelapsedsinceserverstart", false, "", metadata.Counter, ""}, 477 "Seconds since statistics cleared": {"time", "timeelapsedsincelastclearedstatistics", false, "", metadata.Counter, ""}, 478 "Secure update continues": {"update", "secureupdatecontinues", true, "", metadata.Counter, ""}, 479 "Secure update DS write failures": {"update", "securedswritefailure", true, "", metadata.Counter, ""}, 480 "Secure update failures": {"update", "securefailure", true, "", metadata.Counter, ""}, 481 "Secure update successes": {"update", "securesuccess", true, "", metadata.Counter, ""}, 482 "Security contexts created": {"security", "securitycontextcreate", false, "", metadata.Counter, ""}, 483 "Security contexts dequeued": {"security", "securitycontextdequeue", false, "", metadata.Counter, ""}, 484 "Security contexts freed": {"security", "securitycontextfree", false, "", metadata.Counter, ""}, 485 "Security contexts queue length": {"security", "securitycontextqueuelength", false, "", metadata.Gauge, ""}, 486 "Security contexts queued": {"security", "securitycontextqueue", false, "", metadata.Counter, ""}, 487 "Security contexts queued in negotiation": {"security", "securitycontextqueueinnego", false, "", metadata.Counter, ""}, 488 "Security contexts queued negotiation complete": {"security", "securitycontextqueueinnegocomplete", false, "", metadata.Counter, ""}, 489 "Security contexts timed out": {"security", "securitycontexttimeout", false, "", metadata.Counter, ""}, 490 "Security packet contexts allocated": {"memory", "securitypacketcontextsallocated", false, "", metadata.Gauge, ""}, 491 "Security packet contexts freed": {"security", "securitypackfree", false, "", metadata.Counter, ""}, 492 "Security refused": {"query", "refusesecurity", false, "", metadata.Counter, ""}, 493 "Send timeouts": {"recursion", "timedoutqueries", false, "", metadata.Counter, ""}, 494 "Sends": {"recursion", "sends", false, "", metadata.Counter, ""}, 495 "Serial number writes": {"domainservices", "dsserialwrites", false, "", metadata.Counter, ""}, 496 "Server failure responses": {"recursion", "serverfailure", false, "", metadata.Counter, ""}, 497 "ServFail": {"error", "errors", false, "servfail", metadata.Counter, "The number of errors that the DNS server has processed. The 'Type' metric is the type of error that the DNS server has processed."}, 498 "ServFail refused": {"query", "refuseserverfailure", false, "", metadata.Counter, ""}, 499 "Shutdown refused": {"query", "refuseshutdown", false, "", metadata.Counter, ""}, 500 "SOA invalid responses": {"query", "soaresponseinvalid", false, "", metadata.Counter, ""}, 501 "SOA NameError responses": {"query", "soanameerrorresponses", false, "", metadata.Counter, ""}, 502 "SOA queries": {"query", "queries", false, "typesoa", metadata.Counter, "The number of queries received by the DNS server. The 'Type' tag indicates the type of request that was received (A, MX, PTR, etc)."}, 503 "SOA requests": {"query", "requests", false, "soarequest", metadata.Counter, "The number of requests that the DNS server has made to other DNS servers. For example, these could be recursive queries or zone transfers. The 'Type' tag indicates the sort of request that the DNS server has made."}, 504 "SOA responses": {"query", "soaresponse", false, "", metadata.Counter, ""}, 505 "Socket blocks allocated": {"memory", "socket", false, "socketblocksallocated", metadata.Gauge, "Memory statistics for Socket operations."}, 506 "Socket blocks freed": {"memory", "socket", false, "socketblocksfreed", metadata.Gauge, "Memory statistics for Socket operations."}, 507 "Socket blocks in use": {"memory", "socket", false, "socketblocksinuse", metadata.Gauge, "Memory statistics for Socket operations."}, 508 "Socket memory": {"memory", "socket", false, "socketmemory", metadata.Gauge, "Memory statistics for Socket operations."}, 509 "SRV queries": {"query", "queries", false, "typesrv", metadata.Counter, "The number of queries received by the DNS server. The 'Type' tag indicates the type of request that was received (A, MX, PTR, etc)."}, 510 "Standard allocs in use": {"memory", "standard", false, "stdinuse", metadata.Gauge, "Memory statistics for common-size blocks"}, 511 "Standard allocs memory": {"memory", "standard", false, "stdmemory", metadata.Gauge, "Memory statistics for common-size blocks"}, 512 "Standard allocs returned": {"memory", "standard", false, "stdreturn", metadata.Gauge, "Memory statistics for common-size blocks"}, 513 "Standard allocs used": {"memory", "standard", false, "stdused", metadata.Gauge, "Memory statistics for common-size blocks"}, 514 "Standard block memory in free list": {"memory", "standard", false, "stdblockfreelistmemory", metadata.Gauge, "Memory statistics for common-size blocks"}, 515 "Standard block total memory": {"memory", "standard", false, "stdblockmemory", metadata.Gauge, "Memory statistics for common-size blocks"}, 516 "Standard blocks allocated": {"memory", "standard", false, "stdblockalloc", metadata.Gauge, "Memory statistics for common-size blocks"}, 517 "Standard blocks in free list": {"memory", "standard", false, "stdblockfreelist", metadata.Gauge, "Memory statistics for common-size blocks"}, 518 "Standard blocks in use": {"memory", "standard", false, "stdblockinuse", metadata.Gauge, "Memory statistics for common-size blocks"}, 519 "Standard blocks returned": {"memory", "standard", false, "stdblockreturn", metadata.Gauge, "Memory statistics for common-size blocks"}, 520 "Standard blocks used": {"memory", "standard", false, "stdblockused", metadata.Gauge, "Memory statistics for common-size blocks"}, 521 "Standard queries": {"query", "standard", false, "", metadata.Counter, ""}, 522 "Standard to heap allocs in use": {"memory", "standard.toheap", false, "stdtoheapinuse", metadata.Gauge, "The number of arbitrary-size blocks of memory currently in use."}, 523 "Standard to heap allocs memory": {"memory", "standard.toheap", false, "stdtoheapmemory", metadata.Gauge, "The number of arbitrary-size blocks of memory currently in use."}, 524 "Standard to heap allocs returned": {"memory", "standard.toheap", false, "stdtoheapfree", metadata.Gauge, "The number of arbitrary-size blocks of memory currently in use."}, 525 "Standard to heap allocs used": {"memory", "standard.toheap", false, "stdtoheapalloc", metadata.Gauge, "The number of arbitrary-size blocks of memory currently in use."}, 526 "Stub zone AXFR invalid responses": {"query", "stubaxfrinvalid", false, "", metadata.Counter, ""}, 527 "Stub zone AXFR refused responses": {"query", "stubaxfrrefused", false, "", metadata.Counter, ""}, 528 "Stub zone AXFR requests": {"query", "requests", false, "stubaxfrrequest", metadata.Counter, "The number of requests that the DNS server has made to other DNS servers. For example, these could be recursive queries or zone transfers. The 'Type' tag indicates the sort of request that the DNS server has made."}, 529 "Stub zone AXFR responses": {"query", "stubaxfrresponse", false, "", metadata.Counter, ""}, 530 "Stub zone AXFR success responses": {"query", "stubaxfrsuccess", false, "", metadata.Counter, ""}, 531 "Stuff blocks allocated": {"memory", "stuff", false, "stuffblocksallocated", metadata.Gauge, "Memory statistics for Miscellaneous operations."}, 532 "Stuff blocks freed": {"memory", "stuff", false, "stuffblocksfreed", metadata.Gauge, "Memory statistics for Miscellaneous operations."}, 533 "Stuff blocks in use": {"memory", "stuff", false, "stuffblocksinuse", metadata.Gauge, "Memory statistics for Miscellaneous operations."}, 534 "Stuff memory": {"memory", "stuff", false, "stuffmemory", metadata.Gauge, "Memory statistics for Miscellaneous operations."}, 535 "Successful cache enforcement passes": {"cache", "successfulfreepasses", false, "", metadata.Counter, ""}, 536 "Table blocks allocated": {"memory", "table", false, "tableblocksallocated", metadata.Gauge, "Memory statistics for Record table operations."}, 537 "Table blocks freed": {"memory", "table", false, "tableblocksfreed", metadata.Gauge, "Memory statistics for Record table operations."}, 538 "Table blocks in use": {"memory", "table", false, "tableblocksinuse", metadata.Gauge, "Memory statistics for Record table operations."}, 539 "Table memory": {"memory", "table", false, "tablememory", metadata.Gauge, "Memory statistics for Record table operations."}, 540 "TCP client connections": {"query", "tcpclientconnections", false, "", metadata.Counter, ""}, 541 "TCP Connection blocks allocated": {"memory", "tcp", false, "tcpconnectionblocksallocated", metadata.Gauge, "Memory statistics for TCP Packets."}, 542 "TCP Connection blocks freed": {"memory", "tcp", false, "tcpconnectionblocksfreed", metadata.Gauge, "Memory statistics for TCP Packets."}, 543 "TCP Connection blocks in use": {"memory", "tcp", false, "tcpconnectionblocksinuse", metadata.Gauge, "Memory statistics for TCP Packets."}, 544 "TCP Connection memory": {"memory", "tcp", false, "tcpconnectionmemory", metadata.Gauge, "Memory statistics for TCP Packets."}, 545 "TCP Packet blocks allocated": {"packet", "tcpalloc", false, "", metadata.Counter, ""}, 546 "TCP Packet blocks freed": {"packet", "tcpfree", false, "", metadata.Counter, ""}, 547 "TCP Packet blocks in use": {"packet", "tcpnetallocs", false, "", metadata.Counter, ""}, 548 "TCP Packet memory": {"packet", "tcpmemory", false, "", metadata.Counter, ""}, 549 "TCP queries received": {"query", "queriesreceived", false, "tcp", metadata.Counter, "The number of queries that the DNS server has received. The 'Type' tag contains whether or not the queries were TCP or UDP."}, 550 "TCP queries sent": {"query", "queriessent", false, "tcp", metadata.Counter, "The number of queries that the DNS server has sent to other DNS servers (for example, recursive requests or zone transfers). The 'Type' tag contains whether or not the queries were TCP or UDP."}, 551 "TCP recursion disconnects": {"recursion", "tcpdisconnect", false, "", metadata.Counter, ""}, 552 "TCP recursion queries": {"recursion", "tcpquery", false, "", metadata.Counter, ""}, 553 "TCP recursion responses": {"recursion", "tcpresponse", false, "", metadata.Counter, ""}, 554 "TCP recursions tried": {"recursion", "tcptry", false, "", metadata.Counter, ""}, 555 "TCP responses received": {"query", "responsesreceived", false, "tcp", metadata.Counter, ""}, 556 "TCP responses sent": {"query", "respondessent", false, "tcp", metadata.Counter, ""}, 557 "Thread blocks allocated": {"memory", "thread", false, "threadblocksallocated", metadata.Gauge, "Memory statistics for Thread management."}, 558 "Thread blocks freed": {"memory", "thread", false, "threadblocksfreed", metadata.Gauge, "Memory statistics for Thread management."}, 559 "Thread blocks in use": {"memory", "thread", false, "threadblocksinuse", metadata.Gauge, "Memory statistics for Thread management."}, 560 "Thread memory": {"memory", "thread", false, "threadmemory", metadata.Gauge, "Memory statistics for Thread management."}, 561 "Timeout blocks allocated": {"memory", "timeout", false, "timeoutblocksallocated", metadata.Gauge, "Memory statistics for Timeout."}, 562 "Timeout blocks created": {"timeout", "arrayblockscreated", false, "", metadata.Counter, ""}, 563 "Timeout blocks deleted": {"timeout", "arrayblocksdeleted", false, "", metadata.Counter, ""}, 564 "Timeout blocks freed": {"memory", "timeout", false, "timeoutblocksfreed", metadata.Gauge, "Memory statistics for Timeout."}, 565 "Timeout blocks in use": {"memory", "timeout", false, "timeoutblocksinuse", metadata.Gauge, "Memory statistics for Timeout."}, 566 "Timeout memory": {"memory", "timeout", false, "timeoutmemory", metadata.Gauge, "Memory statistics for Timeout."}, 567 "Timeouts for forwarded updates": {"query", "timeoutsforforwardedupdates", true, "", metadata.Counter, ""}, 568 "TKeyNego queries": {"query", "queries", false, "tkeynego", metadata.Counter, "The number of queries received by the DNS server. The 'Type' tag indicates the type of request that was received (A, MX, PTR, etc)."}, 569 "To forwarders": {"query", "toforwarders", false, "", metadata.Counter, ""}, 570 "Tombstones read": {"domainservices", "dstombstonesread", false, "", metadata.Counter, ""}, 571 "Total failures": {"query", "totalfailures", false, "", metadata.Counter, ""}, 572 "Total LDAP search time": {"domainservices", "ldapsearchtime", false, "", metadata.Counter, ""}, 573 "Total memory": {"memory", "totalmemory", false, "", metadata.Gauge, ""}, 574 "Total passes": {"recursion", "lookuppasses", false, "", metadata.Counter, ""}, 575 "Total queries": {"query", "totalqueries", false, "", metadata.Counter, ""}, 576 "Total questions recursed": {"recursion", "totalquestionsrecursed", false, "", metadata.Counter, ""}, 577 "Total records cached": {"record", "cachetotal", false, "", metadata.Counter, ""}, 578 "Total responses": {"recursion", "responses", false, "", metadata.Counter, ""}, 579 "Transfer failures": {"query", "transferfailures", false, "", metadata.Counter, ""}, 580 "Transfer successes": {"query", "transfersuccesses", false, "", metadata.Counter, ""}, 581 "UDP messages allocated": {"packet", "udpmessagesallocated", true, "", metadata.Counter, ""}, 582 "UDP messages freed": {"packet", "udpmessagesfreed", true, "", metadata.Counter, ""}, 583 "UDP messages in free list": {"packet", "udpinfreelist", false, "", metadata.Counter, ""}, 584 "UDP messages in use": {"packet", "udpinuse", false, "", metadata.Counter, ""}, 585 "UDP messages memory": {"packet", "udpmessagesmemory", true, "", metadata.Counter, ""}, 586 "UDP messages net allocations": {"packet", "udpmessagesnetallocations", true, "", metadata.Counter, ""}, 587 "UDP messages reallocated": {"memory", "udpmessagesreallocated", false, "", metadata.Gauge, ""}, 588 "UDP messages returned": {"packet", "udpreturn", false, "", metadata.Counter, ""}, 589 "UDP messages used": {"packet", "udpused", false, "", metadata.Counter, ""}, 590 "UDP Packet blocks allocated": {"packet", "udpalloc", false, "", metadata.Counter, ""}, 591 "UDP Packet blocks freed": {"packet", "udpfree", false, "", metadata.Counter, ""}, 592 "UDP Packet blocks in use": {"packet", "udpnetallocs", false, "", metadata.Counter, ""}, 593 "UDP Packet memory": {"packet", "udpmemory", false, "", metadata.Counter, ""}, 594 "UDP queries received": {"query", "queriesreceived", false, "udp", metadata.Counter, "The number of queries that the DNS server has received. The 'Type' tag contains whether or not the queries were TCP or UDP."}, 595 "UDP queries sent": {"query", "queriessent", false, "udp", metadata.Counter, "The number of queries that the DNS server has sent to other DNS servers (for example, recursive requests or zone transfers). The 'Type' tag contains whether or not the queries were TCP or UDP."}, 596 "UDP responses received": {"query", "responsesreceived", false, "udp", metadata.Counter, ""}, 597 "UDP responses sent": {"query", "respondessent", false, "udp", metadata.Counter, ""}, 598 "UnknownError": {"error", "errors", false, "unknownerror", metadata.Counter, "The number of errors that the DNS server has processed. The 'Type' metric is the type of error that the DNS server has processed."}, 599 "Unsecure responses": {"recursion", "responseunsecure", false, "", metadata.Counter, ""}, 600 "Update aging off": {"domainservices", "updateagingoff", false, "", metadata.Counter, ""}, 601 "Update aging on": {"domainservices", "updateagingon", false, "", metadata.Counter, ""}, 602 "Update aging refresh": {"domainservices", "updateaginrefresh", false, "", metadata.Counter, ""}, 603 "Update blocks allocated": {"memory", "update", false, "updateblocksallocated", metadata.Gauge, "Memory statistics for Name updates."}, 604 "Update blocks freed": {"memory", "update", false, "updateblocksfreed", metadata.Gauge, "Memory statistics for Name updates."}, 605 "Update blocks in use": {"memory", "update", false, "updateblocksinuse", metadata.Gauge, "Memory statistics for Name updates."}, 606 "Update from admin": {"domainservices", "updateadmin", false, "", metadata.Counter, ""}, 607 "Update from auto config": {"domainservices", "updateautoconfig", false, "", metadata.Counter, ""}, 608 "Update from packet": {"domainservices", "updatepacket", false, "", metadata.Counter, ""}, 609 "Update from packet (precon)": {"domainservices", "updatepacketprecon", false, "", metadata.Counter, ""}, 610 "Update from scavenge": {"domainservices", "updatescavenge", false, "", metadata.Counter, ""}, 611 "Update List blocks allocated": {"memory", "updatelist", false, "updatelistblocksallocated", metadata.Gauge, "Memory statistics for Record update list."}, 612 "Update List blocks freed": {"memory", "updatelist", false, "updatelistblocksfreed", metadata.Gauge, "Memory statistics for Record update list."}, 613 "Update List blocks in use": {"memory", "updatelist", false, "updatelistblocksinuse", metadata.Gauge, "Memory statistics for Record update list."}, 614 "Update List memory": {"memory", "updatelist", false, "updatelistmemory", metadata.Gauge, "Memory statistics for Record update list."}, 615 "Update lists": {"domainservices", "updatelists", false, "", metadata.Counter, ""}, 616 "Update memory": {"memory", "updatememory", false, "", metadata.Gauge, ""}, 617 "Update nodes": {"domainservices", "updatenodes", false, "", metadata.Counter, ""}, 618 "Update nodes read": {"domainservices", "dsupdatenodesread", false, "", metadata.Counter, ""}, 619 "Update queries": {"query", "queries", false, "update", metadata.Counter, "The number of queries received by the DNS server. The 'Type' tag indicates the type of request that was received (A, MX, PTR, etc)."}, 620 "Update record changes": {"domainservices", "updaterecordchange", false, "", metadata.Counter, ""}, 621 "Update records read": {"domainservices", "dsupdaterecordsread", false, "", metadata.Counter, ""}, 622 "Update searches": {"domainservices", "dsupdatesearches", false, "", metadata.Counter, ""}, 623 "Update tombstones": {"domainservices", "updatetombstones", false, "", metadata.Counter, ""}, 624 "Update writes": {"domainservices", "updatewrites", false, "", metadata.Counter, ""}, 625 "Updates completed": {"update", "completed", true, "", metadata.Counter, ""}, 626 "Updates empty (precon only)": {"update", "empty", true, "", metadata.Counter, ""}, 627 "Updates for A type": {"update", "updates", true, "a", metadata.Counter, "The number of dynamic updates that the DNS server has received. The 'Type' tag indicates the type of request that was received (e.g. A, MX, PTR, etc)"}, 628 "Updates for A6 type": {"update", "updates", true, "a6", metadata.Counter, "The number of dynamic updates that the DNS server has received. The 'Type' tag indicates the type of request that was received (e.g. A, MX, PTR, etc)"}, 629 "Updates for AAAA type": {"update", "updates", true, "aaaa", metadata.Counter, "The number of dynamic updates that the DNS server has received. The 'Type' tag indicates the type of request that was received (e.g. A, MX, PTR, etc)"}, 630 "Updates for AFSDB type": {"update", "updates", true, "afsdb", metadata.Counter, "The number of dynamic updates that the DNS server has received. The 'Type' tag indicates the type of request that was received (e.g. A, MX, PTR, etc)"}, 631 "Updates for ATMA type": {"update", "updates", true, "atma", metadata.Counter, "The number of dynamic updates that the DNS server has received. The 'Type' tag indicates the type of request that was received (e.g. A, MX, PTR, etc)"}, 632 "Updates for CERT type": {"update", "updates", true, "cert", metadata.Counter, "The number of dynamic updates that the DNS server has received. The 'Type' tag indicates the type of request that was received (e.g. A, MX, PTR, etc)"}, 633 "Updates for CNAME type": {"update", "updates", true, "cname", metadata.Counter, "The number of dynamic updates that the DNS server has received. The 'Type' tag indicates the type of request that was received (e.g. A, MX, PTR, etc)"}, 634 "Updates for EID type": {"update", "updates", true, "eid", metadata.Counter, "The number of dynamic updates that the DNS server has received. The 'Type' tag indicates the type of request that was received (e.g. A, MX, PTR, etc)"}, 635 "Updates for GPOS type": {"update", "updates", true, "gpos", metadata.Counter, "The number of dynamic updates that the DNS server has received. The 'Type' tag indicates the type of request that was received (e.g. A, MX, PTR, etc)"}, 636 "Updates for HINFO type": {"update", "updates", true, "hinfo", metadata.Counter, "The number of dynamic updates that the DNS server has received. The 'Type' tag indicates the type of request that was received (e.g. A, MX, PTR, etc)"}, 637 "Updates for ISDN type": {"update", "updates", true, "isdn", metadata.Counter, "The number of dynamic updates that the DNS server has received. The 'Type' tag indicates the type of request that was received (e.g. A, MX, PTR, etc)"}, 638 "Updates for KEY type": {"update", "updates", true, "key", metadata.Counter, "The number of dynamic updates that the DNS server has received. The 'Type' tag indicates the type of request that was received (e.g. A, MX, PTR, etc)"}, 639 "Updates for KX type": {"update", "updates", true, "kx", metadata.Counter, "The number of dynamic updates that the DNS server has received. The 'Type' tag indicates the type of request that was received (e.g. A, MX, PTR, etc)"}, 640 "Updates for LOC type": {"update", "updates", true, "loc", metadata.Counter, "The number of dynamic updates that the DNS server has received. The 'Type' tag indicates the type of request that was received (e.g. A, MX, PTR, etc)"}, 641 "Updates for MB type": {"update", "updates", true, "mb", metadata.Counter, "The number of dynamic updates that the DNS server has received. The 'Type' tag indicates the type of request that was received (e.g. A, MX, PTR, etc)"}, 642 "Updates for MG type": {"update", "updates", true, "mg", metadata.Counter, "The number of dynamic updates that the DNS server has received. The 'Type' tag indicates the type of request that was received (e.g. A, MX, PTR, etc)"}, 643 "Updates for MINFO type": {"update", "updates", true, "minfo", metadata.Counter, "The number of dynamic updates that the DNS server has received. The 'Type' tag indicates the type of request that was received (e.g. A, MX, PTR, etc)"}, 644 "Updates for mixed type": {"update", "updates", true, "mixed", metadata.Counter, "The number of dynamic updates that the DNS server has received. The 'Type' tag indicates the type of request that was received (e.g. A, MX, PTR, etc)"}, 645 "Updates for MR type": {"update", "updates", true, "mr", metadata.Counter, "The number of dynamic updates that the DNS server has received. The 'Type' tag indicates the type of request that was received (e.g. A, MX, PTR, etc)"}, 646 "Updates for MX type": {"update", "updates", true, "mx", metadata.Counter, "The number of dynamic updates that the DNS server has received. The 'Type' tag indicates the type of request that was received (e.g. A, MX, PTR, etc)"}, 647 "Updates for NAPTR type": {"update", "updates", true, "naptr", metadata.Counter, "The number of dynamic updates that the DNS server has received. The 'Type' tag indicates the type of request that was received (e.g. A, MX, PTR, etc)"}, 648 "Updates for NIMLOC type": {"update", "updates", true, "nimloc", metadata.Counter, "The number of dynamic updates that the DNS server has received. The 'Type' tag indicates the type of request that was received (e.g. A, MX, PTR, etc)"}, 649 "Updates for NS type": {"update", "updates", true, "ns", metadata.Counter, "The number of dynamic updates that the DNS server has received. The 'Type' tag indicates the type of request that was received (e.g. A, MX, PTR, etc)"}, 650 "Updates for NSAP type": {"update", "updates", true, "nsap", metadata.Counter, "The number of dynamic updates that the DNS server has received. The 'Type' tag indicates the type of request that was received (e.g. A, MX, PTR, etc)"}, 651 "Updates for NSAPPTR type": {"update", "updates", true, "nsapptr", metadata.Counter, "The number of dynamic updates that the DNS server has received. The 'Type' tag indicates the type of request that was received (e.g. A, MX, PTR, etc)"}, 652 "Updates for NULL type": {"update", "updates", true, "null", metadata.Counter, "The number of dynamic updates that the DNS server has received. The 'Type' tag indicates the type of request that was received (e.g. A, MX, PTR, etc)"}, 653 "Updates for NXT type": {"update", "updates", true, "nxt", metadata.Counter, "The number of dynamic updates that the DNS server has received. The 'Type' tag indicates the type of request that was received (e.g. A, MX, PTR, etc)"}, 654 "Updates for PTR type": {"update", "updates", true, "ptr", metadata.Counter, "The number of dynamic updates that the DNS server has received. The 'Type' tag indicates the type of request that was received (e.g. A, MX, PTR, etc)"}, 655 "Updates for PX type": {"update", "updates", true, "px", metadata.Counter, "The number of dynamic updates that the DNS server has received. The 'Type' tag indicates the type of request that was received (e.g. A, MX, PTR, etc)"}, 656 "Updates for RP type": {"update", "updates", true, "rp", metadata.Counter, "The number of dynamic updates that the DNS server has received. The 'Type' tag indicates the type of request that was received (e.g. A, MX, PTR, etc)"}, 657 "Updates for RT type": {"update", "updates", true, "rt", metadata.Counter, "The number of dynamic updates that the DNS server has received. The 'Type' tag indicates the type of request that was received (e.g. A, MX, PTR, etc)"}, 658 "Updates for SIG type": {"update", "updates", true, "sig", metadata.Counter, "The number of dynamic updates that the DNS server has received. The 'Type' tag indicates the type of request that was received (e.g. A, MX, PTR, etc)"}, 659 "Updates for SOA type": {"update", "updates", true, "soa", metadata.Counter, "The number of dynamic updates that the DNS server has received. The 'Type' tag indicates the type of request that was received (e.g. A, MX, PTR, etc)"}, 660 "Updates for SRV type": {"update", "updates", true, "srv", metadata.Counter, "The number of dynamic updates that the DNS server has received. The 'Type' tag indicates the type of request that was received (e.g. A, MX, PTR, etc)"}, 661 "Updates for TXT type": {"update", "updates", true, "txt", metadata.Counter, "The number of dynamic updates that the DNS server has received. The 'Type' tag indicates the type of request that was received (e.g. A, MX, PTR, etc)"}, 662 "Updates for unknown type": {"update", "updates", true, "unknown", metadata.Counter, "The number of dynamic updates that the DNS server has received. The 'Type' tag indicates the type of request that was received (e.g. A, MX, PTR, etc)"}, 663 "Updates for WKS type": {"update", "updates", true, "wks", metadata.Counter, "The number of dynamic updates that the DNS server has received. The 'Type' tag indicates the type of request that was received (e.g. A, MX, PTR, etc)"}, 664 "Updates for X25 type": {"update", "updates", true, "x25", metadata.Counter, "The number of dynamic updates that the DNS server has received. The 'Type' tag indicates the type of request that was received (e.g. A, MX, PTR, etc)"}, 665 "Updates for ZERO type": {"update", "updates", true, "zero", metadata.Counter, "The number of dynamic updates that the DNS server has received. The 'Type' tag indicates the type of request that was received (e.g. A, MX, PTR, etc)"}, 666 "Updates forwarded": {"update", "forwards", true, "", metadata.Counter, ""}, 667 "Updates forwarded via TCP": {"update", "tcpforwards", true, "", metadata.Counter, ""}, 668 "Updates in queue": {"update", "inqueue", true, "", metadata.Counter, ""}, 669 "Updates NoOps (duplicates)": {"update", "noops", true, "", metadata.Counter, ""}, 670 "Updates received": {"update", "received", true, "", metadata.Counter, ""}, 671 "Updates rejected": {"update", "rejected", true, "", metadata.Counter, ""}, 672 "Updates rejected with FormError": {"update", "rejections", true, "rejectedwithformerror", metadata.Counter, "The number of updates that the DNS server rejected. The 'Type' tag indicates the reason that the update was rejected."}, 673 "Updates rejected with NameError": {"update", "rejections", true, "rejectedwithnameerror", metadata.Counter, "The number of updates that the DNS server rejected. The 'Type' tag indicates the reason that the update was rejected."}, 674 "Updates rejected with NotAuth": {"update", "rejections", true, "rejectedwithnotauth", metadata.Counter, "The number of updates that the DNS server rejected. The 'Type' tag indicates the reason that the update was rejected."}, 675 "Updates rejected with NotImpl": {"update", "rejections", true, "rejectedwithnotimpl", metadata.Counter, "The number of updates that the DNS server rejected. The 'Type' tag indicates the reason that the update was rejected."}, 676 "Updates rejected with NotZone": {"update", "rejections", true, "rejectedwithnotzone", metadata.Counter, "The number of updates that the DNS server rejected. The 'Type' tag indicates the reason that the update was rejected."}, 677 "Updates rejected with NxRRSet": {"update", "rejections", true, "rejectedwithnxrrset", metadata.Counter, "The number of updates that the DNS server rejected. The 'Type' tag indicates the reason that the update was rejected."}, 678 "Updates rejected with Refused": {"update", "rejections", true, "rejectedwithrefused", metadata.Counter, "The number of updates that the DNS server rejected. The 'Type' tag indicates the reason that the update was rejected."}, 679 "Updates rejected with Refused (access denied)": {"update", "rejections", true, "rejectedwithrefusedaccessdenied", metadata.Counter, "The number of updates that the DNS server rejected. The 'Type' tag indicates the reason that the update was rejected."}, 680 "Updates rejected with Refused (nonsecure)": {"update", "rejections", true, "rejectedwithrefusednonsecure", metadata.Counter, "The number of updates that the DNS server rejected. The 'Type' tag indicates the reason that the update was rejected."}, 681 "Updates rejected with YxDomain": {"update", "rejections", true, "rejectedwithyxdomain", metadata.Counter, "The number of updates that the DNS server rejected. The 'Type' tag indicates the reason that the update was rejected."}, 682 "Updates rejected with YxRRSet": {"update", "rejections", true, "rejectedwithyxrrset", metadata.Counter, "The number of updates that the DNS server rejected. The 'Type' tag indicates the reason that the update was rejected."}, 683 "Updates retried": {"update", "retried", true, "", metadata.Counter, ""}, 684 "Updates suppressed": {"domainservices", "updatesuppressed", false, "", metadata.Counter, ""}, 685 "Updates timed out": {"update", "timedout", true, "", metadata.Counter, ""}, 686 "Verify failed TSIGs": {"security", "verifyfailedtsigs", false, "", metadata.Counter, ""}, 687 "Verify success TSIGs": {"security", "verifytsigverifysuccess", false, "", metadata.Counter, ""}, 688 "WINS forward lookup responses": {"wins", "winsresponses", false, "", metadata.Counter, ""}, 689 "WINS forward lookups": {"wins", "winslookups", false, "", metadata.Counter, ""}, 690 "WINS reverse lookup responses": {"wins", "winsreverseresponses", false, "", metadata.Counter, ""}, 691 "WINS reverse lookups": {"wins", "winsreverselookups", false, "", metadata.Counter, ""}, 692 "YxDomain": {"error", "errors", false, "yxdomain", metadata.Counter, "The number of updates that the DNS server rejected. The 'Type' tag indicates the reason that the update was rejected."}, 693 "YxRRSet": {"error", "errors", false, "yxrrset", metadata.Counter, "The number of errors that the DNS server has processed. The 'Type' metric is the type of error that the DNS server has processed."}, 694 "Zone blocks allocated": {"memory", "zone", false, "zoneblocksallocated", metadata.Gauge, "Memory statistics for Zone operations."}, 695 "Zone blocks freed": {"memory", "zone", false, "zoneblocksfreed", metadata.Gauge, "Memory statistics for Zone operations."}, 696 "Zone blocks in use": {"memory", "zone", false, "zoneblocksinuse", metadata.Gauge, "Memory statistics for Zone operations."}, 697 "Zone memory": {"memory", "zone", false, "zonememory", metadata.Gauge, "Memory statistics for Zone operations."}, 698 }