Difference between revisions of "Developer Introduction/zh-cn"

From Senfi Docs
Jump to: navigation, search
(Created page with "开发人员介绍")
 
(Created page with "作为Senfi开发人员,您最关心的是将数据导入Senfi,并利用Senfi的规则引擎和计算的测量来设置自动警报和操作。下图概述了如何处理...")
Line 1: Line 1:
As a Senfi developer, your primary concern is to get data into Senfi, and to make use of Senfi's rule engine and computed measurement to setup automated alerting and actions. The following diagram gives you an overview of how data is processed and stored.
+
作为Senfi开发人员,您最关心的是将数据导入Senfi,并利用Senfi的规则引擎和计算的测量来设置自动警报和操作。下图概述了如何处理和存储数据。
  
 
[[File: Dataflow.PNG|link=]]
 
[[File: Dataflow.PNG|link=]]

Revision as of 15:22, 30 October 2019

作为Senfi开发人员,您最关心的是将数据导入Senfi,并利用Senfi的规则引擎和计算的测量来设置自动警报和操作。下图概述了如何处理和存储数据。

Dataflow.PNG

A typical usage follows this pattern:

  1. Data is fed to Senfi and ingested.
  2. Valid data* is saved.
  3. Data can also be used to calculate computed measurements.
  4. You can make use of live incoming measurement, computed measurement, or historical measurement in your rules.
  5. You can also configure actions to be taken when a rule is evaluated to be true. Or when a rule output goes from true to false. You can make use of webhooks to integrate with your existing systems.
*At any point in time, if the system encounters an unexpected condition or error (eg. due to invalid data), it will generate a log. These log entries can be examined in the CMS under debugger.

Next: Measurement