Skip to content
This repository has been archived by the owner on Mar 12, 2024. It is now read-only.

little-brother/cicada

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

32 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Cicada

Cicada (started as Chupacabra) is a lightweight Node.js application with web browser interface for discovery and monitoring network devices.

Supported protocols: ICMP (ping), SNMP v1/2c/3, WMI, Modbus TCP, IPMI, http/s (plain-text, json, xml) and ftp.
Also you can polling Zabbix, Check-mk and Munin agents and check TCP ports.

Cross-platform, open source, extendable, free.
Demo (read-only), overview video, documentation.

Features

  • Multi-protocol device polling
  • Live network diagrams
  • Grouping devices and metrics by tags
  • Check threshold values of metrics
  • Calculated metric
  • Templates to create device copy in one click
  • Auto-discovery metrics by predefined rules
  • Bulk import of devices
  • Extreme compact storage of history data (2-4Byte per numeric value)
  • Historization of non-numeric values
  • Flexible mechanism of alert messages
  • Alert management
  • Grafana integration
  • Database monitoring
  • and MORE!

Roadmap

  • Plugins
  • AWS protocol
  • Dark theme
  • Template library
  • Distributed
  • Support virtual machines polling

Requirements

  • Node.js (JavaScript runtime engine)

Optional

Installation

  1. Download and unpack or run

    git clone --depth=1 https://github.com/little-brother/cicada.git
    
  2. Run to install dependencies

    npm i
    
    Troubleshooting Cicada uses sqlite module. This module requires a build tools.
    Run npm i node-gyp -g to install node-gyp (native addon build tool) and retry to install Cicada.

    If error occurs again then
    Windows: install the previous Node.js version.
    Linux: run apt-get install build-essential to install compiler.

  3. Run Cicada

    node app
    
  4. Go to browser and open url http://127.0.0.1:5000

How to update a previous installation
  • Stop application
  • Backup config.json
  • Create /db-folder backup
  • Clear application folder
  • Install the application again
  • Transfer the backup to /db
  • Restore config.json
  • Run application

Usage

  1. Hold Ctrl on tag click to select multiply tags.
  2. Set value type of metric as number or size to view history on chart and log each values into history.sqlite file.
    Otherwise log only changes into changes.sqlite.
  3. Set up device and push 💾 to it as template.
    Template will be appear in "Add device"-menu and in scan results.
  4. Read expression protocol help to learn about its power.
  5. Start metric name from $ to create temporary (unlogged and hidden) metric.
    Device and metric tags beginning with $ are not displayed on the dashboard.
  6. Cicada have a minimal diagram icon pack.
    You can use Cisco Network Topology Icons (unpack into /public/images) to expand it.
  7. Hotkeys
    • Ctrl + Alt + L - logout and move to login page.
    • Ctrl + Alt + S - show db stats page.
    • Ctrl + Alt + C - open group check page.
    • Ctrl + Alt + A - hide all active and visible alerts (only on Alert page).
  8. Use middle button click to toggle application mode (devices or diagrams).
  9. Example of file to bulk import devices
    [
      {"name": "Cisco router", "ip": "192.168.0.1", "template": "Cisco"},
      {"name": "MSSQL DB", "ip": "192.168.0.10", "template": "WinHost"},
      {"name": "Simple", "ip": "192.168.0.100", "is_pinged": 1, "timeout": 30}
    ]
    

Configuration (config.json)

  • port - http-server port. By default 5000. Next port number will be use to realtime update interface via websocket.

  • access - define access by password.

    • edit - admin password. Can be empty.
    • view - operator password. Can be empty.
  • db - sqlite configuration on start up. By default is {'synchronous': 0}. See details in Wiki.

  • alerter-list - set of alerter. Each alerter has next params

    • event - one of on-change, on-normal, on-warning, on-critical, on-anomaly.
    • command - any shell command. You can use ${device.*} and ${reason}.
    • options - special command options. By default {}.
    • active - the time when messages are sent in Zabbix time periods format. By default is empty (any time).
    • tag-list/tags - list of device tags. If the list is empty then alerter applied to any device.

    See details in Wiki.

  • anomaly-detector

    • host - ip of anomaly detection server.
    • port - port of anomaly detection server.
    • tag-list - array of metric tags. Determines which variables will be checked.
      Also you can set tags - one string with semicolon as tag delimiter.

    See details in Wiki.

  • catchers - set of event catcher. Each catcher is daemon, eg snmptrapd, who catch incoming message.
    Application parse daemon log, extract sender ip by pattern and force device polling with this ip.

    • command - the command to run.
    • args - list of string arguments.
    • options - optional options for command.
    • pattern - regexp pattern to get ip address.

    See details in Wiki.

  • publisher - send data to external server e.g. Graphite or publish on local tcp-port.

    • host - server host. If host is not set then application open local tcp-port and publish data to it.
    • port - by default 2003. Or 5002 if host is empty.
    • pattern - output row pattern. By default ${device.name}/${metric.name} ${metric.value} $time.
    • delimiter - row delimiter. By default is \r\n
    • only-numeric - publish only numeric metrics. By default false.
  • auto-scan - define params of process to check network on new devices. If on-detect is not set then auto-scan is off.

    • period - in seconds. By default 600.
    • range - use next range format: 192.168.1-10.*, 10.10.1-2.3-23. Already registered IP will be ignored.
    • on-detect - shell command executed for each unknown devices. You can use ${ip}, ${mac} and ${description}.
  • network-commands - external commands to check devices. Uses arp, ping and tracert/traceroute by default.

    • arp - get a mapping of the MAC and ip addresses.
    • ping - ping device.
    • trace - trace route to device and return hop ips.
Example
{
  "port": 5000,

  "access": {
    "edit": "mypassword",
    "view": ""
  },  

  "db": {
    "synchronous": 0,
    "cache_size": 4000
  }, 

  "alerter-list": [
    {
      "event": "on-warning",
      "tag-list": ["$EMAIL", "DB"],
      "command": "sendmail some@mail.com Device ${device.name} is warning for reason: ${reason}"
    },
    {
      "event": "on-critical",
      "tags": "$EMAIL;DB",
      "command": "sendmail some@mail.com Device ${device.name} is critical for reason: ${reason}"
    },
    {		  
      "event": "on-anomaly",
      "command": "echo %TIME% ${device.name} \"${reason}\" >> anomaly.txt"
    }
  ],

  "anomaly-detector": {
    "host": "localhost",
    "port": 8000,
    "tags": "CPU;DB;MEM"
  },

  "auto-scan": {
    "period": 600,
    "range": "192.168.0.1-255",
    "on-detect": {
      "command": "mail -s "New ${ip} found" user@example.com < /dev/null",
      "options": {}
    }
  },

  "publisher": {
    "port": 2000,
    "pattern": "${device.name}/${varbind.name} ${varbind.value} $time"
  },

  "network-commands": {
    "arp": "arp -a",
    "ping": "ping ${ip} -n 1",
    "trace": "tracert -d ${ip}"
  }
}