Crates.io | ieql |
lib.rs | ieql |
version | 0.3.0 |
source | src |
created_at | 2018-12-25 16:33:03.608646 |
updated_at | 2020-02-13 23:04:35.948319 |
description | An open standard and implementation for monitoring Internet content |
homepage | |
repository | https://github.com/milesmcc/ieql |
max_upload_size | |
id | 103759 |
size | 195,101 |
This repository contains the specification and reference implementation for IEQL (Internet Extensible Query Language, pronounced equal). IEQL is an open standard for monitoring and querying Internet content designed to be fast, efficient, and scalable.
IEQL queries have two parts: the triggers and the threshold.
Triggers are individual queries, typically RegEx patterns. Triggers can be configured to match only on certain elements of Internet documents (such as body text
or HTTP headers
), and also to match on Internet documents at a certain location (for example, every document from domain nytimes.com
).
The threshold are the compositions of triggers that are required in order for the query to match. For example, an IEQL might have three different triggers: Trigger A, Trigger B, and Trigger C. An IEQL query could be defined such that a match is defined as any time Trigger A fires and either Trigger B or Trigger C fires. Alternatively, the IEQL query's match threshold could be any two triggers. These trigger compositions are an important part of what makes IEQL powerful.
IEQL queries provide three main features:
To get started with IEQL, either use the reference Rust implementation or create your own based off of the open specification.
This document is licensed CC-BY-SA, © R. Miles McCain 2018. The Rust reference implementation is licensed according to the LICENSE
file.