How does BigQuery or any other Google resource add these 'tags' at the top of the stackdriver log entry?
I have successfully added labels to my log, but these don't show up as 'tags' at the top. Here is an example of how I'm creating a log:
self._queue.put_nowait({
'info': info,
'severity': record.levelname,
'resource': resource,
'labels': {'test': 'label'},
'trace': trace,
'span_id': span_id,
})
How would I add these tags?

