Merge pull request #880 from metamx/docs-combining-firehose

document combining firehose
This commit is contained in:
Fangjin Yang 2014-11-18 13:56:25 -07:00
commit 35125d7e10
1 changed files with 16 additions and 0 deletions

View File

@ -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
------------