Skip to content

Commit 5cb9a73

Browse files
Merge branch 'master' into ml-data-grid-column-fix
2 parents f410799 + 7975765 commit 5cb9a73

File tree

288 files changed

+5369
-1622
lines changed

Some content is hidden

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

288 files changed

+5369
-1622
lines changed

docs/canvas/canvas-elements.asciidoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ By default, most of the elements you create use demo data until you change the d
2323

2424
* *{es} SQL* — Access your data in {es} using SQL syntax. For information about SQL syntax, refer to {ref}/sql-spec.html[SQL language].
2525

26-
* *{es} raw data* — Access your raw data in {es} without the use of aggregations. Use {es} raw data when you have low volume datasets, or to plot exact, non-aggregated values.
26+
* *{es} documents* &mdash; Access your data in {es} without using aggregations. To use, select an index and fields, and optionally enter a query using the <<lucene-query,Lucene Query Syntax>>. Use the *{es} documents* data source when you have low volume datasets, to view raw documents, or to plot exact, non-aggregated values on a chart.
2727

2828
* *Timelion* &mdash; Access your time series data using <<timelion,Timelion>> queries. To use Timelion queries, you can enter a query using the <<lucene-query,Lucene Query Syntax>>.
2929

examples/alerting_example/tsconfig.json

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,7 @@
11
{
22
"extends": "../../tsconfig.json",
33
"compilerOptions": {
4-
"outDir": "./target",
5-
"skipLibCheck": true,
6-
"resolveJsonModule": true
4+
"outDir": "./target"
75
},
86
"include": [
97
"index.ts",

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -119,7 +119,7 @@
119119
"@babel/register": "^7.9.0",
120120
"@elastic/apm-rum": "^4.6.0",
121121
"@elastic/charts": "^18.1.1",
122-
"@elastic/datemath": "5.0.2",
122+
"@elastic/datemath": "5.0.3",
123123
"@elastic/ems-client": "7.7.1",
124124
"@elastic/eui": "21.0.1",
125125
"@elastic/filesaver": "1.1.2",

packages/elastic-datemath/.npmignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,3 +2,5 @@
22
/test
33
/tsconfig.json
44
/.babelrc
5+
/yarn.lock
6+
/__tests__
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
# datemath
2+
3+
Datemath string parser used in Kibana. This is published to NPM for use in a limited number of locations outside of Kibana, but is not regularly updated and may get seriously out of date.
4+
5+
If you file an issue in elastic/kibana we can probably update it for you if needed, though you probably shouldn't depend on this package for anything important.

packages/elastic-datemath/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@elastic/datemath",
3-
"version": "5.0.2",
3+
"version": "5.0.3",
44
"description": "elasticsearch datemath parser, used in kibana",
55
"license": "Apache-2.0",
66
"main": "target/index.js",

packages/elastic-datemath/readme.md

Lines changed: 0 additions & 3 deletions
This file was deleted.

src/dev/ci_setup/setup.sh

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,14 @@ echo " -- TEST_ES_SNAPSHOT_VERSION='$TEST_ES_SNAPSHOT_VERSION'"
1616
echo " -- installing node.js dependencies"
1717
yarn kbn bootstrap --prefer-offline
1818

19+
###
20+
### Download es snapshots
21+
###
22+
echo " -- downloading es snapshot"
23+
node scripts/es snapshot --download-only;
24+
node scripts/es snapshot --license=oss --download-only;
25+
26+
1927
###
2028
### verify no git modifications
2129
###

test/functional/apps/context/_discover_navigation.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,8 @@ export default function({ getService, getPageObjects }) {
3131
const filterBar = getService('filterBar');
3232
const PageObjects = getPageObjects(['common', 'discover', 'timePicker']);
3333

34-
describe('context link in discover', function contextSize() {
34+
// FLAKY: https://github.com/elastic/kibana/issues/53308
35+
describe.skip('context link in discover', function contextSize() {
3536
this.tags('smoke');
3637
before(async function() {
3738
await PageObjects.common.navigateToApp('discover');

test/functional/apps/discover/_field_visualize.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,8 @@ export default function({ getService, getPageObjects }: FtrProviderContext) {
3232
defaultIndex: 'logstash-*',
3333
};
3434

35-
describe('discover field visualize button', () => {
35+
// FLAKY: https://github.com/elastic/kibana/issues/61714
36+
describe.skip('discover field visualize button', () => {
3637
before(async function() {
3738
log.debug('load kibana index with default index pattern');
3839
await esArchiver.load('discover');

0 commit comments

Comments
 (0)