When I use `InfluxDB::Rails.instrument` in a background process, I would like to override the default location ``` InfluxDB::Rails.instrument "expensive_operation", tags: {location: "Foo#bar }, values: { } do expensive_operation end ``` but the `location` tag will override by `raw`. Could consider change [config.tags_middleware.call(tags.merge(default_tags))](https://github.com/influxdata/influxdb-rails/blob/860a6d41e789de052a61f39a1ce1ccf69102b75a/lib/influxdb/rails/tags.rb#L21) to `config.tags_middleware.call(default_tags.merge(tags))` ?