Package rst.monitoring

Not documented

Messages

digraph message_graph { fontname="Arial"; fontsize=11; stylesheet="../_static/graphs.css"; node [fontsize=11,fontname="Arial"] edge [fontsize=11,fontname="Arial"] "1" [label=<<TABLE BORDER="0"><TR><TD COLSPAN="2" HREF="../generated/sandbox/package-rst-monitoring.html#rst.monitoring.ProcessAnomaly" TITLE="Structure rst.monitoring.ProcessAnomaly" TARGET="_parent"><TABLE BORDER="0"><TR><TD ALIGN="right"><IMG SRC="../_static/message-sandbox.svg"></IMG></TD><TD ALIGN="left">ProcessAnomaly</TD></TR></TABLE></TD></TR><TR><TD ALIGN="left" HREF="../generated/stable/package-__rosetta-UINT32.html#UINT32" TITLE="Fundamental UINT32" TARGET="_parent">UINT32</TD><TD ALIGN="left" HREF="../generated/sandbox/package-rst-monitoring.html#rst.monitoring.ProcessAnomaly.pid" TITLE="Field rst.monitoring.ProcessAnomaly.pid" TARGET="_parent" PORT="pid">pid</TD></TR><TR><TD ALIGN="left" HREF="../generated/stable/package-__rosetta-OCTET-VECTOR.html#OCTET-VECTOR" TITLE="Fundamental OCTET-VECTOR" TARGET="_parent">OCTET-VECTOR</TD><TD ALIGN="left" HREF="../generated/sandbox/package-rst-monitoring.html#rst.monitoring.ProcessAnomaly.name" TITLE="Field rst.monitoring.ProcessAnomaly.name" TARGET="_parent" PORT="name">name</TD></TR><TR><TD ALIGN="left" HREF="../generated/stable/package-__rosetta-OCTET-VECTOR.html#OCTET-VECTOR" TITLE="Fundamental OCTET-VECTOR" TARGET="_parent">OCTET-VECTOR</TD><TD ALIGN="left" HREF="../generated/sandbox/package-rst-monitoring.html#rst.monitoring.ProcessAnomaly.host_name" TITLE="Field rst.monitoring.ProcessAnomaly.host_name" TARGET="_parent" PORT="host_name">host_name</TD></TR><TR><TD ALIGN="left" HREF="../generated/stable/package-__rosetta-ASCII-STRING.html#ASCII-STRING" TITLE="Fundamental ASCII-STRING" TARGET="_parent">ASCII-STRING</TD><TD ALIGN="left" HREF="../generated/sandbox/package-rst-monitoring.html#rst.monitoring.ProcessAnomaly.reasons" TITLE="Field rst.monitoring.ProcessAnomaly.reasons" TARGET="_parent" PORT="reasons">reasons</TD></TR></TABLE>>,shape=box,style=filled,fillcolor="white"]; }

clearer: should be made invisible via css

Message ProcessAnomaly

class rst.monitoring.ProcessAnomaly

Monitoring-relevant cues about a system process.

Code author: Johannes Wienke <jwienke@techfak.uni-bielefeld.de>

Todo

this message requires serious abstraction once the
functionality of all cue providers is understood. Do not move it to stable!

A message to describe a detected anomaly inside a system-level process.

Code author: Johannes Wienke <jwienke@techfak.uni-bielefeld.de>

Todo

this message requires serious abstraction once the
functionality of all cue providers is understood. Do not move it to stable!
pid
Type:UINT32

PID of the program.

name
Type:OCTET-VECTOR

Name of the program (argv[0]).

host_name
Type:OCTET-VECTOR

Name of the host the program is running on.

reasons
Type:array of ASCII-STRING

A use-case-dependent list of reasons for the detection of this anomaly.

Download this file

message ProcessAnomaly {

    /**
     * PID of the program.
     */
    required uint32 pid = 1000;

    /**
     * Name of the program (argv[0]).
     */
    optional bytes name = 1001;

    /**
     * Name of the host the program is running on.
     */
    optional bytes host_name = 1002;

    /**
     * A use-case-dependent list of reasons for the detection of this anomaly.
     */
    repeated string reasons = 1;

}