Skip to content

Commit d6ffb18

Browse files
committed
Merge branch 'master' of github.com:elastic/kibana into spaces/np-client
2 parents 4399b59 + 900af82 commit d6ffb18

File tree

599 files changed

+6836
-5647
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

599 files changed

+6836
-5647
lines changed

.github/PULL_REQUEST_TEMPLATE.md

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,16 +4,15 @@ Summarize your PR. If it involves visual changes include a screenshot or gif.
44

55
### Checklist
66

7-
Use ~~strikethroughs~~ to remove checklist items you don't feel are applicable to this PR.
7+
Delete any items that are not applicable to this PR.
88

9-
- [ ] This was checked for cross-browser compatibility, [including a check against IE11](https://github.com/elastic/kibana/blob/master/CONTRIBUTING.md#cross-browser-compatibility)
109
- [ ] Any text added follows [EUI's writing guidelines](https://elastic.github.io/eui/#/guidelines/writing), uses sentence case text and includes [i18n support](https://github.com/elastic/kibana/blob/master/packages/kbn-i18n/README.md)
1110
- [ ] [Documentation](https://github.com/elastic/kibana/blob/master/CONTRIBUTING.md#writing-documentation) was added for features that require explanation or tutorials
1211
- [ ] [Unit or functional tests](https://github.com/elastic/kibana/blob/master/CONTRIBUTING.md#cross-browser-compatibility) were updated or added to match the most common scenarios
1312
- [ ] This was checked for [keyboard-only and screenreader accessibility](https://developer.mozilla.org/en-US/docs/Learn/Tools_and_testing/Cross_browser_testing/Accessibility#Accessibility_testing_checklist)
13+
- [ ] This renders correctly on smaller devices using a responsive layout. (You can test this [in your browser](https://www.browserstack.com/guide/responsive-testing-on-local-server)
14+
- [ ] This was checked for cross-browser compatibility, [including a check against IE11](https://github.com/elastic/kibana/blob/master/CONTRIBUTING.md#cross-browser-compatibility)
1415

1516
### For maintainers
1617

1718
- [ ] This was checked for breaking API changes and was [labeled appropriately](https://github.com/elastic/kibana/blob/master/CONTRIBUTING.md#release-notes-process)
18-
- [ ] This includes a feature addition or change that requires a release note and was [labeled appropriately](https://github.com/elastic/kibana/blob/master/CONTRIBUTING.md#release-notes-process)
19-

NOTICE.txt

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -162,8 +162,6 @@ which is available under a "MIT" license. The files based on this license are:
162162
- windows_priv_escalation_via_accessibility_features.json
163163
- windows_persistence_via_application_shimming.json
164164
- windows_execution_via_trusted_developer_utilities.json
165-
- windows_execution_via_net_com_assemblies.json
166-
- windows_execution_via_connection_manager.json
167165

168166
MIT License
169167

docs/setup/upgrade.asciidoc

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ instructions.
5050
[[upgrade-6x]]
5151
=== Upgrading from 6.x
5252

53-
The recommended path is to upgrade to 6.7 before upgrading to 7.0. This makes it
53+
The recommended path is to upgrade to 6.8 before upgrading to 7.0. This makes it
5454
easier to identify the required changes, and enables you to use the Upgrade
5555
Assistant to prepare for your upgrade to 7.0.
5656

@@ -59,11 +59,11 @@ dashboards is supported.
5959

6060
[float]
6161
[[upgrade-67]]
62-
=== Upgrading from 6.7
63-
To help you prepare for your upgrade to 7.0, 6.7 includes an https://www.elastic.co/guide/en/kibana/6.7/upgrade-assistant.html[Upgrade Assistant]
64-
To access the assistant, go to *Management > 7.0 Upgrade Assistant*.
62+
=== Upgrading from 6.8
63+
To help you prepare for your upgrade to 7.0, 6.8 includes an https://www.elastic.co/guide/en/kibana/6.8/upgrade-assistant.html[Upgrade Assistant]
64+
To access the assistant, go to *Management > 7.0 Upgrade Assistant*.
6565

66-
After you have addressed any issues that were identified by the Upgrade
66+
After you have addressed any issues that were identified by the Upgrade
6767
Assistant, <<upgrade-standard,upgrade to 7.0>>.
6868

6969

docs/siem/images/detections-ui.png

303 KB
Loading

docs/siem/images/hosts-ui.png

259 KB
Loading

docs/siem/images/network-ui.png

304 KB
Loading

docs/siem/images/overview-ui.png

392 KB
Loading

docs/siem/siem-ui.asciidoc

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,23 @@ investigation.
3333
[role="screenshot"]
3434
image::siem/images/network-ui.png[]
3535

36+
[float]
37+
[[detections-ui]]
38+
=== Detections
39+
40+
The Detections feature automatically searches for threats and creates
41+
signals when they are detected. Signal detection rules define the conditions
42+
for creating signals. The SIEM app comes with prebuilt rules that search for
43+
suspicious activity on your network and hosts. Additionally, you can
44+
create your own rules.
45+
46+
See {siem-guide}/detection-engine-overview.html[Detections] in the SIEM
47+
Guide for information on managing detection rules and signals via the UI
48+
or the Detections API.
49+
50+
[role="screenshot"]
51+
image::siem/images/detections-ui.png[]
52+
3653
[float]
3754
[[timelines-ui]]
3855
=== Timeline

src/legacy/core_plugins/data/public/actions/filters/brush_event.test.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ import _ from 'lodash';
2121
import moment from 'moment';
2222
import expect from '@kbn/expect';
2323

24-
jest.mock('../../../../../ui/public/agg_types/agg_configs', () => ({
24+
jest.mock('../../search/aggs', () => ({
2525
AggConfigs: function AggConfigs() {
2626
return {
2727
createAggConfig: ({ params }) => ({

src/legacy/core_plugins/data/public/index.ts

Lines changed: 47 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
*/
1919

2020
// /// Define plugin function
21-
import { DataPlugin as Plugin, DataStart } from './plugin';
21+
import { DataPlugin as Plugin } from './plugin';
2222

2323
export function plugin() {
2424
return new Plugin();
@@ -27,14 +27,58 @@ export function plugin() {
2727
// /// Export types & static code
2828

2929
/** @public types */
30-
export { DataStart };
30+
export { DataSetup, DataStart } from './plugin';
3131
export {
3232
SavedQueryAttributes,
3333
SavedQuery,
3434
SavedQueryTimeFilter,
3535
} from '../../../../plugins/data/public';
36+
export {
37+
// agg_types
38+
AggParam,
39+
AggParamOption,
40+
DateRangeKey,
41+
IAggConfig,
42+
IAggConfigs,
43+
IAggType,
44+
IFieldParamType,
45+
IMetricAggType,
46+
IpRangeKey,
47+
ISchemas,
48+
OptionedParamEditorProps,
49+
OptionedValueProp,
50+
} from './search/types';
3651

3752
/** @public static code */
3853
export * from '../common';
3954
export { FilterStateManager } from './filter/filter_manager';
40-
export { getRequestInspectorStats, getResponseInspectorStats } from './search';
55+
export {
56+
// agg_types TODO need to group these under a namespace or prefix
57+
AggParamType,
58+
AggTypeFilters, // TODO convert to interface
59+
aggTypeFilters,
60+
AggTypeFieldFilters, // TODO convert to interface
61+
AggGroupNames,
62+
aggGroupNamesMap,
63+
BUCKET_TYPES,
64+
CidrMask,
65+
convertDateRangeToString,
66+
convertIPRangeToString,
67+
intervalOptions, // only used in Discover
68+
isDateHistogramBucketAggConfig,
69+
isStringType,
70+
isType,
71+
isValidInterval,
72+
isValidJson,
73+
METRIC_TYPES,
74+
OptionedParamType,
75+
parentPipelineType,
76+
propFilter,
77+
Schema,
78+
Schemas,
79+
siblingPipelineType,
80+
termsAggFilter,
81+
// search_source
82+
getRequestInspectorStats,
83+
getResponseInspectorStats,
84+
} from './search';

0 commit comments

Comments
 (0)