Hello,
I noticed that the field 'name' is exported as 'type' if set.
E.g.
- name: some-name
type: http
urls:
- www.myurl.com:123
results in a document like
{
...
"up": true,
"type": "some-name"
...
}
However, if no name is set, the type would be http
.
I find this quite unintuitive - or is this by design?
BR