Skip to content
/APIPublic
forked from fr4gles/API

An API class library needed for developing plugins and other extensions for AnyStatus

License

Notifications You must be signed in to change notification settings

K3UL/API

Repository files navigation

AnyStatus API

A library that contains the classes, interfaces and utilities needed for developing AnyStatus plugins.

Build statusNuGetJoin the chat at https://gitter.im/AnyStatus

How it works

AnyStatus communicates with plugins using the API library. During startup, AnyStatus scans assemblies in the installation directory and registers all plugins.

A plugin is a set of classes that instruct AnyStatus how to display it in the dashboard and which features the plugin supports.


AnyStatus Components

Plugins Library

Check out the complete plugins library at https://github.com/AnyStatus/Plugins

Plugin Example

A class that defines the plugin.

[DisplayName("Ping")][DisplayColumn("Network")][Description("Test the reachability of a host")]publicclassPing:Plugin,IMonitored{[Required][Category("Ping")][Description("Host Name or IP Address")]publicstringHost{get;set;}}

A class that handles a monitor health check.

publicclassPong:IMonitor<Ping>{publicvoidHandle(PingmyPing){using(varping=newSystem.Net.NetworkInformation.Ping()){varpong=ping.Send(myPing.Host);if(pong.Status==IPStatus.Success)ping.State=State.Ok;elseping.State=State.Failed;}}}

In addition to the IMonitored and IMonitor<T> interfaces, you can also implement interfaces such as ICanStart, ICanStop, ICanRestart and others, to let AnyStatus know which features are supported by the plugin.

About

An API class library needed for developing plugins and other extensions for AnyStatus

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • C#99.2%
  • Batchfile0.8%