From b2e8073c610e80972ea0654cdf1af95e45b35f08 Mon Sep 17 00:00:00 2001 From: nishantmonu51 Date: Tue, 18 Nov 2014 11:01:08 +0530 Subject: [PATCH] document combining firehose --- docs/content/Firehose.md | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/docs/content/Firehose.md b/docs/content/Firehose.md index f2c5d9cfa93..fe2fd6a5092 100644 --- a/docs/content/Firehose.md +++ b/docs/content/Firehose.md @@ -93,6 +93,22 @@ A sample ingest firehose spec is shown below - |metrics|The list of metrics to select. If left empty, no metrics are returned. If left null or not defined, all metrics are selected.|no| |filter| See [Filters](Filters.html)|yes| +#### CombiningFirehose +This firehose can be used to combine and merge data from a list of different firehoses. +This can be used to merge data from more than one firehoses. + +```json +{ + "type" : "combining", + "delegates" : [ { firehose1 }, { firehose2 }, ..... ] +} +``` + +|property|description|required?| +|--------|-----------|---------| +|type|combining|yes| +|delegates|list of firehoses to combine data from|yes| + Parsing Data ------------