Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions docs/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ Welcome to Argus' documentation!

.. toctree::
about-argus
philosophy
models
api
site-specific-settings
Expand Down
78 changes: 78 additions & 0 deletions docs/philosophy.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,78 @@
==========================
The philosopy behind Argus
==========================

Manifesto
=========

Argus aims to be a small tool in the Unix tradition. It aims to do three
things well:
* store incidents and their events
* filter incidents and their events
* notify about incidents and their events

* Argus is not an inventory system
* Argus is not a monitoring system, real-time or other
* There is no pull, only push.

The source pushes incidents, Argus pushes notifications.
* Argus. Will. Not. Spam.

Background
==========

Once upon a time there was `NAV <https://nav.uninett.no/>`_ to administer
a network, visualized. One NAV, one network, one dashboard on one screen, and
it was good.

Then as times passed the situation became many NAV, many networks, and many
dashboards each on their own screen. Screens take up space, and space is
expensive!

Argus was started to solve three problems:

1. To aggregate/collect incidents from multiple NAV's without having to
fundamentally break the philosopy of NAV
2. To have a filter system that does not need mathematics at university level
or a full day's class or more to understand and use, hence: no Boolean
expressions [1]_
3. To be able to send notifications for a subset of the collected
alarms/alerts/incidents [2]_

Because our definition of incident is so simple, and since it is the source
that is in control of when and where to send incidents, it was easy to add
other sources than NAV, so we did.

On terminological choices
=========================

There was a *long* debate about what to call the primary object of study in Argus:

* alert
* alarm
* incident
* happening
* event
* .. see synonym dictionary for more

As it turns out, different groups use different terms, and even if they use the
same term, they have different expectations and definitions. We chose
"incident", which consists of one or more "events", and our "incident" is as
simple as we could make it.

An *incident* is reported (pushed) by a machine *source*. That source has
a *type*. Any change in the incident at the source is reported by the source as
an *event*. Any changes done by humans on a specific incident are also reported
as an *event*. The machine source can categorize incidents via *tags*, and
*levels* but Argus does not know or care what the tags mean or what the levels
are called. *Notifications* can be set up via *filters* for a subset of the
events.


.. rubric:: Footnotes

.. [1] There is of course Boolean logic underlying the filters but we will
never allow the full expressitivity
.. [2] There is no way to send notifications for ALL incidents/events. The
closest you can get is sending for all stateful incidents, which will then
not allow sending for stateless incidents.