Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Support Histogram Data Type #59387

Merged
Merged
Changes from 1 commit
Commits
Show all changes
21 commits
Select commit Hold shift + click to select a range
3695d49
Added HISTOGRAM field type to Kbn and ES field types
ThomThomson Mar 4, 2020
505aee5
updated unit tests to reflect addition of Histogram field type
ThomThomson Mar 5, 2020
386debf
removed generated newline characters in shapshot.
ThomThomson Mar 5, 2020
aca230a
Merge branch 'master' of github.com:elastic/kibana into enhancement/p…
ThomThomson Mar 6, 2020
33d2708
Regenerated snapshots on OSX, hope that will help with the line endin…
ThomThomson Mar 6, 2020
e10b0d4
allow histogram fields in Percentiles Ranks
ThomThomson Mar 10, 2020
65fd7d4
Added functional tests for Histogram data type
ThomThomson Mar 12, 2020
b5a0367
Merge branch 'master' of github.com:elastic/kibana into enhancement/p…
ThomThomson Mar 12, 2020
0f96cfd
Added a new option to the KbnFieldType for fields that should only al…
ThomThomson Mar 13, 2020
d17d7c0
generated docs for data plugin changes
ThomThomson Mar 13, 2020
4fdd6c9
Merge branch 'master' of github.com:elastic/kibana into enhancement/p…
ThomThomson Mar 13, 2020
8e4c5f5
Merge branch 'master' into enhancement/preAggregatedHistogram
elasticmachine Mar 16, 2020
7246b98
Merge branch 'master' into enhancement/preAggregatedHistogram
elasticmachine Mar 16, 2020
5e0d39f
Merge branch 'master' into enhancement/preAggregatedHistogram
elasticmachine Mar 16, 2020
188947d
Merge branch 'master' into enhancement/preAggregatedHistogram
elasticmachine Mar 17, 2020
f37a765
fixed file name issue
ThomThomson Mar 17, 2020
277dc80
Merge branch 'master' of github.com:elastic/kibana into enhancement/p…
ThomThomson Mar 18, 2020
75e5ee1
Reverted all changes to filters in favor of adding them to a differen…
ThomThomson Mar 18, 2020
0354bbe
Merge branch 'master' of github.com:elastic/kibana into enhancement/p…
ThomThomson Mar 19, 2020
cb26162
Filtered histogram types out of the top_hit and cardinality aggregati…
ThomThomson Mar 19, 2020
78cfab7
Merge branch 'master' into enhancement/preAggregatedHistogram
elasticmachine Mar 23, 2020
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
allow histogram fields in Percentiles Ranks
  • Loading branch information
ThomThomson committed Mar 10, 2020

Unverified

This commit is not signed, but one or more authors requires that any commit attributed to them is signed.
commit e10b0d4d2d1606b5f851f05a39734ddb281c7b44
Original file line number Diff line number Diff line change
@@ -60,7 +60,7 @@ export const percentileRanksMetricAgg = new MetricAggType<IPercentileRanksAggCon
{
name: 'field',
type: 'field',
filterFieldTypes: KBN_FIELD_TYPES.NUMBER,
filterFieldTypes: [KBN_FIELD_TYPES.NUMBER, KBN_FIELD_TYPES.HISTOGRAM],
},
{
name: 'values',