Interface SentinelSs7Usage

  • All Superinterfaces:
    com.opencloud.sentinel.stats.SentinelCoreUsage, com.opencloud.rhino.facilities.usage.UsageParametersInterface

    public interface SentinelSs7Usage
    extends com.opencloud.sentinel.stats.SentinelCoreUsage
    Usage stats collected by the Sentinel SS7 service
    • Method Summary

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method Description
      void incrementAnsweredCalls​(long delta)
      Incremented by sentinel core whenever a call is answered
      void incrementAssistRequestInstructions​(long delta)
      Incremented by sentinel core whenever a assistRequestInstructions is received
      void incrementAssistRequestInstructionsUncorrelated​(long delta)
      Incremented by sentinel core whenever a assistRequestInstructions is received but was not correlated with an existing session
      void incrementCallLimitReached​(long delta)
      Incremented by sentinel core whenever a call ends because it reached the maximum configured call duration limit.
      void incrementCallsReleased​(long delta)
      Incremented by sentinel core whenever a session is released
      void incrementCdrNotWritten​(long delta)
      Incremented by sentinel core when a cdr is not written
      void incrementCdrWritten​(long delta)
      Incremented by sentinel core when a cdr is written
      void incrementCompletedWithinCredit​(long delta)
      Incremented by sentinel core whenever a call is disconnected normally (completed within credit)
      void incrementEndedBySwitchFault​(long delta)
      Incremented by sentinel core whenever a call fails due to an SS7 error
      void incrementInitialDP​(long delta)
      Incremented by sentinel core whenever a initialDP is received
      void incrementInitialDPSMS​(long delta)
      Incremented by sentinel core whenever a initialDPSMS is received
      void incrementInvalidRequestToRelayDialogWithNoInitialDP​(long delta)
      Incremented by sentinel core whenever the dialog is to be relayed, but not destination address could be found
      void incrementNoDestinationAddressToRelayDialog​(long delta)
      Incremented by sentinel core whenever the dialog is to be relayed, but not destination address could be found
      void incrementOpenRefuse​(long delta)
      Incremented by sentinel core whenever a call attempt is refused by Sentinel.
      void incrementOpenRequest​(long delta)
      Incremented by sentinel core whenever a call is attempted.
      void incrementRelayDialog​(long delta)
      Incremented by sentinel core whenever the dialog is to be relayed
      • Methods inherited from interface com.opencloud.sentinel.stats.SentinelCoreUsage

        incrementAbortSessionLocalAnswer, incrementCompletedOnExhaustingCredit, incrementCreditControlFailure, incrementCreditControlNotApplicable, incrementEndedByCCFailure, incrementInsufficientCredit, incrementReAuthLocalAnswer, incrementReAuthRequest, incrementTccExpiry, incrementValidityTimeExpiry
      • Methods inherited from interface com.opencloud.rhino.facilities.usage.UsageParametersInterface

        children, getOrCreateChild, getOrCreateChild, hasChild, key, name, parent, remove, type
    • Method Detail

      • incrementOpenRequest

        @UsageCounter(mapping=100,
                      description="Incremented by sentinel core whenever a call is attempted.",
                      shortName="",
                      unitLabel="")
        void incrementOpenRequest​(long delta)
        Incremented by sentinel core whenever a call is attempted.
        Parameters:
        delta - the increment
      • incrementOpenRefuse

        @UsageCounter(mapping=101,
                      description="Incremented by sentinel core whenever a call attempt is refused by Sentinel.",
                      shortName="",
                      unitLabel="")
        void incrementOpenRefuse​(long delta)
        Incremented by sentinel core whenever a call attempt is refused by Sentinel.
        Parameters:
        delta - the increment
      • incrementInitialDP

        @UsageCounter(mapping=102,
                      description="Incremented by sentinel core whenever a initialDP is received",
                      shortName="",
                      unitLabel="")
        void incrementInitialDP​(long delta)
        Incremented by sentinel core whenever a initialDP is received
        Parameters:
        delta - the increment
      • incrementInitialDPSMS

        @UsageCounter(mapping=103,
                      description="Incremented by sentinel core whenever a initialDPSMS is received",
                      shortName="",
                      unitLabel="")
        void incrementInitialDPSMS​(long delta)
        Incremented by sentinel core whenever a initialDPSMS is received
        Parameters:
        delta - the increment
      • incrementRelayDialog

        @UsageCounter(mapping=104,
                      description="Incremented by sentinel core whenever the dialog is to be relayed",
                      shortName="",
                      unitLabel="")
        void incrementRelayDialog​(long delta)
        Incremented by sentinel core whenever the dialog is to be relayed
        Parameters:
        delta - the increment
      • incrementNoDestinationAddressToRelayDialog

        @UsageCounter(mapping=105,
                      description="Incremented by sentinel core whenever the dialog is to be relayed, but not destination address could be found",
                      shortName="",
                      unitLabel="")
        void incrementNoDestinationAddressToRelayDialog​(long delta)
        Incremented by sentinel core whenever the dialog is to be relayed, but not destination address could be found
        Parameters:
        delta - the increment
      • incrementInvalidRequestToRelayDialogWithNoInitialDP

        @UsageCounter(mapping=106,
                      description="Incremented by sentinel core whenever the dialog is to be relayed, but not destination address could be found",
                      shortName="",
                      unitLabel="")
        void incrementInvalidRequestToRelayDialogWithNoInitialDP​(long delta)
        Incremented by sentinel core whenever the dialog is to be relayed, but not destination address could be found
        Parameters:
        delta - the increment
      • incrementAssistRequestInstructions

        @UsageCounter(mapping=107,
                      description="Incremented by sentinel core whenever a assistRequestInstructions is received",
                      shortName="",
                      unitLabel="")
        void incrementAssistRequestInstructions​(long delta)
        Incremented by sentinel core whenever a assistRequestInstructions is received
        Parameters:
        delta - the increment
      • incrementAssistRequestInstructionsUncorrelated

        @UsageCounter(mapping=108,
                      description="Incremented by sentinel core whenever a assistRequestInstructions is received but was not correlated with an existing session",
                      shortName="",
                      unitLabel="")
        void incrementAssistRequestInstructionsUncorrelated​(long delta)
        Incremented by sentinel core whenever a assistRequestInstructions is received but was not correlated with an existing session
        Parameters:
        delta - the increment
      • incrementAnsweredCalls

        @UsageCounter(mapping=109,
                      description="Incremented by sentinel core whenever a call is answered",
                      shortName="",
                      unitLabel="")
        void incrementAnsweredCalls​(long delta)
        Incremented by sentinel core whenever a call is answered
        Parameters:
        delta - the increment
      • incrementCompletedWithinCredit

        @UsageCounter(mapping=110,
                      description="Incremented by sentinel core whenever a call is disconnected normally (completed within credit)",
                      shortName="",
                      unitLabel="")
        void incrementCompletedWithinCredit​(long delta)
        Incremented by sentinel core whenever a call is disconnected normally (completed within credit)
        Parameters:
        delta - the increment
      • incrementEndedBySwitchFault

        @UsageCounter(mapping=111,
                      description="Incremented by sentinel core whenever a call fails due to an SS7 error",
                      shortName="",
                      unitLabel="")
        void incrementEndedBySwitchFault​(long delta)
        Incremented by sentinel core whenever a call fails due to an SS7 error
        Parameters:
        delta - the increment
      • incrementCallLimitReached

        @UsageCounter(mapping=112,
                      description="Incremented by sentinel core whenever a call ends because it reached the maximum configured call duration limit.",
                      shortName="",
                      unitLabel="")
        void incrementCallLimitReached​(long delta)
        Incremented by sentinel core whenever a call ends because it reached the maximum configured call duration limit.
        Parameters:
        delta - the increment
      • incrementCallsReleased

        @UsageCounter(mapping=113,
                      description="Incremented by sentinel core whenever a session is released",
                      shortName="",
                      unitLabel="")
        void incrementCallsReleased​(long delta)
        Incremented by sentinel core whenever a session is released
        Parameters:
        delta - the increment
      • incrementCdrWritten

        @UsageCounter(mapping=114,
                      description="Incremented by sentinel core when a cdr is written",
                      shortName="",
                      unitLabel="")
        void incrementCdrWritten​(long delta)
        Incremented by sentinel core when a cdr is written
        Parameters:
        delta -
      • incrementCdrNotWritten

        @UsageCounter(mapping=115,
                      description="Incremented by sentinel core when a cdr is not written",
                      shortName="",
                      unitLabel="")
        void incrementCdrNotWritten​(long delta)
        Incremented by sentinel core when a cdr is not written
        Parameters:
        delta -