Query Details

Dataingestionthresholdlimits

Query

//Data ingestion crossed the limit
Operation
|where OperationCategory == "Ingestion"
|where Detail startswith "The data ingestion volume rate crossed the threshold"

//Data ingestion crossed 80% of the limit
Operation
|where OperationCategory == "Ingestion"
|where Detail startswith "The data ingestion volume rate crossed 80% of the threshold"

Explanation

The query is filtering data from the "Operation" table where the operation category is "Ingestion" and the detail starts with specific messages about the data ingestion volume rate crossing certain thresholds. The first query is looking for cases where the data ingestion volume rate crossed the limit, while the second query is looking for cases where the data ingestion volume rate crossed 80% of the limit.

Details

Rod Trent profile picture

Rod Trent

Released: August 26, 2020

Tables

Operation

Keywords

Operation,OperationCategory,Ingestion,Detail

Operators

|where=="Ingestion"startswith"The data ingestion volume rate crossed the threshold" |where=="Ingestion"startswith"The data ingestion volume rate crossed 80% of the threshold"

Actions