Found in: Version: 7.0.0-alpha1
When cloning a job created in the Population wizard which has multiple detectors using the same over / by fields, the influencer field names are duplicated.
For example, creating a job against the gallery dataset, with the following analysis config:
"analysis_config": {
"bucket_span": "15m",
"detectors": [
{
"detector_description": "count by method over clientip",
"function": "count",
"by_field_name": "method",
"over_field_name": "clientip",
"detector_index": 0
},
{
"detector_description": "sum(bytes) by method over clientip",
"function": "sum",
"field_name": "bytes",
"by_field_name": "method",
"over_field_name": "clientip",
"detector_index": 1
}
],
"influencers": [
"method",
"clientip"
]
},
On cloning the job, the Population wizard opens, and each of the method and clientip influencers are duplicated:

and on saving, the influencers array contains duplicate field names:
"influencers": [
"method",
"clientip",
"method",
"clientip"
]
Found in: Version: 7.0.0-alpha1
When cloning a job created in the Population wizard which has multiple detectors using the same
over/byfields, the influencer field names are duplicated.For example, creating a job against the gallery dataset, with the following analysis config:
On cloning the job, the Population wizard opens, and each of the
methodandclientipinfluencers are duplicated:and on saving, the
influencersarray contains duplicate field names: