Bucket - multiple data sources

Can one bucket store data from multiple sources? If so - how many? I could not find this clearly stated in the documentation.

@Anders_Wiig There is no restriction on where data that gets written to a bucket is sourced. Buckets don’t know anything about data sources. They only know that data is coming and their job is to store it.

The challenge may be structuring the data inside the bucket. Do you want to know which source a point came from? You’ll likely need to add a tag to each point identifying the source. Or you could create unique measurements per source. It’s up to you.

Thank you very much for the information. This answers my question, I only wished the documentation was a bit clearer on this. I will look into tags, for identifying sources.