<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Zeroing SCACP VC/CHANNEL error counts? in Operating System - OpenVMS</title>
    <link>https://community.hpe.com/t5/operating-system-openvms/zeroing-scacp-vc-channel-error-counts/m-p/5334407#M45463</link>
    <description>&lt;P&gt;Thanks for the suggestion.&amp;nbsp; I'm running the command file now.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;When I first tried the /INTERVAL flag, I didn't get any deltas.&amp;nbsp; I have since realized that the flag doesn't work over separate invocations of SCACP.&amp;nbsp; I used SYSMAN to run SHOW VC/COUNT across the cluster, capturing the output to a file.&amp;nbsp; Then, sometime later, I reran the command.&amp;nbsp; Separate invocation of the SCACP command on each machine, so no deltas :-(&amp;nbsp; The on-line documentation for /INTERVAL might benefit from a little further explanation.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I think my best bet is to write a short command file to invoke SYSMAN once a night, run the SCACP SHOW VC and SHOW CHANNEL commands, write the output to a file, and maintain "tonight's" file and "last night's" file.&amp;nbsp; A simple program can then produces the delta values from the two files.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Gareth&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Fri, 16 Sep 2011 15:15:52 GMT</pubDate>
    <dc:creator>Graff</dc:creator>
    <dc:date>2011-09-16T15:15:52Z</dc:date>
    <item>
      <title>Zeroing SCACP VC/CHANNEL error counts?</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/zeroing-scacp-vc-channel-error-counts/m-p/5333655#M45461</link>
      <description>&lt;P&gt;I had some problems on our internal network caused by misconfiguration of some of the interfaces in our ten-node V8.3 Alpha cluster.&amp;nbsp; These misconfigurations are, I believe, now fixed.&amp;nbsp; I would like to confirm this belief by checking the error counts in the SHOW VC/ALL and SHOW CHANNEL/ALL output from SCACP.&amp;nbsp; Unfortunately, the error counts displayed by these commands are large.&amp;nbsp; I would like to zero those error counts, so that in 24 hours when I rexamine the counts, I see "20" and don't have to compare two numbers in the millions (!), but I don't know how (to zero the counts, not subtract two numbers...).&amp;nbsp; I know about the SET DEVICE/RESET=ERROR_COUNT command, but that didn't reset the SCACP error counts.&amp;nbsp; I scanned the "New Features and Documentation Overview" volumes for the past few OS releases, but didn't see anything relevant.&amp;nbsp; Rebooting the cluster isn't an option.&amp;nbsp; Is there a documented way to reset those counts?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Gareth&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 16 Sep 2011 03:25:12 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/zeroing-scacp-vc-channel-error-counts/m-p/5333655#M45461</guid>
      <dc:creator>Graff</dc:creator>
      <dc:date>2011-09-16T03:25:12Z</dc:date>
    </item>
    <item>
      <title>Re: Zeroing SCACP VC/CHANNEL error counts?</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/zeroing-scacp-vc-channel-error-counts/m-p/5333685#M45462</link>
      <description>&lt;P&gt;Gareth,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; I don't believe there's a documented way to reset the counters. There's probably a way you could do it by hacking system data structures (not recommended). You wouldn't have believed the trouble it took to get SET DEVICE/RESET=ERROR_COUNT implemented! There are still folk who consider it an abomination.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp; You could write some code to parse the output, but another possibility is to use the /INTERVAL qualifier to display deltas as well as absolute counts. If you don't want to leave an interactive&amp;nbsp;SCACP session open for a long time, try something like the attached procedure. The idea is to generate a sequence of commands at regular intervals, piped into a process running&amp;nbsp;SCACP. Run it as a batch job, the log file will contain timestamped samples taken every 10 minutes, with the absolute number and the delta. Use parameters to adjust interval and/or number of samples. Small matter of text processing to convert it into a T4 file.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 16 Sep 2011 04:34:31 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/zeroing-scacp-vc-channel-error-counts/m-p/5333685#M45462</guid>
      <dc:creator>John Gillings</dc:creator>
      <dc:date>2011-09-16T04:34:31Z</dc:date>
    </item>
    <item>
      <title>Re: Zeroing SCACP VC/CHANNEL error counts?</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/zeroing-scacp-vc-channel-error-counts/m-p/5334407#M45463</link>
      <description>&lt;P&gt;Thanks for the suggestion.&amp;nbsp; I'm running the command file now.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;When I first tried the /INTERVAL flag, I didn't get any deltas.&amp;nbsp; I have since realized that the flag doesn't work over separate invocations of SCACP.&amp;nbsp; I used SYSMAN to run SHOW VC/COUNT across the cluster, capturing the output to a file.&amp;nbsp; Then, sometime later, I reran the command.&amp;nbsp; Separate invocation of the SCACP command on each machine, so no deltas :-(&amp;nbsp; The on-line documentation for /INTERVAL might benefit from a little further explanation.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I think my best bet is to write a short command file to invoke SYSMAN once a night, run the SCACP SHOW VC and SHOW CHANNEL commands, write the output to a file, and maintain "tonight's" file and "last night's" file.&amp;nbsp; A simple program can then produces the delta values from the two files.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Gareth&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 16 Sep 2011 15:15:52 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/zeroing-scacp-vc-channel-error-counts/m-p/5334407#M45463</guid>
      <dc:creator>Graff</dc:creator>
      <dc:date>2011-09-16T15:15:52Z</dc:date>
    </item>
  </channel>
</rss>

