- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- named mesgs in syslog
Operating System - HP-UX
1825002
Members
2601
Online
109678
Solutions
Forums
Categories
Company
Local Language
back
Forums
Discussions
Forums
- Data Protection and Retention
- Entry Storage Systems
- Legacy
- Midrange and Enterprise Storage
- Storage Networking
- HPE Nimble Storage
Discussions
Forums
Discussions
Discussions
Discussions
Forums
Discussions
back
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
- BladeSystem Infrastructure and Application Solutions
- Appliance Servers
- Alpha Servers
- BackOffice Products
- Internet Products
- HPE 9000 and HPE e3000 Servers
- Networking
- Netservers
- Secure OS Software for Linux
- Server Management (Insight Manager 7)
- Windows Server 2003
- Operating System - Tru64 Unix
- ProLiant Deployment and Provisioning
- Linux-Based Community / Regional
- Microsoft System Center Integration
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Blogs
Information
Community
Resources
Community Language
Language
Forums
Blogs
Go to solution
Topic Options
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-08-2002 01:54 AM
04-08-2002 01:54 AM
There are some "named" statistics messages in syslog . Is there some document which describe the following/parameters
Aug 30 08:54:25 bb-dns2 named[447]: Cleaned cache of 0 RRs
Aug 30 08:54:25 bb-dns2 named[447]: USAGE 999132865 996638066 CPU=75.74u/128.95s CHILDCPU=0.06u/0.04s
Aug 30 08:54:25 bb-dns2 named[447]: NSTATS 999132865 996638066 A=24006 SOA=8326 PTR=4967 MX=2 AXFR=2 ANY=3
Aug 30 08:54:25 bb-dns2 named[447]: XSTATS 999132865 996638066 RR=129900 RNXD=1 RFwdR=30 RDupR=1 RFail=0 RFErr=0 RErr=0 RAXFR=2 RLame=0 ROpts=0 SSysQ=129872 SAns=37282 SFwdQ=27 SDupQ=86 SErr=0 RQ=37306 RIQ=0 RFwdQ=27 RDupQ=9 RTCP=4 SFwdR=30 SFail=12 SFErr=0 SNaAns=17 SNXD=5207
Aug 30 08:54:25 bb-dns2 named[447]: Cleaned cache of 0 RRs
Aug 30 08:54:25 bb-dns2 named[447]: USAGE 999132865 996638066 CPU=75.74u/128.95s CHILDCPU=0.06u/0.04s
Aug 30 08:54:25 bb-dns2 named[447]: NSTATS 999132865 996638066 A=24006 SOA=8326 PTR=4967 MX=2 AXFR=2 ANY=3
Aug 30 08:54:25 bb-dns2 named[447]: XSTATS 999132865 996638066 RR=129900 RNXD=1 RFwdR=30 RDupR=1 RFail=0 RFErr=0 RErr=0 RAXFR=2 RLame=0 ROpts=0 SSysQ=129872 SAns=37282 SFwdQ=27 SDupQ=86 SErr=0 RQ=37306 RIQ=0 RFwdQ=27 RDupQ=9 RTCP=4 SFwdR=30 SFail=12 SFErr=0 SNaAns=17 SNXD=5207
Solved! Go to Solution.
1 REPLY 1
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-08-2002 02:21 AM
04-08-2002 02:21 AM
Solution
The only 'official' documentation I've seen is the source code (but I haven't really looked for anything else :) Here's what they mean:
>>Aug 30 08:54:25 bb-dns2 named[447]: USAGE 999132865 996638066 CPU=75.74u/128.95s CHILDCPU=0.06u/0.04s
The first two are the current time and named process start time respectively. Then you have the user and system mode CPU usage.
>>Aug 30 08:54:25 bb-dns2 named[447]: NSTATS 999132865 996638066 A=24006 SOA=8326 PTR=4967 MX=2 AXFR=2 ANY=3
The number of queries the name server has responded to, by type.
>>Aug 30 08:54:25 bb-dns2 named[447]: XSTATS 999132865 996638066 RR=129900 RNXD=1 RFwdR=30 RDupR=1 RFail=0 RFErr=0 RErr=0 RAXFR=2 RLame=0 ROpts=0 SSysQ=129872 SAns=37282 SFwdQ=27 SDupQ=86 SErr=0 RQ=37306 RIQ=0 RFwdQ=27 RDupQ=9 RTCP=4 SFwdR=30 SFail=12 SFErr=0 SNaAns=17 SNXD=5207
These are the BIND transaction statistics. Straight out of the code:
static const char *statNames[nssLast] = {
"RR", /* sent us an answer */
"RNXD", /* sent us a negative response */
"RFwdR", /* sent us a response we had to fwd */
"RDupR", /* sent us an extra answer */
"RFail", /* sent us a SERVFAIL */
"RFErr", /* sent us a FORMERR */
"RErr", /* sent us some other error */
"RAXFR", /* sent us an AXFR */
"RLame", /* sent us a lame delegation */
"ROpts", /* sent us some IP options */
"SSysQ", /* sent them a sysquery */
"SAns", /* sent them an answer */
"SFwdQ", /* fwdd a query to them */
"SDupQ", /* sent them a retry */
"SErr", /* sent failed (in sendto) */
"RQ", /* sent us a query */
"RIQ", /* sent us an inverse query */
"RFwdQ", /* sent us a query we had to fwd */
"RDupQ", /* sent us a retry */
"RTCP", /* sent us a query using TCP */
"SFwdR", /* fwdd a response to them */
"SFail", /* sent them a SERVFAIL */
"SFErr", /* sent them a FORMERR */
"SNaAns", /* sent them a non autoritative answer */
"SNXD", /* sent them a negative response */
};
Regards,
Steve
>>Aug 30 08:54:25 bb-dns2 named[447]: USAGE 999132865 996638066 CPU=75.74u/128.95s CHILDCPU=0.06u/0.04s
The first two are the current time and named process start time respectively. Then you have the user and system mode CPU usage.
>>Aug 30 08:54:25 bb-dns2 named[447]: NSTATS 999132865 996638066 A=24006 SOA=8326 PTR=4967 MX=2 AXFR=2 ANY=3
The number of queries the name server has responded to, by type.
>>Aug 30 08:54:25 bb-dns2 named[447]: XSTATS 999132865 996638066 RR=129900 RNXD=1 RFwdR=30 RDupR=1 RFail=0 RFErr=0 RErr=0 RAXFR=2 RLame=0 ROpts=0 SSysQ=129872 SAns=37282 SFwdQ=27 SDupQ=86 SErr=0 RQ=37306 RIQ=0 RFwdQ=27 RDupQ=9 RTCP=4 SFwdR=30 SFail=12 SFErr=0 SNaAns=17 SNXD=5207
These are the BIND transaction statistics. Straight out of the code:
static const char *statNames[nssLast] = {
"RR", /* sent us an answer */
"RNXD", /* sent us a negative response */
"RFwdR", /* sent us a response we had to fwd */
"RDupR", /* sent us an extra answer */
"RFail", /* sent us a SERVFAIL */
"RFErr", /* sent us a FORMERR */
"RErr", /* sent us some other error */
"RAXFR", /* sent us an AXFR */
"RLame", /* sent us a lame delegation */
"ROpts", /* sent us some IP options */
"SSysQ", /* sent them a sysquery */
"SAns", /* sent them an answer */
"SFwdQ", /* fwdd a query to them */
"SDupQ", /* sent them a retry */
"SErr", /* sent failed (in sendto) */
"RQ", /* sent us a query */
"RIQ", /* sent us an inverse query */
"RFwdQ", /* sent us a query we had to fwd */
"RDupQ", /* sent us a retry */
"RTCP", /* sent us a query using TCP */
"SFwdR", /* fwdd a response to them */
"SFail", /* sent them a SERVFAIL */
"SFErr", /* sent them a FORMERR */
"SNaAns", /* sent them a non autoritative answer */
"SNXD", /* sent them a negative response */
};
Regards,
Steve
The opinions expressed above are the personal opinions of the authors, not of Hewlett Packard Enterprise. By using this site, you accept the Terms of Use and Rules of Participation.
Company
Learn About
News and Events
Support
© Copyright 2025 Hewlett Packard Enterprise Development LP