forked from elastic/kibana
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[ML] Fixes missing y-axis description for rare chart. (elastic#24823) (…
…elastic#24836) Fixes the missing y-axis description for rare charts in the form of y-axis event distribution split by {{fieldName}}. The intention is to briefly clarify that the type of chart is different than the other ones which have a count or metric based y-axis. This text is in addition to the text provided (but hidden without hovering) in the info icon tooltip.
- Loading branch information
Showing
5 changed files
with
90 additions
and
3 deletions.
There are no files selected for viewing
49 changes: 49 additions & 0 deletions
49
x-pack/plugins/ml/public/explorer/explorer_charts/__mocks__/mock_series_config_rare.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,49 @@ | ||
{ | ||
"jobId": "ffb-rare-url-0921", | ||
"detectorIndex": 0, | ||
"metricFunction": "count", | ||
"timeField": "@timestamp", | ||
"interval": "15m", | ||
"datafeedConfig": { | ||
"datafeed_id": "datafeed-ffb-rare-url-0921", | ||
"job_id": "ffb-rare-url-0921", | ||
"query_delay": "115433ms", | ||
"indices": [ | ||
"filebeat-6.0.0-2017-nginx-elasticco-anon" | ||
], | ||
"types": [], | ||
"query": { | ||
"match_all": { | ||
"boost": 1 | ||
} | ||
}, | ||
"scroll_size": 1000, | ||
"chunking_config": { | ||
"mode": "auto" | ||
}, | ||
"state": "stopped" | ||
}, | ||
"functionDescription": "rare", | ||
"bucketSpanSeconds": 900, | ||
"detectorLabel": "rare by \"nginx.access.url\"", | ||
"entityFields": [ | ||
{ | ||
"fieldName": "nginx.access.url", | ||
"fieldValue": "/?node=4.1.1,5,7", | ||
"fieldType": "by" | ||
} | ||
], | ||
"infoTooltip": { | ||
"jobId": "ffb-rare-url-0921", | ||
"aggregationInterval": "15m", | ||
"chartFunction": "count", | ||
"entityFields": [ | ||
{ | ||
"fieldName": "nginx.access.url", | ||
"fieldValue": "/?node=4.1.1,5,7" | ||
} | ||
] | ||
}, | ||
"loading": true, | ||
"chartData": null | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters