<?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: ana/sys sho proc/chan in Operating System - OpenVMS</title>
    <link>https://community.hpe.com/t5/operating-system-openvms/ana-sys-sho-proc-chan/m-p/3781575#M76139</link>
    <description>The memory cost of increasing CHANNELCNT is very low (but does need a reboot) so it may be worth increasing it anyway.</description>
    <pubDate>Fri, 05 May 2006 08:06:50 GMT</pubDate>
    <dc:creator>Ian Miller.</dc:creator>
    <dc:date>2006-05-05T08:06:50Z</dc:date>
    <item>
      <title>ana/sys sho proc/chan</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/ana-sys-sho-proc-chan/m-p/3781568#M76132</link>
      <description>How do i get to know the number of open channels of each and every running process? Using "analyze/system show proc/channel" is impractical on systems where a huge number of processes is running. Is there a way to get this information from a C program?</description>
      <pubDate>Wed, 03 May 2006 03:57:52 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/ana-sys-sho-proc-chan/m-p/3781568#M76132</guid>
      <dc:creator>Maurizio Savoia</dc:creator>
      <dc:date>2006-05-03T03:57:52Z</dc:date>
    </item>
    <item>
      <title>Re: ana/sys sho proc/chan</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/ana-sys-sho-proc-chan/m-p/3781569#M76133</link>
      <description>You could loop through all processes and use $GETJPI. &lt;BR /&gt;$GETJPI item FILCNT will give you open file quota remaining to subtracting this from FILLM &lt;BR /&gt;will give you number of files. However this does not count channels open to devices not files e.g terminals and mailboxes.&lt;BR /&gt;&lt;BR /&gt;What problem are you trying to solve?</description>
      <pubDate>Wed, 03 May 2006 04:17:38 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/ana-sys-sho-proc-chan/m-p/3781569#M76133</guid>
      <dc:creator>Ian Miller.</dc:creator>
      <dc:date>2006-05-03T04:17:38Z</dc:date>
    </item>
    <item>
      <title>Re: ana/sys sho proc/chan</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/ana-sys-sho-proc-chan/m-p/3781570#M76134</link>
      <description>Maurizio,&lt;BR /&gt;&lt;BR /&gt;you can send the SDA output to a file:&lt;BR /&gt;&lt;BR /&gt;$ ANAL/SYS&lt;BR /&gt;SDA&amp;gt; SET OUT x.x&lt;BR /&gt;SDA&amp;gt; SHOW PROC/CHAN ALL&lt;BR /&gt;SDA&amp;gt; EXIT&lt;BR /&gt;&lt;BR /&gt;$ SEA x.x total&lt;BR /&gt;&lt;BR /&gt;Like Ian said, what is your problem ?&lt;BR /&gt;&lt;BR /&gt;Volker.</description>
      <pubDate>Wed, 03 May 2006 04:23:22 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/ana-sys-sho-proc-chan/m-p/3781570#M76134</guid>
      <dc:creator>Volker Halle</dc:creator>
      <dc:date>2006-05-03T04:23:22Z</dc:date>
    </item>
    <item>
      <title>Re: ana/sys sho proc/chan</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/ana-sys-sho-proc-chan/m-p/3781571#M76135</link>
      <description>Volker's answer is the best, sending the output from &lt;BR /&gt;SDA&amp;gt; sh proc/chan all &lt;BR /&gt;to a file, but it depends on the pageable CCB area being in memory for each process.  Not likely on a busy system.&lt;BR /&gt;&lt;BR /&gt;Usually when someone asks this question, they're attempting to see how many channels are being used system-wide, their (incorrect) assumption is that CHANNELCNT is per system rather than per process.&lt;BR /&gt;&lt;BR /&gt;Why do you need a total?</description>
      <pubDate>Thu, 04 May 2006 09:48:29 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/ana-sys-sho-proc-chan/m-p/3781571#M76135</guid>
      <dc:creator>Jeff Chisholm</dc:creator>
      <dc:date>2006-05-04T09:48:29Z</dc:date>
    </item>
    <item>
      <title>Re: ana/sys sho proc/chan</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/ana-sys-sho-proc-chan/m-p/3781572#M76136</link>
      <description>Jeff, as SDA sends a kernal AST to the target process to obtain the ccb table then I don't think it being pageable is an issue.&lt;BR /&gt;&lt;BR /&gt;The issue is why does Maurizio want this information?</description>
      <pubDate>Thu, 04 May 2006 12:38:59 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/ana-sys-sho-proc-chan/m-p/3781572#M76136</guid>
      <dc:creator>Ian Miller.</dc:creator>
      <dc:date>2006-05-04T12:38:59Z</dc:date>
    </item>
    <item>
      <title>Re: ana/sys sho proc/chan</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/ana-sys-sho-proc-chan/m-p/3781573#M76137</link>
      <description>You're right, thanks.  I've just gone looking for channels in too many crash dumps.  Same SDA, different context.</description>
      <pubDate>Thu, 04 May 2006 12:45:29 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/ana-sys-sho-proc-chan/m-p/3781573#M76137</guid>
      <dc:creator>Jeff Chisholm</dc:creator>
      <dc:date>2006-05-04T12:45:29Z</dc:date>
    </item>
    <item>
      <title>Re: ana/sys sho proc/chan</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/ana-sys-sho-proc-chan/m-p/3781574#M76138</link>
      <description>The reason why I need this info is that some ACMS servers behaved badly; one of the hypothesis made by our development team was that the channelcnt parameter was underestimated, so I needed a per-process total of the number of I/O channel being used by the server processes. I adopted the "SDA&amp;gt; sho proc/chan all" solution to monitor the number of channels in use.</description>
      <pubDate>Fri, 05 May 2006 06:26:22 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/ana-sys-sho-proc-chan/m-p/3781574#M76138</guid>
      <dc:creator>Maurizio Savoia</dc:creator>
      <dc:date>2006-05-05T06:26:22Z</dc:date>
    </item>
    <item>
      <title>Re: ana/sys sho proc/chan</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/ana-sys-sho-proc-chan/m-p/3781575#M76139</link>
      <description>The memory cost of increasing CHANNELCNT is very low (but does need a reboot) so it may be worth increasing it anyway.</description>
      <pubDate>Fri, 05 May 2006 08:06:50 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/ana-sys-sho-proc-chan/m-p/3781575#M76139</guid>
      <dc:creator>Ian Miller.</dc:creator>
      <dc:date>2006-05-05T08:06:50Z</dc:date>
    </item>
  </channel>
</rss>

