JANUS SUFFIXSTAT: Difference between revisions

From m204wiki
Jump to navigation Jump to search
Create JANUS SUFFIXSTAT page
 
Use <pre> for example to avoid MediaWiki * list/bold parsing
 
Line 31: Line 31:
==Example==
==Example==
<p class="code">JANUS SUFFIXSTAT MYPORT</p>
<p class="code">JANUS SUFFIXSTAT MYPORT</p>
<p class="output">Sfx DBS Name                          Conn InUse
<pre class="output">
Sfx DBS Name                          Conn InUse
A  DBSALPHA                            5    2
A  DBSALPHA                            5    2
B  DBSBETA                              3    0
B  DBSBETA                              3    0
*  *Total*                              8    2
*  *Total*                              8    2
</p>
</pre>


==See also==
==See also==

Latest revision as of 17:31, 29 May 2026

JANUS SUFFIXSTAT: Display suffix connection statistics

The JANUS SUFFIXSTAT command displays per-suffix connection statistics for an IMAGINET port that has APSYSUFFIX defined.

Syntax

JANUS SUFFIXSTAT [portname]

Where:

  • portname is the name of a JANUS DEFINE IMAGINET port with APSYSUFFIX set. If omitted (or specified as *), statistics are displayed for all matching ports.

Synonyms

JANUS SUFFSTAT is a synonym for JANUS SUFFIXSTAT.

Usage

For each active suffix mapping registered on the port (via JANUS ADDSUFFIX), the command prints a row with the following columns:

  • Sfx — the suffix character.
  • DBS Name — the DBS instance name associated with the suffix (up to 31 characters are displayed).
  • Conn — the total number of broker connections currently open for the suffix (in-use plus available).
  • InUse — the number of those connections that are currently in use by a request.

A final *Total* row reports the column totals for the port.

If the port is not an IMAGINET port, it is silently skipped. If the port is an IMAGINET port but does not have APSYSUFFIX set, error M204.3037 is issued.

This is new as of Model 204 version 8.0.

Example

JANUS SUFFIXSTAT MYPORT

Sfx DBS Name                          Conn InUse
A   DBSALPHA                             5     2
B   DBSBETA                              3     0
*   *Total*                              8     2

See also