Hi,
I see that each time I create a service some labels are automatically assigned to the containers that run each service task. For example:
```
"Labels": {
"com.docker.swarm.task": "",
}
```
Would be possible to define an arbitrary label whose value is dynamic? I mean on environment variables set in the host, or docker daemon labels.
In my particular case I wan to identify the host "hostname", because it allows me to filter monitoring data via cAdvisor.
I know there's a value named "
node.id" but this value does not have any meaning for me and I cannot merge it with other values when filtering metrics.
In my case I have some metrics obtained from node-exporter, where I have the hostname, and I'm interested to have a single id for each node whose name is well known by me.