Statistics¶
Leafs
dropped_sessions
in_bad_hellos
in_bad_rpcs
in_rpcs
in_sessions
netconf_start_time
out_notifications
out_rpc_errors
-
class
NetconfState.
Statistics
¶ Bases:
Entity
Class Hierarchy:
NetconfState
Statistics
This class represents state data.
Statistical data pertaining to the NETCONF server.
-
netconf_start_time
¶ Date and time at which the management subsystem was started
type: str
pattern: \d{4}-\d{2}-\d{2}T\d{2}:\d{2}:\d{2}(\.\d+)?(Z|[\+\-]\d{2}:\d{2})config: False
-
in_bad_hellos
¶ Number of sessions silently dropped because an invalid <hello> message was received. This includes <hello> messages with a ‘session-id’ attribute, bad namespace, and bad capability declarations
type: int
range: 0..4294967295config: False
-
in_sessions
¶ Number of sessions started. This counter is incremented when a <hello> message with a <session-id> is sent. ‘in-sessions’ - ‘in-bad-hellos’ = ‘number of correctly started netconf sessions’
type: int
range: 0..4294967295config: False
-
dropped_sessions
¶ Number of sessions that were abnormally terminated, e.g., due to idle timeout or transport close. This counter is not incremented when a session is properly closed by a <close-session> operation, or killed by a <kill-session> operation
type: int
range: 0..4294967295config: False
-
in_rpcs
¶ Number of correct <rpc> messages received
type: int
range: 0..4294967295config: False
-
in_bad_rpcs
¶ Number of messages received when an <rpc> message was expected, that were not correct <rpc> messages. This includes XML parse errors and errors on the rpc layer
type: int
range: 0..4294967295config: False
-
out_rpc_errors
¶ Number of <rpc-reply> messages sent that contained an <rpc-error> element
type: int
range: 0..4294967295config: False
-
out_notifications
¶ Number of <notification> messages sent
type: int
range: 0..4294967295config: False
-