Skip to content

Instantly share code, notes, and snippets.

@toolboc
Last active May 8, 2020 20:48
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save toolboc/6919280f9a1e7df909d63f634f2811ad to your computer and use it in GitHub Desktop.
Save toolboc/6919280f9a1e7df909d63f634f2811ad to your computer and use it in GitHub Desktop.
DeepStreamAnalytics.sql
WITH
FlattenedDetections AS
(
SELECT
DeepStreamInput.sensorId,
(SUBSTRING (arrayElement.ArrayValue, REGEXMATCH(arrayElement.ArrayValue, '\|[a-z]') + 1, LEN(arrayElement.ArrayValue))) as object,
DeepStreamInput.[@timestamp], COUNT(DeepStreamInput.[@timestamp]) as matches
FROM
[DeepStreamInput] AS DeepStreamInput TIMESTAMP BY DeepStreamInput.[@timestamp]
CROSS APPLY GetArrayElements(objects) AS arrayElement
WHERE
DeepStreamInput.[@timestamp] != CAST('1970-01-01T00:00:00.000Z' AS datetime) /*filter RTSP disconnections*/
GROUP BY DeepStreamInput.[sensorId],
arrayElement,
DeepStreamInput.[@timestamp],
SYSTEM.TIMESTAMP()
)
SELECT
Count(object) AS count, /*Counting function*/
sensorId, object, [@timestamp]
INTO [AggregatedDetections]
FROM FlattenedDetections
WHERE matches = 1 /*Filter duplicates where (timestamp and object) are equal)*/
GROUP BY
sensorId,
object,
[@timestamp],
TumblingWindow(second, 30)
SELECT
FLOOR(AVG(count)) as count, /*Smoothing function*/
sensorId, object, System.Timestamp AS [@timestamp]
INTO [SummarizedDetections]
FROM AggregatedDetections
GROUP BY
sensorId,
object,
TumblingWindow(second, 30)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment