Join on static data

Another join question. What is the influx standard for treating static data. I have for example product definitions that never change and are static. Do I need to always submit them along my time series into one measurement or is there a better way of doing it such as a join on a static table?

Would it be done differently in Kapacitor?

Thanks

@Djordje_Djokovic People will typically write this data as tags with each value. There is not a great way to store static data in influx. One way I have seen some folks deal with this is to join data from a relational store with the timeseries data before presenting it. This requires a client application.