[esArchiver] stable archives (#30477)

* [esArchiver/save] serialize with stable json stringify

* [esArchives] rebuild all archives
This commit is contained in:
Spencer 2019-02-11 11:16:25 -08:00 committed by GitHub
parent 63d4ddb2d5
commit 133ba2360f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
139 changed files with 15475 additions and 15690 deletions

View file

@ -361,6 +361,7 @@
"jest-cli": "^23.6.0",
"jest-raw-loader": "^1.0.1",
"jimp": "0.2.28",
"json-stable-stringify": "^1.0.1",
"json5": "^1.0.1",
"karma": "3.1.4",
"karma-chrome-launcher": "2.1.1",

View file

@ -33,7 +33,6 @@ import { createReduceStream } from './reduce_stream';
* Concatenate values into an array:
* createListStream([1,2,3])
* .pipe(createConcatStream([]))
* .pipe(createJsonStringifyStream())
* .on('data', console.log)
* // logs "[1,2,3]"
*

View file

@ -20,16 +20,18 @@
import { createGzip, Z_BEST_COMPRESSION } from 'zlib';
import { PassThrough } from 'stream';
import stringify from 'json-stable-stringify';
import {
createMapStream,
createIntersperseStream,
createJsonStringifyStream
} from '../../../legacy/utils';
import { RECORD_SEPARATOR } from './constants';
export function createFormatArchiveStreams({ gzip = false } = {}) {
return [
createJsonStringifyStream({ pretty: true }),
createMapStream(record => stringify(record, { space: ' ' })),
createIntersperseStream(RECORD_SEPARATOR),
gzip ? createGzip({ level: Z_BEST_COMPRESSION }) : new PassThrough(),
];

View file

@ -23,7 +23,7 @@ import { PassThrough } from 'stream';
import {
createSplitStream,
createReplaceStream,
createJsonParseStream,
createMapStream,
} from '../../../legacy/utils';
import { RECORD_SEPARATOR } from './constants';
@ -33,6 +33,6 @@ export function createParseArchiveStreams({ gzip = false } = {}) {
gzip ? createGunzip() : new PassThrough(),
createReplaceStream('\r\n', '\n'),
createSplitStream(RECORD_SEPARATOR),
createJsonParseStream(),
createMapStream(json => JSON.parse(json.trim())),
];
}

View file

@ -39,8 +39,6 @@ export {
concatStreamProviders,
createConcatStream,
createIntersperseStream,
createJsonParseStream,
createJsonStringifyStream,
createListStream,
createPromiseFromStreams,
createReduceStream,

View file

@ -33,7 +33,6 @@ import { createReduceStream } from './reduce_stream';
* Concatenate values into an array:
* createListStream([1,2,3])
* .pipe(createConcatStream([]))
* .pipe(createJsonStringifyStream())
* .on('data', console.log)
* // logs "[1,2,3]"
*

View file

@ -22,7 +22,6 @@ export { createIntersperseStream } from './intersperse_stream';
export { createSplitStream } from './split_stream';
export { createListStream } from './list_stream';
export { createReduceStream } from './reduce_stream';
export { createJsonParseStream, createJsonStringifyStream } from './json_streams';
export { createPromiseFromStreams } from './promise_from_streams';
export { createConcatStream } from './concat_stream';
export { createMapStream } from './map_stream';

View file

@ -1,77 +0,0 @@
/*
* Licensed to Elasticsearch B.V. under one or more contributor
* license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright
* ownership. Elasticsearch B.V. licenses this file to you under
* the Apache License, Version 2.0 (the "License"); you may
* not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*/
import { Transform } from 'stream';
/**
* Create a Transform stream that accepts strings (in
* object mode) and parsed those streams to provide their
* JavaScript value.
*
* Parse errors are emitted with the "error" event, and
* if not caught will cause the process to crash. When caught
* the stream will continue to parse subsequent values.
*
* @return {Transform}
*/
export function createJsonParseStream() {
return new Transform({
writableObjectMode: true,
readableObjectMode: true,
transform(json, enc, callback) {
let parsed;
let error;
try {
parsed = JSON.parse(json);
} catch (_error) {
error = _error;
}
callback(error, parsed);
}
});
}
/**
* Create a Transform stream that accepts arbitrary JavaScript
* values, stringifies them, and provides the output in object
* mode to consumers.
*
* Serialization errors are emitted with the "error" event, and
* if not caught will cause the process to crash. When caught
* the stream will continue to stringify subsequent values.
*
* @param {Object} options
* @property {Boolean} options.pretty
* @return {Transform}
*/
export function createJsonStringifyStream({ pretty = false } = {}) {
return new Transform({
writableObjectMode: true,
readableObjectMode: true,
transform(json, enc, callback) {
try {
callback(null, JSON.stringify(json, null, pretty ? 2 : 0));
} catch (err) {
callback(err);
}
}
});
}

View file

@ -1,161 +0,0 @@
/*
* Licensed to Elasticsearch B.V. under one or more contributor
* license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright
* ownership. Elasticsearch B.V. licenses this file to you under
* the Apache License, Version 2.0 (the "License"); you may
* not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*/
import {
createPromiseFromStreams,
createListStream,
createConcatStream,
createJsonParseStream,
createJsonStringifyStream
} from './';
function createCircularStructure() {
const obj = {};
obj.obj = obj; // create circular reference
return obj;
}
describe('jsonParseStream', () => {
describe('standard usage', () => {
test('parses json strings', async () => {
const str = createJsonParseStream();
const dataPromise = new Promise((resolve, reject) => {
str.on('data', resolve);
str.on('error', reject);
});
str.write('{ "foo": "bar" }');
expect(await dataPromise).toEqual({
foo: 'bar'
});
});
test('parses json value passed to it from a list stream', async () => {
expect(await createPromiseFromStreams([
createListStream([
'"foo"',
'1'
]),
createJsonParseStream(),
createConcatStream([])
]))
.toEqual(['foo', 1]);
});
});
describe('error handling', () => {
test('emits an error when there is a parse failure', async () => {
const str = createJsonParseStream();
const errorPromise = new Promise(resolve => str.once('error', resolve));
str.write('{"partial');
const err = await errorPromise;
expect(err).toBeInstanceOf(Error);
expect(err).toHaveProperty('name', 'SyntaxError');
});
test('continues parsing after an error', async () => {
const str = createJsonParseStream();
const firstEmitPromise = new Promise(resolve => {
str.once('error', v => resolve({ name: 'error', value: v }));
str.once('data', v => resolve({ name: 'data', value: v }));
});
str.write('{"partial');
const firstEmit = await firstEmitPromise;
expect(firstEmit).toHaveProperty('name', 'error');
expect(firstEmit.value).toBeInstanceOf(Error);
const secondEmitPromise = new Promise(resolve => {
str.once('error', v => resolve({ name: 'error', value: v }));
str.once('data', v => resolve({ name: 'data', value: v }));
});
str.write('42');
const secondEmit = await secondEmitPromise;
expect(secondEmit).toHaveProperty('name', 'data');
expect(secondEmit).toHaveProperty('value', 42);
});
});
});
describe('jsonStringifyStream', () => {
describe('standard usage', () => {
test('stringifys js values', async () => {
const str = createJsonStringifyStream();
const dataPromise = new Promise((resolve, reject) => {
str.on('data', resolve);
str.on('error', reject);
});
str.write({ foo: 'bar' });
expect(await dataPromise).toBe('{"foo":"bar"}');
});
test('stringifys js values passed from a list stream', async () => {
const all = await createPromiseFromStreams([
createListStream([
'foo',
1
]),
createJsonStringifyStream(),
createConcatStream([])
]);
expect(all).toEqual(['"foo"', '1']);
});
});
describe('error handling', () => {
test('emits an error when there is a parse failure', async () => {
const str = createJsonStringifyStream();
const errorPromise = new Promise(resolve => str.once('error', resolve));
str.write(createCircularStructure());
const err = await errorPromise;
expect(err).toBeInstanceOf(Error);
expect(err).toHaveProperty('name', 'TypeError');
expect(err.message).toContain('circular');
});
test('continues parsing after an error', async () => {
const str = createJsonStringifyStream();
const firstEmitPromise = new Promise(resolve => {
str.once('error', v => resolve({ name: 'error', value: v }));
str.once('data', v => resolve({ name: 'data', value: v }));
});
str.write(createCircularStructure());
const firstEmit = await firstEmitPromise;
expect(firstEmit).toHaveProperty('name', 'error');
expect(firstEmit.value).toBeInstanceOf(Error);
const secondEmitPromise = new Promise(resolve => {
str.once('error', v => resolve({ name: 'error', value: v }));
str.once('data', v => resolve({ name: 'data', value: v }));
});
str.write('foo');
const secondEmit = await secondEmitPromise;
expect(secondEmit).toHaveProperty('name', 'data');
expect(secondEmit).toHaveProperty('value', '"foo"');
});
});
});

View file

@ -2,24 +2,24 @@
"type": "index",
"value": {
"index": "test3",
"settings": {
"index": {
"number_of_shards": "5",
"number_of_replicas": "1"
}
},
"mappings": {
"properties": {
"message": {
"type": "text",
"fields": {
"keyword": {
"type": "keyword",
"ignore_above": 256
"ignore_above": 256,
"type": "keyword"
}
}
},
"type": "text"
}
}
},
"settings": {
"index": {
"number_of_replicas": "1",
"number_of_shards": "5"
}
}
}
}
@ -28,18 +28,18 @@
"type": "index",
"value": {
"index": "test9",
"settings": {
"index": {
"number_of_shards": "5",
"number_of_replicas": "1"
}
},
"mappings": {
"properties": {
"date": {
"type": "date"
}
}
},
"settings": {
"index": {
"number_of_replicas": "1",
"number_of_shards": "5"
}
}
}
}
@ -48,24 +48,24 @@
"type": "index",
"value": {
"index": "test4",
"settings": {
"index": {
"number_of_shards": "5",
"number_of_replicas": "1"
}
},
"mappings": {
"properties": {
"message": {
"type": "text",
"fields": {
"keyword": {
"type": "keyword",
"ignore_above": 256
"ignore_above": 256,
"type": "keyword"
}
}
},
"type": "text"
}
}
},
"settings": {
"index": {
"number_of_replicas": "1",
"number_of_shards": "5"
}
}
}
}
@ -74,24 +74,24 @@
"type": "index",
"value": {
"index": "test2",
"settings": {
"index": {
"number_of_shards": "5",
"number_of_replicas": "1"
}
},
"mappings": {
"properties": {
"message": {
"type": "text",
"fields": {
"keyword": {
"type": "keyword",
"ignore_above": 256
"ignore_above": 256,
"type": "keyword"
}
}
},
"type": "text"
}
}
},
"settings": {
"index": {
"number_of_replicas": "1",
"number_of_shards": "5"
}
}
}
}
@ -100,18 +100,18 @@
"type": "index",
"value": {
"index": "test7",
"settings": {
"index": {
"number_of_shards": "5",
"number_of_replicas": "1"
}
},
"mappings": {
"properties": {
"date": {
"type": "date"
}
}
},
"settings": {
"index": {
"number_of_replicas": "1",
"number_of_shards": "5"
}
}
}
}
@ -120,18 +120,18 @@
"type": "index",
"value": {
"index": "test6",
"settings": {
"index": {
"number_of_shards": "5",
"number_of_replicas": "1"
}
},
"mappings": {
"properties": {
"date": {
"type": "date"
}
}
},
"settings": {
"index": {
"number_of_replicas": "1",
"number_of_shards": "5"
}
}
}
}
@ -140,18 +140,18 @@
"type": "index",
"value": {
"index": "test8",
"settings": {
"index": {
"number_of_shards": "5",
"number_of_replicas": "1"
}
},
"mappings": {
"properties": {
"date": {
"type": "date"
}
}
},
"settings": {
"index": {
"number_of_replicas": "1",
"number_of_shards": "5"
}
}
}
}
@ -160,18 +160,18 @@
"type": "index",
"value": {
"index": "test5",
"settings": {
"index": {
"number_of_shards": "5",
"number_of_replicas": "1"
}
},
"mappings": {
"properties": {
"date": {
"type": "date"
}
}
},
"settings": {
"index": {
"number_of_replicas": "1",
"number_of_shards": "5"
}
}
}
}
@ -180,24 +180,24 @@
"type": "index",
"value": {
"index": "test1",
"settings": {
"index": {
"number_of_shards": "5",
"number_of_replicas": "1"
}
},
"mappings": {
"properties": {
"message": {
"type": "text",
"fields": {
"keyword": {
"type": "keyword",
"ignore_above": 256
"ignore_above": 256,
"type": "keyword"
}
}
},
"type": "text"
}
}
},
"settings": {
"index": {
"number_of_replicas": "1",
"number_of_shards": "5"
}
}
}
}

View file

@ -2,48 +2,48 @@
"type": "index",
"value": {
"index": "animals-dogs-2018-01-01",
"settings": {
"index": {
"number_of_shards": "5",
"number_of_replicas": "1"
}
},
"mappings": {
"properties": {
"@timestamp": {
"type": "date"
},
"animal": {
"type": "text",
"fields": {
"keyword": {
"type": "keyword",
"ignore_above": 256
"ignore_above": 256,
"type": "keyword"
}
}
},
"type": "text"
},
"name": {
"type": "text",
"fields": {
"keyword": {
"type": "keyword",
"ignore_above": 256
"ignore_above": 256,
"type": "keyword"
}
}
},
"type": "text"
},
"sound": {
"type": "text",
"fields": {
"keyword": {
"type": "keyword",
"ignore_above": 256
"ignore_above": 256,
"type": "keyword"
}
}
},
"type": "text"
},
"weightLbs": {
"type": "long"
}
}
},
"settings": {
"index": {
"number_of_replicas": "1",
"number_of_shards": "5"
}
}
}
}
@ -52,48 +52,48 @@
"type": "index",
"value": {
"index": "animals-dogs-2018-04-10",
"settings": {
"index": {
"number_of_shards": "5",
"number_of_replicas": "1"
}
},
"mappings": {
"properties": {
"@timestamp": {
"type": "date"
},
"animal": {
"type": "text",
"fields": {
"keyword": {
"type": "keyword",
"ignore_above": 256
"ignore_above": 256,
"type": "keyword"
}
}
},
"type": "text"
},
"name": {
"type": "text",
"fields": {
"keyword": {
"type": "keyword",
"ignore_above": 256
"ignore_above": 256,
"type": "keyword"
}
}
},
"type": "text"
},
"sound": {
"type": "text",
"fields": {
"keyword": {
"type": "keyword",
"ignore_above": 256
"ignore_above": 256,
"type": "keyword"
}
}
},
"type": "text"
},
"weightLbs": {
"type": "long"
}
}
},
"settings": {
"index": {
"number_of_replicas": "1",
"number_of_shards": "5"
}
}
}
}
@ -102,48 +102,48 @@
"type": "index",
"value": {
"index": "animals-cats-2018-01-01",
"settings": {
"index": {
"number_of_shards": "5",
"number_of_replicas": "1"
}
},
"mappings": {
"properties": {
"@timestamp": {
"type": "date"
},
"animal": {
"type": "text",
"fields": {
"keyword": {
"type": "keyword",
"ignore_above": 256
"ignore_above": 256,
"type": "keyword"
}
}
},
"type": "text"
},
"name": {
"type": "text",
"fields": {
"keyword": {
"type": "keyword",
"ignore_above": 256
"ignore_above": 256,
"type": "keyword"
}
}
},
"type": "text"
},
"sound": {
"type": "text",
"fields": {
"keyword": {
"type": "keyword",
"ignore_above": 256
"ignore_above": 256,
"type": "keyword"
}
}
},
"type": "text"
},
"weightLbs": {
"type": "long"
}
}
},
"settings": {
"index": {
"number_of_replicas": "1",
"number_of_shards": "5"
}
}
}
}
@ -152,48 +152,48 @@
"type": "index",
"value": {
"index": "animals-cats-2018-04-10",
"settings": {
"index": {
"number_of_shards": "5",
"number_of_replicas": "1"
}
},
"mappings": {
"properties": {
"@timestamp": {
"type": "date"
},
"animal": {
"type": "text",
"fields": {
"keyword": {
"type": "keyword",
"ignore_above": 256
"ignore_above": 256,
"type": "keyword"
}
}
},
"type": "text"
},
"name": {
"type": "text",
"fields": {
"keyword": {
"type": "keyword",
"ignore_above": 256
"ignore_above": 256,
"type": "keyword"
}
}
},
"type": "text"
},
"sound": {
"type": "text",
"fields": {
"keyword": {
"type": "keyword",
"ignore_above": 256
"ignore_above": 256,
"type": "keyword"
}
}
},
"type": "text"
},
"weightLbs": {
"type": "long"
}
}
},
"settings": {
"index": {
"number_of_replicas": "1",
"number_of_shards": "5"
}
}
}
}
@ -202,12 +202,6 @@
"type": "index",
"value": {
"index": "dogbreeds",
"settings": {
"index": {
"number_of_shards": "5",
"number_of_replicas": "1"
}
},
"mappings": {
"properties": {
"activity level": {
@ -217,27 +211,33 @@
"type": "long"
},
"breed": {
"type": "text",
"fields": {
"keyword": {
"type": "keyword",
"ignore_above": 256
"ignore_above": 256,
"type": "keyword"
}
}
},
"type": "text"
},
"size": {
"type": "text",
"fields": {
"keyword": {
"type": "keyword",
"ignore_above": 256
"ignore_above": 256,
"type": "keyword"
}
}
},
"type": "text"
},
"trainability": {
"type": "long"
}
}
},
"settings": {
"index": {
"number_of_replicas": "1",
"number_of_shards": "5"
}
}
}
}
@ -246,27 +246,10 @@
"type": "index",
"value": {
"index": "logstash-0",
"settings": {
"index": {
"number_of_shards": "1",
"analysis": {
"analyzer": {
"makelogs_url": {
"type": "standard",
"max_token_length": "1000",
"tokenizer": "uax_url_email"
}
}
},
"number_of_replicas": "0"
}
},
"mappings": {
"dynamic_templates": [
{
"string_fields": {
"match": "*",
"match_mapping_type": "string",
"mapping": {
"fields": {
"raw": {
@ -274,37 +257,39 @@
}
},
"type": "text"
}
},
"match": "*",
"match_mapping_type": "string"
}
}
],
"properties": {
"@message": {
"type": "text",
"fields": {
"raw": {
"type": "keyword"
}
}
},
"type": "text"
},
"@tags": {
"type": "text",
"fields": {
"raw": {
"type": "keyword"
}
}
},
"type": "text"
},
"@timestamp": {
"type": "date"
},
"agent": {
"type": "text",
"fields": {
"raw": {
"type": "keyword"
}
}
},
"type": "text"
},
"bytes": {
"type": "long"
@ -313,12 +298,12 @@
"type": "ip"
},
"extension": {
"type": "text",
"fields": {
"raw": {
"type": "keyword"
}
}
},
"type": "text"
},
"geo": {
"properties": {
@ -337,52 +322,52 @@
}
},
"headings": {
"type": "text",
"fields": {
"raw": {
"type": "keyword"
}
}
},
"type": "text"
},
"host": {
"type": "text",
"fields": {
"raw": {
"type": "keyword"
}
}
},
"type": "text"
},
"id": {
"type": "integer"
},
"index": {
"type": "text",
"fields": {
"raw": {
"type": "keyword"
}
}
},
"type": "text"
},
"ip": {
"type": "ip"
},
"links": {
"type": "text",
"fields": {
"raw": {
"type": "keyword"
}
}
},
"type": "text"
},
"machine": {
"properties": {
"os": {
"type": "text",
"fields": {
"raw": {
"type": "keyword"
}
}
},
"type": "text"
},
"ram": {
"type": "long"
@ -427,179 +412,194 @@
"type": "date"
},
"article:section": {
"type": "text",
"fields": {
"raw": {
"type": "keyword"
}
}
},
"type": "text"
},
"article:tag": {
"type": "text",
"fields": {
"raw": {
"type": "keyword"
}
}
},
"type": "text"
},
"og:description": {
"type": "text",
"fields": {
"raw": {
"type": "keyword"
}
}
},
"type": "text"
},
"og:image": {
"type": "text",
"fields": {
"raw": {
"type": "keyword"
}
}
},
"type": "text"
},
"og:image:height": {
"type": "text",
"fields": {
"raw": {
"type": "keyword"
}
}
},
"type": "text"
},
"og:image:width": {
"type": "text",
"fields": {
"raw": {
"type": "keyword"
}
}
},
"type": "text"
},
"og:site_name": {
"type": "text",
"fields": {
"raw": {
"type": "keyword"
}
}
},
"type": "text"
},
"og:title": {
"type": "text",
"fields": {
"raw": {
"type": "keyword"
}
}
},
"type": "text"
},
"og:type": {
"type": "text",
"fields": {
"raw": {
"type": "keyword"
}
}
},
"type": "text"
},
"og:url": {
"type": "text",
"fields": {
"raw": {
"type": "keyword"
}
}
},
"type": "text"
},
"twitter:card": {
"type": "text",
"fields": {
"raw": {
"type": "keyword"
}
}
},
"type": "text"
},
"twitter:description": {
"type": "text",
"fields": {
"raw": {
"type": "keyword"
}
}
},
"type": "text"
},
"twitter:image": {
"type": "text",
"fields": {
"raw": {
"type": "keyword"
}
}
},
"type": "text"
},
"twitter:site": {
"type": "text",
"fields": {
"raw": {
"type": "keyword"
}
}
},
"type": "text"
},
"twitter:title": {
"type": "text",
"fields": {
"raw": {
"type": "keyword"
}
}
},
"type": "text"
},
"url": {
"type": "text",
"fields": {
"raw": {
"type": "keyword"
}
}
},
"type": "text"
}
}
},
"request": {
"type": "text",
"fields": {
"raw": {
"type": "keyword"
}
}
},
"type": "text"
},
"response": {
"type": "text",
"fields": {
"raw": {
"type": "keyword"
}
}
},
"type": "text"
},
"spaces": {
"type": "text",
"fields": {
"raw": {
"type": "keyword"
}
}
},
"type": "text"
},
"url": {
"type": "text",
"fields": {
"raw": {
"type": "keyword"
}
}
},
"type": "text"
},
"utc_time": {
"type": "date"
},
"xss": {
"type": "text",
"fields": {
"raw": {
"type": "keyword"
}
}
},
"type": "text"
}
}
},
"settings": {
"index": {
"analysis": {
"analyzer": {
"makelogs_url": {
"max_token_length": "1000",
"tokenizer": "uax_url_email",
"type": "standard"
}
}
},
"number_of_replicas": "0",
"number_of_shards": "1"
}
}
}
}

View file

@ -2,13 +2,6 @@
"type": "index",
"value": {
"index": ".kibana",
"settings": {
"index": {
"number_of_shards": "1",
"auto_expand_replicas": "0-1",
"number_of_replicas": "0"
}
},
"mappings": {
"dynamic": "strict",
"properties": {
@ -19,22 +12,22 @@
"type": "keyword"
},
"dateFormat:tz": {
"type": "text",
"fields": {
"keyword": {
"type": "keyword",
"ignore_above": 256
"ignore_above": 256,
"type": "keyword"
}
}
},
"type": "text"
},
"defaultIndex": {
"type": "text",
"fields": {
"keyword": {
"type": "keyword",
"ignore_above": 256
"ignore_above": 256,
"type": "keyword"
}
}
},
"type": "text"
},
"notifications:lifetime:banner": {
"type": "long"
@ -227,13 +220,13 @@
"type": "date"
},
"url": {
"type": "text",
"fields": {
"keyword": {
"type": "keyword",
"ignore_above": 2048
"ignore_above": 2048,
"type": "keyword"
}
}
},
"type": "text"
}
}
},
@ -267,6 +260,13 @@
}
}
}
},
"settings": {
"index": {
"auto_expand_replicas": "0-1",
"number_of_replicas": "0",
"number_of_shards": "1"
}
}
}
}

View file

@ -2,123 +2,8 @@
"type": "index",
"value": {
"index": ".kibana",
"settings": {
"index": {
"number_of_shards": "1",
"number_of_replicas": "1"
}
},
"mappings": {
"properties": {
"type": {
"type": "keyword"
},
"index-pattern": {
"dynamic": "strict",
"properties": {
"fieldFormatMap": {
"type": "text"
},
"fields": {
"type": "text"
},
"intervalName": {
"type": "keyword"
},
"notExpandable": {
"type": "boolean"
},
"sourceFilters": {
"type": "text"
},
"timeFieldName": {
"type": "keyword"
},
"title": {
"type": "text"
}
}
},
"search": {
"dynamic": "strict",
"properties": {
"columns": {
"type": "keyword"
},
"description": {
"type": "text"
},
"hits": {
"type": "integer"
},
"kibanaSavedObjectMeta": {
"properties": {
"searchSourceJSON": {
"type": "text"
}
}
},
"sort": {
"type": "keyword"
},
"title": {
"type": "text"
},
"version": {
"type": "integer"
}
}
},
"timelion-sheet": {
"dynamic": "strict",
"properties": {
"description": {
"type": "text"
},
"hits": {
"type": "integer"
},
"kibanaSavedObjectMeta": {
"properties": {
"searchSourceJSON": {
"type": "text"
}
}
},
"timelion_chart_height": {
"type": "integer"
},
"timelion_columns": {
"type": "integer"
},
"timelion_interval": {
"type": "keyword"
},
"timelion_other_interval": {
"type": "keyword"
},
"timelion_rows": {
"type": "integer"
},
"timelion_sheet": {
"type": "text"
},
"title": {
"type": "text"
},
"version": {
"type": "integer"
}
}
},
"server": {
"dynamic": "strict",
"properties": {
"uuid": {
"type": "keyword"
}
}
},
"config": {
"dynamic": "true",
"properties": {
@ -185,6 +70,138 @@
}
}
},
"index-pattern": {
"dynamic": "strict",
"properties": {
"fieldFormatMap": {
"type": "text"
},
"fields": {
"type": "text"
},
"intervalName": {
"type": "keyword"
},
"notExpandable": {
"type": "boolean"
},
"sourceFilters": {
"type": "text"
},
"timeFieldName": {
"type": "keyword"
},
"title": {
"type": "text"
}
}
},
"search": {
"dynamic": "strict",
"properties": {
"columns": {
"type": "keyword"
},
"description": {
"type": "text"
},
"hits": {
"type": "integer"
},
"kibanaSavedObjectMeta": {
"properties": {
"searchSourceJSON": {
"type": "text"
}
}
},
"sort": {
"type": "keyword"
},
"title": {
"type": "text"
},
"version": {
"type": "integer"
}
}
},
"server": {
"dynamic": "strict",
"properties": {
"uuid": {
"type": "keyword"
}
}
},
"timelion-sheet": {
"dynamic": "strict",
"properties": {
"description": {
"type": "text"
},
"hits": {
"type": "integer"
},
"kibanaSavedObjectMeta": {
"properties": {
"searchSourceJSON": {
"type": "text"
}
}
},
"timelion_chart_height": {
"type": "integer"
},
"timelion_columns": {
"type": "integer"
},
"timelion_interval": {
"type": "keyword"
},
"timelion_other_interval": {
"type": "keyword"
},
"timelion_rows": {
"type": "integer"
},
"timelion_sheet": {
"type": "text"
},
"title": {
"type": "text"
},
"version": {
"type": "integer"
}
}
},
"type": {
"type": "keyword"
},
"url": {
"dynamic": "strict",
"properties": {
"accessCount": {
"type": "long"
},
"accessDate": {
"type": "date"
},
"createDate": {
"type": "date"
},
"url": {
"fields": {
"keyword": {
"ignore_above": 2048,
"type": "keyword"
}
},
"type": "text"
}
}
},
"visualization": {
"dynamic": "strict",
"properties": {
@ -214,31 +231,14 @@
"type": "text"
}
}
},
"url": {
"dynamic": "strict",
"properties": {
"accessCount": {
"type": "long"
},
"accessDate": {
"type": "date"
},
"createDate": {
"type": "date"
},
"url": {
"type": "text",
"fields": {
"keyword": {
"type": "keyword",
"ignore_above": 2048
}
}
}
}
}
}
},
"settings": {
"index": {
"number_of_replicas": "1",
"number_of_shards": "1"
}
}
}
}

View file

@ -2,70 +2,12 @@
"type": "index",
"value": {
"index": ".kibana",
"settings": {
"index": {
"number_of_shards": "1",
"number_of_replicas": "1"
}
},
"mappings": {
"properties": {
"type": {
"type": "keyword"
},
"url": {
"dynamic": "strict",
"config": {
"dynamic": "true",
"properties": {
"accessCount": {
"type": "long"
},
"accessDate": {
"type": "date"
},
"createDate": {
"type": "date"
},
"url": {
"type": "text",
"fields": {
"keyword": {
"type": "keyword",
"ignore_above": 2048
}
}
}
}
},
"index-pattern": {
"dynamic": "strict",
"properties": {
"fieldFormatMap": {
"type": "text"
},
"fields": {
"type": "text"
},
"intervalName": {
"type": "keyword"
},
"notExpandable": {
"type": "boolean"
},
"sourceFilters": {
"type": "text"
},
"timeFieldName": {
"type": "keyword"
},
"title": {
"type": "text"
}
}
},
"server": {
"dynamic": "strict",
"properties": {
"uuid": {
"buildNum": {
"type": "keyword"
}
}
@ -128,20 +70,44 @@
}
}
},
"config": {
"dynamic": "true",
"index-pattern": {
"dynamic": "strict",
"properties": {
"buildNum": {
"fieldFormatMap": {
"type": "text"
},
"fields": {
"type": "text"
},
"intervalName": {
"type": "keyword"
},
"notExpandable": {
"type": "boolean"
},
"sourceFilters": {
"type": "text"
},
"timeFieldName": {
"type": "keyword"
},
"title": {
"type": "text"
}
}
},
"visualization": {
"search": {
"dynamic": "strict",
"properties": {
"columns": {
"type": "keyword"
},
"description": {
"type": "text"
},
"hits": {
"type": "integer"
},
"kibanaSavedObjectMeta": {
"properties": {
"searchSourceJSON": {
@ -149,20 +115,22 @@
}
}
},
"savedSearchId": {
"sort": {
"type": "keyword"
},
"title": {
"type": "text"
},
"uiStateJSON": {
"type": "text"
},
"version": {
"type": "integer"
},
"visState": {
"type": "text"
}
}
},
"server": {
"dynamic": "strict",
"properties": {
"uuid": {
"type": "keyword"
}
}
},
@ -208,18 +176,38 @@
}
}
},
"search": {
"type": {
"type": "keyword"
},
"url": {
"dynamic": "strict",
"properties": {
"columns": {
"type": "keyword"
"accessCount": {
"type": "long"
},
"accessDate": {
"type": "date"
},
"createDate": {
"type": "date"
},
"url": {
"fields": {
"keyword": {
"ignore_above": 2048,
"type": "keyword"
}
},
"type": "text"
}
}
},
"visualization": {
"dynamic": "strict",
"properties": {
"description": {
"type": "text"
},
"hits": {
"type": "integer"
},
"kibanaSavedObjectMeta": {
"properties": {
"searchSourceJSON": {
@ -227,18 +215,30 @@
}
}
},
"sort": {
"savedSearchId": {
"type": "keyword"
},
"title": {
"type": "text"
},
"uiStateJSON": {
"type": "text"
},
"version": {
"type": "integer"
},
"visState": {
"type": "text"
}
}
}
}
},
"settings": {
"index": {
"number_of_replicas": "1",
"number_of_shards": "1"
}
}
}
}

View file

@ -2,164 +2,21 @@
"type": "index",
"value": {
"index": ".kibana",
"settings": {
"index": {
"number_of_shards": "1",
"number_of_replicas": "1"
}
},
"mappings": {
"properties": {
"type": {
"type": "keyword"
},
"timelion-sheet": {
"dynamic": "strict",
"config": {
"dynamic": "true",
"properties": {
"description": {
"type": "text"
},
"hits": {
"type": "integer"
},
"kibanaSavedObjectMeta": {
"properties": {
"searchSourceJSON": {
"type": "text"
}
}
},
"timelion_chart_height": {
"type": "integer"
},
"timelion_columns": {
"type": "integer"
},
"timelion_interval": {
"buildNum": {
"type": "keyword"
},
"timelion_other_interval": {
"type": "keyword"
},
"timelion_rows": {
"type": "integer"
},
"timelion_sheet": {
"type": "text"
},
"title": {
"type": "text"
},
"version": {
"type": "integer"
}
}
},
"visualization": {
"dynamic": "strict",
"properties": {
"description": {
"type": "text"
},
"kibanaSavedObjectMeta": {
"properties": {
"searchSourceJSON": {
"type": "text"
}
}
},
"savedSearchId": {
"type": "keyword"
},
"title": {
"type": "text"
},
"uiStateJSON": {
"type": "text"
},
"version": {
"type": "integer"
},
"visState": {
"type": "text"
}
}
},
"search": {
"dynamic": "strict",
"properties": {
"columns": {
"type": "keyword"
},
"description": {
"type": "text"
},
"hits": {
"type": "integer"
},
"kibanaSavedObjectMeta": {
"properties": {
"searchSourceJSON": {
"type": "text"
}
}
},
"sort": {
"type": "keyword"
},
"title": {
"type": "text"
},
"version": {
"type": "integer"
}
}
},
"url": {
"dynamic": "strict",
"properties": {
"accessCount": {
"type": "long"
},
"accessDate": {
"type": "date"
},
"createDate": {
"type": "date"
},
"url": {
"type": "text",
"dateFormat:tz": {
"fields": {
"keyword": {
"type": "keyword",
"ignore_above": 2048
"ignore_above": 256,
"type": "keyword"
}
}
}
}
},
"index-pattern": {
"dynamic": "strict",
"properties": {
"fieldFormatMap": {
"type": "text"
},
"fields": {
"type": "text"
},
"intervalName": {
"type": "keyword"
},
"notExpandable": {
"type": "boolean"
},
"sourceFilters": {
"type": "text"
},
"timeFieldName": {
"type": "keyword"
},
"title": {
},
"type": "text"
}
}
@ -222,6 +79,62 @@
}
}
},
"index-pattern": {
"dynamic": "strict",
"properties": {
"fieldFormatMap": {
"type": "text"
},
"fields": {
"type": "text"
},
"intervalName": {
"type": "keyword"
},
"notExpandable": {
"type": "boolean"
},
"sourceFilters": {
"type": "text"
},
"timeFieldName": {
"type": "keyword"
},
"title": {
"type": "text"
}
}
},
"search": {
"dynamic": "strict",
"properties": {
"columns": {
"type": "keyword"
},
"description": {
"type": "text"
},
"hits": {
"type": "integer"
},
"kibanaSavedObjectMeta": {
"properties": {
"searchSourceJSON": {
"type": "text"
}
}
},
"sort": {
"type": "keyword"
},
"title": {
"type": "text"
},
"version": {
"type": "integer"
}
}
},
"server": {
"dynamic": "strict",
"properties": {
@ -230,24 +143,111 @@
}
}
},
"config": {
"dynamic": "true",
"timelion-sheet": {
"dynamic": "strict",
"properties": {
"buildNum": {
"type": "keyword"
"description": {
"type": "text"
},
"dateFormat:tz": {
"type": "text",
"fields": {
"keyword": {
"type": "keyword",
"ignore_above": 256
"hits": {
"type": "integer"
},
"kibanaSavedObjectMeta": {
"properties": {
"searchSourceJSON": {
"type": "text"
}
}
},
"timelion_chart_height": {
"type": "integer"
},
"timelion_columns": {
"type": "integer"
},
"timelion_interval": {
"type": "keyword"
},
"timelion_other_interval": {
"type": "keyword"
},
"timelion_rows": {
"type": "integer"
},
"timelion_sheet": {
"type": "text"
},
"title": {
"type": "text"
},
"version": {
"type": "integer"
}
}
},
"type": {
"type": "keyword"
},
"url": {
"dynamic": "strict",
"properties": {
"accessCount": {
"type": "long"
},
"accessDate": {
"type": "date"
},
"createDate": {
"type": "date"
},
"url": {
"fields": {
"keyword": {
"ignore_above": 2048,
"type": "keyword"
}
},
"type": "text"
}
}
},
"visualization": {
"dynamic": "strict",
"properties": {
"description": {
"type": "text"
},
"kibanaSavedObjectMeta": {
"properties": {
"searchSourceJSON": {
"type": "text"
}
}
},
"savedSearchId": {
"type": "keyword"
},
"title": {
"type": "text"
},
"uiStateJSON": {
"type": "text"
},
"version": {
"type": "integer"
},
"visState": {
"type": "text"
}
}
}
}
},
"settings": {
"index": {
"number_of_replicas": "1",
"number_of_shards": "1"
}
}
}
}

View file

@ -2,27 +2,27 @@
"type": "index",
"value": {
"index": "shakespeare",
"settings": {
"index": {
"number_of_shards": "5",
"number_of_replicas": "1"
}
},
"mappings": {
"properties": {
"speaker": {
"type": "keyword"
"line_id": {
"type": "integer"
},
"play_name": {
"type": "keyword"
},
"line_id": {
"type": "integer"
"speaker": {
"type": "keyword"
},
"speech_number": {
"type": "integer"
}
}
},
"settings": {
"index": {
"number_of_replicas": "1",
"number_of_shards": "5"
}
}
}
}

View file

@ -2,24 +2,24 @@
"type": "index",
"value": {
"index": "testlargestring",
"settings": {
"index": {
"number_of_shards": "5",
"number_of_replicas": "1"
}
},
"mappings": {
"properties": {
"mybook": {
"type": "text",
"fields": {
"keyword": {
"type": "keyword",
"ignore_above": 256
"ignore_above": 256,
"type": "keyword"
}
}
},
"type": "text"
}
}
},
"settings": {
"index": {
"number_of_replicas": "1",
"number_of_shards": "5"
}
}
}
}

View file

@ -2,12 +2,6 @@
"type": "index",
"value": {
"index": ".kibana",
"settings": {
"index": {
"number_of_shards": "1",
"number_of_replicas": "0"
}
},
"mappings": {
"dynamic": "strict",
"properties": {
@ -18,13 +12,13 @@
"type": "keyword"
},
"defaultIndex": {
"type": "text",
"fields": {
"keyword": {
"type": "keyword",
"ignore_above": 256
"ignore_above": 256,
"type": "keyword"
}
}
},
"type": "text"
}
}
},
@ -205,13 +199,13 @@
"type": "date"
},
"url": {
"type": "text",
"fields": {
"keyword": {
"type": "keyword",
"ignore_above": 2048
"ignore_above": 2048,
"type": "keyword"
}
}
},
"type": "text"
}
}
},
@ -245,6 +239,12 @@
}
}
}
},
"settings": {
"index": {
"number_of_replicas": "0",
"number_of_shards": "1"
}
}
}
}

View file

@ -1,13 +1,9 @@
{
"type": "index",
"value": {
"index": "kibana_sample_data_flights",
"settings": {
"index": {
"number_of_shards": "1",
"number_of_replicas": "0"
}
"aliases": {
},
"index": "kibana_sample_data_flights",
"mappings": {
"properties": {
"AvgTicketPrice": {
@ -93,6 +89,11 @@
}
}
},
"aliases": {}
"settings": {
"index": {
"number_of_replicas": "0",
"number_of_shards": "1"
}
}
}
}

View file

@ -2,6 +2,13 @@
"type": "index",
"value": {
"index": "testhuge",
"mappings": {
"properties": {
"date": {
"type": "date"
}
}
},
"settings": {
"index": {
"mapping": {
@ -9,15 +16,8 @@
"limit": "50000"
}
},
"number_of_shards": "5",
"number_of_replicas": "1"
}
},
"mappings": {
"properties": {
"date": {
"type": "date"
}
"number_of_replicas": "1",
"number_of_shards": "5"
}
}
}

View file

@ -2,27 +2,10 @@
"type": "index",
"value": {
"index": "logstash-2015.09.17",
"settings": {
"index": {
"number_of_shards": "1",
"analysis": {
"analyzer": {
"url": {
"type": "standard",
"max_token_length": "1000",
"tokenizer": "uax_url_email"
}
}
},
"number_of_replicas": "0"
}
},
"mappings": {
"dynamic_templates": [
{
"string_fields": {
"match": "*",
"match_mapping_type": "string",
"mapping": {
"fields": {
"raw": {
@ -30,40 +13,39 @@
}
},
"type": "text"
}
},
"match": "*",
"match_mapping_type": "string"
}
}
],
"properties": {
"type": {
"type": "keyword"
},
"@message": {
"type": "text",
"fields": {
"raw": {
"type": "keyword"
}
}
},
"type": "text"
},
"@tags": {
"type": "text",
"fields": {
"raw": {
"type": "keyword"
}
}
},
"type": "text"
},
"@timestamp": {
"type": "date"
},
"agent": {
"type": "text",
"fields": {
"raw": {
"type": "keyword"
}
}
},
"type": "text"
},
"bytes": {
"type": "long"
@ -72,12 +54,12 @@
"type": "ip"
},
"extension": {
"type": "text",
"fields": {
"raw": {
"type": "keyword"
}
}
},
"type": "text"
},
"geo": {
"properties": {
@ -96,52 +78,52 @@
}
},
"headings": {
"type": "text",
"fields": {
"raw": {
"type": "keyword"
}
}
},
"type": "text"
},
"host": {
"type": "text",
"fields": {
"raw": {
"type": "keyword"
}
}
},
"type": "text"
},
"id": {
"type": "integer"
},
"index": {
"type": "text",
"fields": {
"raw": {
"type": "keyword"
}
}
},
"type": "text"
},
"ip": {
"type": "ip"
},
"links": {
"type": "text",
"fields": {
"raw": {
"type": "keyword"
}
}
},
"type": "text"
},
"machine": {
"properties": {
"os": {
"type": "text",
"fields": {
"raw": {
"type": "keyword"
}
}
},
"type": "text"
},
"ram": {
"type": "long"
@ -186,179 +168,197 @@
"type": "date"
},
"article:section": {
"type": "text",
"fields": {
"raw": {
"type": "keyword"
}
}
},
"type": "text"
},
"article:tag": {
"type": "text",
"fields": {
"raw": {
"type": "keyword"
}
}
},
"type": "text"
},
"og:description": {
"type": "text",
"fields": {
"raw": {
"type": "keyword"
}
}
},
"type": "text"
},
"og:image": {
"type": "text",
"fields": {
"raw": {
"type": "keyword"
}
}
},
"type": "text"
},
"og:image:height": {
"type": "text",
"fields": {
"raw": {
"type": "keyword"
}
}
},
"type": "text"
},
"og:image:width": {
"type": "text",
"fields": {
"raw": {
"type": "keyword"
}
}
},
"type": "text"
},
"og:site_name": {
"type": "text",
"fields": {
"raw": {
"type": "keyword"
}
}
},
"type": "text"
},
"og:title": {
"type": "text",
"fields": {
"raw": {
"type": "keyword"
}
}
},
"type": "text"
},
"og:type": {
"type": "text",
"fields": {
"raw": {
"type": "keyword"
}
}
},
"type": "text"
},
"og:url": {
"type": "text",
"fields": {
"raw": {
"type": "keyword"
}
}
},
"type": "text"
},
"twitter:card": {
"type": "text",
"fields": {
"raw": {
"type": "keyword"
}
}
},
"type": "text"
},
"twitter:description": {
"type": "text",
"fields": {
"raw": {
"type": "keyword"
}
}
},
"type": "text"
},
"twitter:image": {
"type": "text",
"fields": {
"raw": {
"type": "keyword"
}
}
},
"type": "text"
},
"twitter:site": {
"type": "text",
"fields": {
"raw": {
"type": "keyword"
}
}
},
"type": "text"
},
"twitter:title": {
"type": "text",
"fields": {
"raw": {
"type": "keyword"
}
}
},
"type": "text"
},
"url": {
"type": "text",
"fields": {
"raw": {
"type": "keyword"
}
}
},
"type": "text"
}
}
},
"request": {
"type": "text",
"fields": {
"raw": {
"type": "keyword"
}
}
},
"type": "text"
},
"response": {
"type": "text",
"fields": {
"raw": {
"type": "keyword"
}
}
},
"type": "text"
},
"spaces": {
"type": "text",
"fields": {
"raw": {
"type": "keyword"
}
}
},
"type": "text"
},
"type": {
"type": "keyword"
},
"url": {
"type": "text",
"fields": {
"raw": {
"type": "keyword"
}
}
},
"type": "text"
},
"utc_time": {
"type": "date"
},
"xss": {
"type": "text",
"fields": {
"raw": {
"type": "keyword"
}
}
},
"type": "text"
}
}
},
"settings": {
"index": {
"analysis": {
"analyzer": {
"url": {
"max_token_length": "1000",
"tokenizer": "uax_url_email",
"type": "standard"
}
}
},
"number_of_replicas": "0",
"number_of_shards": "1"
}
}
}
}
@ -367,27 +367,10 @@
"type": "index",
"value": {
"index": "logstash-2015.09.18",
"settings": {
"index": {
"number_of_shards": "1",
"analysis": {
"analyzer": {
"url": {
"type": "standard",
"max_token_length": "1000",
"tokenizer": "uax_url_email"
}
}
},
"number_of_replicas": "0"
}
},
"mappings": {
"dynamic_templates": [
{
"string_fields": {
"match": "*",
"match_mapping_type": "string",
"mapping": {
"fields": {
"raw": {
@ -395,40 +378,39 @@
}
},
"type": "text"
}
},
"match": "*",
"match_mapping_type": "string"
}
}
],
"properties": {
"type": {
"type": "keyword"
},
"@message": {
"type": "text",
"fields": {
"raw": {
"type": "keyword"
}
}
},
"type": "text"
},
"@tags": {
"type": "text",
"fields": {
"raw": {
"type": "keyword"
}
}
},
"type": "text"
},
"@timestamp": {
"type": "date"
},
"agent": {
"type": "text",
"fields": {
"raw": {
"type": "keyword"
}
}
},
"type": "text"
},
"bytes": {
"type": "long"
@ -437,12 +419,12 @@
"type": "ip"
},
"extension": {
"type": "text",
"fields": {
"raw": {
"type": "keyword"
}
}
},
"type": "text"
},
"geo": {
"properties": {
@ -461,52 +443,52 @@
}
},
"headings": {
"type": "text",
"fields": {
"raw": {
"type": "keyword"
}
}
},
"type": "text"
},
"host": {
"type": "text",
"fields": {
"raw": {
"type": "keyword"
}
}
},
"type": "text"
},
"id": {
"type": "integer"
},
"index": {
"type": "text",
"fields": {
"raw": {
"type": "keyword"
}
}
},
"type": "text"
},
"ip": {
"type": "ip"
},
"links": {
"type": "text",
"fields": {
"raw": {
"type": "keyword"
}
}
},
"type": "text"
},
"machine": {
"properties": {
"os": {
"type": "text",
"fields": {
"raw": {
"type": "keyword"
}
}
},
"type": "text"
},
"ram": {
"type": "long"
@ -551,179 +533,197 @@
"type": "date"
},
"article:section": {
"type": "text",
"fields": {
"raw": {
"type": "keyword"
}
}
},
"type": "text"
},
"article:tag": {
"type": "text",
"fields": {
"raw": {
"type": "keyword"
}
}
},
"type": "text"
},
"og:description": {
"type": "text",
"fields": {
"raw": {
"type": "keyword"
}
}
},
"type": "text"
},
"og:image": {
"type": "text",
"fields": {
"raw": {
"type": "keyword"
}
}
},
"type": "text"
},
"og:image:height": {
"type": "text",
"fields": {
"raw": {
"type": "keyword"
}
}
},
"type": "text"
},
"og:image:width": {
"type": "text",
"fields": {
"raw": {
"type": "keyword"
}
}
},
"type": "text"
},
"og:site_name": {
"type": "text",
"fields": {
"raw": {
"type": "keyword"
}
}
},
"type": "text"
},
"og:title": {
"type": "text",
"fields": {
"raw": {
"type": "keyword"
}
}
},
"type": "text"
},
"og:type": {
"type": "text",
"fields": {
"raw": {
"type": "keyword"
}
}
},
"type": "text"
},
"og:url": {
"type": "text",
"fields": {
"raw": {
"type": "keyword"
}
}
},
"type": "text"
},
"twitter:card": {
"type": "text",
"fields": {
"raw": {
"type": "keyword"
}
}
},
"type": "text"
},
"twitter:description": {
"type": "text",
"fields": {
"raw": {
"type": "keyword"
}
}
},
"type": "text"
},
"twitter:image": {
"type": "text",
"fields": {
"raw": {
"type": "keyword"
}
}
},
"type": "text"
},
"twitter:site": {
"type": "text",
"fields": {
"raw": {
"type": "keyword"
}
}
},
"type": "text"
},
"twitter:title": {
"type": "text",
"fields": {
"raw": {
"type": "keyword"
}
}
},
"type": "text"
},
"url": {
"type": "text",
"fields": {
"raw": {
"type": "keyword"
}
}
},
"type": "text"
}
}
},
"request": {
"type": "text",
"fields": {
"raw": {
"type": "keyword"
}
}
},
"type": "text"
},
"response": {
"type": "text",
"fields": {
"raw": {
"type": "keyword"
}
}
},
"type": "text"
},
"spaces": {
"type": "text",
"fields": {
"raw": {
"type": "keyword"
}
}
},
"type": "text"
},
"type": {
"type": "keyword"
},
"url": {
"type": "text",
"fields": {
"raw": {
"type": "keyword"
}
}
},
"type": "text"
},
"utc_time": {
"type": "date"
},
"xss": {
"type": "text",
"fields": {
"raw": {
"type": "keyword"
}
}
},
"type": "text"
}
}
},
"settings": {
"index": {
"analysis": {
"analyzer": {
"url": {
"max_token_length": "1000",
"tokenizer": "uax_url_email",
"type": "standard"
}
}
},
"number_of_replicas": "0",
"number_of_shards": "1"
}
}
}
}

View file

@ -2,134 +2,8 @@
"type": "index",
"value": {
"index": ".kibana",
"settings": {
"index": {
"number_of_shards": "1",
"number_of_replicas": "1"
}
},
"mappings": {
"properties": {
"type": {
"type": "keyword"
},
"server": {
"dynamic": "strict",
"properties": {
"uuid": {
"type": "keyword"
}
}
},
"url": {
"dynamic": "strict",
"properties": {
"accessCount": {
"type": "long"
},
"accessDate": {
"type": "date"
},
"createDate": {
"type": "date"
},
"url": {
"type": "text",
"fields": {
"keyword": {
"type": "keyword",
"ignore_above": 2048
}
}
}
}
},
"search": {
"dynamic": "strict",
"properties": {
"columns": {
"type": "keyword"
},
"description": {
"type": "text"
},
"hits": {
"type": "integer"
},
"kibanaSavedObjectMeta": {
"properties": {
"searchSourceJSON": {
"type": "text"
}
}
},
"sort": {
"type": "keyword"
},
"title": {
"type": "text"
},
"version": {
"type": "integer"
}
}
},
"visualization": {
"dynamic": "strict",
"properties": {
"description": {
"type": "text"
},
"kibanaSavedObjectMeta": {
"properties": {
"searchSourceJSON": {
"type": "text"
}
}
},
"savedSearchId": {
"type": "keyword"
},
"title": {
"type": "text"
},
"uiStateJSON": {
"type": "text"
},
"version": {
"type": "integer"
},
"visState": {
"type": "text"
}
}
},
"index-pattern": {
"dynamic": "strict",
"properties": {
"fieldFormatMap": {
"type": "text"
},
"fields": {
"type": "text"
},
"intervalName": {
"type": "keyword"
},
"notExpandable": {
"type": "boolean"
},
"sourceFilters": {
"type": "text"
},
"timeFieldName": {
"type": "keyword"
},
"title": {
"type": "text"
}
}
},
"config": {
"dynamic": "true",
"properties": {
@ -196,6 +70,70 @@
}
}
},
"index-pattern": {
"dynamic": "strict",
"properties": {
"fieldFormatMap": {
"type": "text"
},
"fields": {
"type": "text"
},
"intervalName": {
"type": "keyword"
},
"notExpandable": {
"type": "boolean"
},
"sourceFilters": {
"type": "text"
},
"timeFieldName": {
"type": "keyword"
},
"title": {
"type": "text"
}
}
},
"search": {
"dynamic": "strict",
"properties": {
"columns": {
"type": "keyword"
},
"description": {
"type": "text"
},
"hits": {
"type": "integer"
},
"kibanaSavedObjectMeta": {
"properties": {
"searchSourceJSON": {
"type": "text"
}
}
},
"sort": {
"type": "keyword"
},
"title": {
"type": "text"
},
"version": {
"type": "integer"
}
}
},
"server": {
"dynamic": "strict",
"properties": {
"uuid": {
"type": "keyword"
}
}
},
"timelion-sheet": {
"dynamic": "strict",
"properties": {
@ -237,8 +175,70 @@
"type": "integer"
}
}
},
"type": {
"type": "keyword"
},
"url": {
"dynamic": "strict",
"properties": {
"accessCount": {
"type": "long"
},
"accessDate": {
"type": "date"
},
"createDate": {
"type": "date"
},
"url": {
"fields": {
"keyword": {
"ignore_above": 2048,
"type": "keyword"
}
},
"type": "text"
}
}
},
"visualization": {
"dynamic": "strict",
"properties": {
"description": {
"type": "text"
},
"kibanaSavedObjectMeta": {
"properties": {
"searchSourceJSON": {
"type": "text"
}
}
},
"savedSearchId": {
"type": "keyword"
},
"title": {
"type": "text"
},
"uiStateJSON": {
"type": "text"
},
"version": {
"type": "integer"
},
"visState": {
"type": "text"
}
}
}
}
},
"settings": {
"index": {
"number_of_replicas": "1",
"number_of_shards": "1"
}
}
}
}

View file

@ -1,14 +1,9 @@
{
"type": "index",
"value": {
"index": ".kibana",
"settings": {
"index": {
"number_of_shards": "1",
"auto_expand_replicas": "0-1",
"number_of_replicas": "0"
}
"aliases": {
},
"index": ".kibana",
"mappings": {
"dynamic": "strict",
"properties": {
@ -19,13 +14,13 @@
"type": "keyword"
},
"defaultIndex": {
"type": "text",
"fields": {
"keyword": {
"type": "keyword",
"ignore_above": 256
"ignore_above": 256,
"type": "keyword"
}
}
},
"type": "text"
}
}
},
@ -235,13 +230,13 @@
"type": "date"
},
"url": {
"type": "text",
"fields": {
"keyword": {
"type": "keyword",
"ignore_above": 2048
"ignore_above": 2048,
"type": "keyword"
}
}
},
"type": "text"
}
}
},
@ -276,6 +271,12 @@
}
}
},
"aliases": {}
"settings": {
"index": {
"auto_expand_replicas": "0-1",
"number_of_replicas": "0",
"number_of_shards": "1"
}
}
}
}

View file

@ -2,123 +2,8 @@
"type": "index",
"value": {
"index": ".kibana",
"settings": {
"index": {
"number_of_shards": "1",
"number_of_replicas": "1"
}
},
"mappings": {
"properties": {
"type": {
"type": "keyword"
},
"index-pattern": {
"dynamic": "strict",
"properties": {
"fieldFormatMap": {
"type": "text"
},
"fields": {
"type": "text"
},
"intervalName": {
"type": "keyword"
},
"notExpandable": {
"type": "boolean"
},
"sourceFilters": {
"type": "text"
},
"timeFieldName": {
"type": "keyword"
},
"title": {
"type": "text"
}
}
},
"search": {
"dynamic": "strict",
"properties": {
"columns": {
"type": "keyword"
},
"description": {
"type": "text"
},
"hits": {
"type": "integer"
},
"kibanaSavedObjectMeta": {
"properties": {
"searchSourceJSON": {
"type": "text"
}
}
},
"sort": {
"type": "keyword"
},
"title": {
"type": "text"
},
"version": {
"type": "integer"
}
}
},
"timelion-sheet": {
"dynamic": "strict",
"properties": {
"description": {
"type": "text"
},
"hits": {
"type": "integer"
},
"kibanaSavedObjectMeta": {
"properties": {
"searchSourceJSON": {
"type": "text"
}
}
},
"timelion_chart_height": {
"type": "integer"
},
"timelion_columns": {
"type": "integer"
},
"timelion_interval": {
"type": "keyword"
},
"timelion_other_interval": {
"type": "keyword"
},
"timelion_rows": {
"type": "integer"
},
"timelion_sheet": {
"type": "text"
},
"title": {
"type": "text"
},
"version": {
"type": "integer"
}
}
},
"server": {
"dynamic": "strict",
"properties": {
"uuid": {
"type": "keyword"
}
}
},
"config": {
"dynamic": "true",
"properties": {
@ -185,6 +70,138 @@
}
}
},
"index-pattern": {
"dynamic": "strict",
"properties": {
"fieldFormatMap": {
"type": "text"
},
"fields": {
"type": "text"
},
"intervalName": {
"type": "keyword"
},
"notExpandable": {
"type": "boolean"
},
"sourceFilters": {
"type": "text"
},
"timeFieldName": {
"type": "keyword"
},
"title": {
"type": "text"
}
}
},
"search": {
"dynamic": "strict",
"properties": {
"columns": {
"type": "keyword"
},
"description": {
"type": "text"
},
"hits": {
"type": "integer"
},
"kibanaSavedObjectMeta": {
"properties": {
"searchSourceJSON": {
"type": "text"
}
}
},
"sort": {
"type": "keyword"
},
"title": {
"type": "text"
},
"version": {
"type": "integer"
}
}
},
"server": {
"dynamic": "strict",
"properties": {
"uuid": {
"type": "keyword"
}
}
},
"timelion-sheet": {
"dynamic": "strict",
"properties": {
"description": {
"type": "text"
},
"hits": {
"type": "integer"
},
"kibanaSavedObjectMeta": {
"properties": {
"searchSourceJSON": {
"type": "text"
}
}
},
"timelion_chart_height": {
"type": "integer"
},
"timelion_columns": {
"type": "integer"
},
"timelion_interval": {
"type": "keyword"
},
"timelion_other_interval": {
"type": "keyword"
},
"timelion_rows": {
"type": "integer"
},
"timelion_sheet": {
"type": "text"
},
"title": {
"type": "text"
},
"version": {
"type": "integer"
}
}
},
"type": {
"type": "keyword"
},
"url": {
"dynamic": "strict",
"properties": {
"accessCount": {
"type": "long"
},
"accessDate": {
"type": "date"
},
"createDate": {
"type": "date"
},
"url": {
"fields": {
"keyword": {
"ignore_above": 2048,
"type": "keyword"
}
},
"type": "text"
}
}
},
"visualization": {
"dynamic": "strict",
"properties": {
@ -214,31 +231,14 @@
"type": "text"
}
}
},
"url": {
"dynamic": "strict",
"properties": {
"accessCount": {
"type": "long"
},
"accessDate": {
"type": "date"
},
"createDate": {
"type": "date"
},
"url": {
"type": "text",
"fields": {
"keyword": {
"type": "keyword",
"ignore_above": 2048
}
}
}
}
}
}
},
"settings": {
"index": {
"number_of_replicas": "1",
"number_of_shards": "1"
}
}
}
}

View file

@ -2,134 +2,8 @@
"type": "index",
"value": {
"index": ".kibana",
"settings": {
"index": {
"number_of_shards": "1",
"number_of_replicas": "1"
}
},
"mappings": {
"properties": {
"type": {
"type": "keyword"
},
"server": {
"dynamic": "strict",
"properties": {
"uuid": {
"type": "keyword"
}
}
},
"url": {
"dynamic": "strict",
"properties": {
"accessCount": {
"type": "long"
},
"accessDate": {
"type": "date"
},
"createDate": {
"type": "date"
},
"url": {
"type": "text",
"fields": {
"keyword": {
"type": "keyword",
"ignore_above": 2048
}
}
}
}
},
"search": {
"dynamic": "strict",
"properties": {
"columns": {
"type": "keyword"
},
"description": {
"type": "text"
},
"hits": {
"type": "integer"
},
"kibanaSavedObjectMeta": {
"properties": {
"searchSourceJSON": {
"type": "text"
}
}
},
"sort": {
"type": "keyword"
},
"title": {
"type": "text"
},
"version": {
"type": "integer"
}
}
},
"visualization": {
"dynamic": "strict",
"properties": {
"description": {
"type": "text"
},
"kibanaSavedObjectMeta": {
"properties": {
"searchSourceJSON": {
"type": "text"
}
}
},
"savedSearchId": {
"type": "keyword"
},
"title": {
"type": "text"
},
"uiStateJSON": {
"type": "text"
},
"version": {
"type": "integer"
},
"visState": {
"type": "text"
}
}
},
"index-pattern": {
"dynamic": "strict",
"properties": {
"fieldFormatMap": {
"type": "text"
},
"fields": {
"type": "text"
},
"intervalName": {
"type": "keyword"
},
"notExpandable": {
"type": "boolean"
},
"sourceFilters": {
"type": "text"
},
"timeFieldName": {
"type": "keyword"
},
"title": {
"type": "text"
}
}
},
"config": {
"dynamic": "true",
"properties": {
@ -196,6 +70,70 @@
}
}
},
"index-pattern": {
"dynamic": "strict",
"properties": {
"fieldFormatMap": {
"type": "text"
},
"fields": {
"type": "text"
},
"intervalName": {
"type": "keyword"
},
"notExpandable": {
"type": "boolean"
},
"sourceFilters": {
"type": "text"
},
"timeFieldName": {
"type": "keyword"
},
"title": {
"type": "text"
}
}
},
"search": {
"dynamic": "strict",
"properties": {
"columns": {
"type": "keyword"
},
"description": {
"type": "text"
},
"hits": {
"type": "integer"
},
"kibanaSavedObjectMeta": {
"properties": {
"searchSourceJSON": {
"type": "text"
}
}
},
"sort": {
"type": "keyword"
},
"title": {
"type": "text"
},
"version": {
"type": "integer"
}
}
},
"server": {
"dynamic": "strict",
"properties": {
"uuid": {
"type": "keyword"
}
}
},
"timelion-sheet": {
"dynamic": "strict",
"properties": {
@ -237,8 +175,70 @@
"type": "integer"
}
}
},
"type": {
"type": "keyword"
},
"url": {
"dynamic": "strict",
"properties": {
"accessCount": {
"type": "long"
},
"accessDate": {
"type": "date"
},
"createDate": {
"type": "date"
},
"url": {
"fields": {
"keyword": {
"ignore_above": 2048,
"type": "keyword"
}
},
"type": "text"
}
}
},
"visualization": {
"dynamic": "strict",
"properties": {
"description": {
"type": "text"
},
"kibanaSavedObjectMeta": {
"properties": {
"searchSourceJSON": {
"type": "text"
}
}
},
"savedSearchId": {
"type": "keyword"
},
"title": {
"type": "text"
},
"uiStateJSON": {
"type": "text"
},
"version": {
"type": "integer"
},
"visState": {
"type": "text"
}
}
}
}
},
"settings": {
"index": {
"number_of_replicas": "1",
"number_of_shards": "1"
}
}
}
}

View file

@ -2,134 +2,8 @@
"type": "index",
"value": {
"index": ".kibana",
"settings": {
"index": {
"number_of_shards": "1",
"number_of_replicas": "1"
}
},
"mappings": {
"properties": {
"type": {
"type": "keyword"
},
"server": {
"dynamic": "strict",
"properties": {
"uuid": {
"type": "keyword"
}
}
},
"url": {
"dynamic": "strict",
"properties": {
"accessCount": {
"type": "long"
},
"accessDate": {
"type": "date"
},
"createDate": {
"type": "date"
},
"url": {
"type": "text",
"fields": {
"keyword": {
"type": "keyword",
"ignore_above": 2048
}
}
}
}
},
"search": {
"dynamic": "strict",
"properties": {
"columns": {
"type": "keyword"
},
"description": {
"type": "text"
},
"hits": {
"type": "integer"
},
"kibanaSavedObjectMeta": {
"properties": {
"searchSourceJSON": {
"type": "text"
}
}
},
"sort": {
"type": "keyword"
},
"title": {
"type": "text"
},
"version": {
"type": "integer"
}
}
},
"visualization": {
"dynamic": "strict",
"properties": {
"description": {
"type": "text"
},
"kibanaSavedObjectMeta": {
"properties": {
"searchSourceJSON": {
"type": "text"
}
}
},
"savedSearchId": {
"type": "keyword"
},
"title": {
"type": "text"
},
"uiStateJSON": {
"type": "text"
},
"version": {
"type": "integer"
},
"visState": {
"type": "text"
}
}
},
"index-pattern": {
"dynamic": "strict",
"properties": {
"fieldFormatMap": {
"type": "text"
},
"fields": {
"type": "text"
},
"intervalName": {
"type": "keyword"
},
"notExpandable": {
"type": "boolean"
},
"sourceFilters": {
"type": "text"
},
"timeFieldName": {
"type": "keyword"
},
"title": {
"type": "text"
}
}
},
"config": {
"dynamic": "true",
"properties": {
@ -196,6 +70,70 @@
}
}
},
"index-pattern": {
"dynamic": "strict",
"properties": {
"fieldFormatMap": {
"type": "text"
},
"fields": {
"type": "text"
},
"intervalName": {
"type": "keyword"
},
"notExpandable": {
"type": "boolean"
},
"sourceFilters": {
"type": "text"
},
"timeFieldName": {
"type": "keyword"
},
"title": {
"type": "text"
}
}
},
"search": {
"dynamic": "strict",
"properties": {
"columns": {
"type": "keyword"
},
"description": {
"type": "text"
},
"hits": {
"type": "integer"
},
"kibanaSavedObjectMeta": {
"properties": {
"searchSourceJSON": {
"type": "text"
}
}
},
"sort": {
"type": "keyword"
},
"title": {
"type": "text"
},
"version": {
"type": "integer"
}
}
},
"server": {
"dynamic": "strict",
"properties": {
"uuid": {
"type": "keyword"
}
}
},
"timelion-sheet": {
"dynamic": "strict",
"properties": {
@ -237,8 +175,70 @@
"type": "integer"
}
}
},
"type": {
"type": "keyword"
},
"url": {
"dynamic": "strict",
"properties": {
"accessCount": {
"type": "long"
},
"accessDate": {
"type": "date"
},
"createDate": {
"type": "date"
},
"url": {
"fields": {
"keyword": {
"ignore_above": 2048,
"type": "keyword"
}
},
"type": "text"
}
}
},
"visualization": {
"dynamic": "strict",
"properties": {
"description": {
"type": "text"
},
"kibanaSavedObjectMeta": {
"properties": {
"searchSourceJSON": {
"type": "text"
}
}
},
"savedSearchId": {
"type": "keyword"
},
"title": {
"type": "text"
},
"uiStateJSON": {
"type": "text"
},
"version": {
"type": "integer"
},
"visState": {
"type": "text"
}
}
}
}
},
"settings": {
"index": {
"number_of_replicas": "1",
"number_of_shards": "1"
}
}
}
}

View file

@ -2,89 +2,8 @@
"type": "index",
"value": {
"index": ".kibana",
"settings": {
"index": {
"number_of_shards": "1",
"number_of_replicas": "1"
}
},
"mappings": {
"properties": {
"type": {
"type": "keyword"
},
"visualization": {
"dynamic": "strict",
"properties": {
"description": {
"type": "text"
},
"kibanaSavedObjectMeta": {
"properties": {
"searchSourceJSON": {
"type": "text"
}
}
},
"savedSearchId": {
"type": "keyword"
},
"title": {
"type": "text"
},
"uiStateJSON": {
"type": "text"
},
"version": {
"type": "integer"
},
"visState": {
"type": "text"
}
}
},
"timelion-sheet": {
"dynamic": "strict",
"properties": {
"description": {
"type": "text"
},
"hits": {
"type": "integer"
},
"kibanaSavedObjectMeta": {
"properties": {
"searchSourceJSON": {
"type": "text"
}
}
},
"timelion_chart_height": {
"type": "integer"
},
"timelion_columns": {
"type": "integer"
},
"timelion_interval": {
"type": "keyword"
},
"timelion_other_interval": {
"type": "keyword"
},
"timelion_rows": {
"type": "integer"
},
"timelion_sheet": {
"type": "text"
},
"title": {
"type": "text"
},
"version": {
"type": "integer"
}
}
},
"config": {
"dynamic": "true",
"properties": {
@ -177,14 +96,6 @@
}
}
},
"server": {
"dynamic": "strict",
"properties": {
"uuid": {
"type": "keyword"
}
}
},
"search": {
"dynamic": "strict",
"properties": {
@ -215,6 +126,59 @@
}
}
},
"server": {
"dynamic": "strict",
"properties": {
"uuid": {
"type": "keyword"
}
}
},
"timelion-sheet": {
"dynamic": "strict",
"properties": {
"description": {
"type": "text"
},
"hits": {
"type": "integer"
},
"kibanaSavedObjectMeta": {
"properties": {
"searchSourceJSON": {
"type": "text"
}
}
},
"timelion_chart_height": {
"type": "integer"
},
"timelion_columns": {
"type": "integer"
},
"timelion_interval": {
"type": "keyword"
},
"timelion_other_interval": {
"type": "keyword"
},
"timelion_rows": {
"type": "integer"
},
"timelion_sheet": {
"type": "text"
},
"title": {
"type": "text"
},
"version": {
"type": "integer"
}
}
},
"type": {
"type": "keyword"
},
"url": {
"dynamic": "strict",
"properties": {
@ -228,17 +192,53 @@
"type": "date"
},
"url": {
"type": "text",
"fields": {
"keyword": {
"type": "keyword",
"ignore_above": 2048
"ignore_above": 2048,
"type": "keyword"
}
},
"type": "text"
}
}
},
"visualization": {
"dynamic": "strict",
"properties": {
"description": {
"type": "text"
},
"kibanaSavedObjectMeta": {
"properties": {
"searchSourceJSON": {
"type": "text"
}
}
},
"savedSearchId": {
"type": "keyword"
},
"title": {
"type": "text"
},
"uiStateJSON": {
"type": "text"
},
"version": {
"type": "integer"
},
"visState": {
"type": "text"
}
}
}
}
},
"settings": {
"index": {
"number_of_replicas": "1",
"number_of_shards": "1"
}
}
}
}

View file

@ -2,51 +2,34 @@
"type": "index",
"value": {
"index": ".kibana",
"settings": {
"index": {
"number_of_shards": "1",
"number_of_replicas": "1"
}
},
"mappings": {
"properties": {
"type": {
"type": "keyword"
},
"index-pattern": {
"dynamic": "strict",
"config": {
"dynamic": "true",
"properties": {
"fieldFormatMap": {
"type": "text"
},
"fields": {
"type": "text"
},
"intervalName": {
"buildNum": {
"type": "keyword"
},
"notExpandable": {
"type": "boolean"
},
"sourceFilters": {
"dateFormat:tz": {
"fields": {
"keyword": {
"ignore_above": 256,
"type": "keyword"
}
},
"type": "text"
},
"timeFieldName": {
"type": "keyword"
},
"title": {
"defaultIndex": {
"fields": {
"keyword": {
"ignore_above": 256,
"type": "keyword"
}
},
"type": "text"
}
}
},
"server": {
"dynamic": "strict",
"properties": {
"uuid": {
"type": "keyword"
}
}
},
"dashboard": {
"dynamic": "strict",
"properties": {
@ -105,6 +88,32 @@
}
}
},
"index-pattern": {
"dynamic": "strict",
"properties": {
"fieldFormatMap": {
"type": "text"
},
"fields": {
"type": "text"
},
"intervalName": {
"type": "keyword"
},
"notExpandable": {
"type": "boolean"
},
"sourceFilters": {
"type": "text"
},
"timeFieldName": {
"type": "keyword"
},
"title": {
"type": "text"
}
}
},
"search": {
"dynamic": "strict",
"properties": {
@ -135,82 +144,11 @@
}
}
},
"url": {
"server": {
"dynamic": "strict",
"properties": {
"accessCount": {
"type": "long"
},
"accessDate": {
"type": "date"
},
"createDate": {
"type": "date"
},
"url": {
"type": "text",
"fields": {
"keyword": {
"type": "keyword",
"ignore_above": 2048
}
}
}
}
},
"config": {
"dynamic": "true",
"properties": {
"buildNum": {
"uuid": {
"type": "keyword"
},
"dateFormat:tz": {
"type": "text",
"fields": {
"keyword": {
"type": "keyword",
"ignore_above": 256
}
}
},
"defaultIndex": {
"type": "text",
"fields": {
"keyword": {
"type": "keyword",
"ignore_above": 256
}
}
}
}
},
"visualization": {
"dynamic": "strict",
"properties": {
"description": {
"type": "text"
},
"kibanaSavedObjectMeta": {
"properties": {
"searchSourceJSON": {
"type": "text"
}
}
},
"savedSearchId": {
"type": "keyword"
},
"title": {
"type": "text"
},
"uiStateJSON": {
"type": "text"
},
"version": {
"type": "integer"
},
"visState": {
"type": "text"
}
}
},
@ -255,8 +193,70 @@
"type": "integer"
}
}
},
"type": {
"type": "keyword"
},
"url": {
"dynamic": "strict",
"properties": {
"accessCount": {
"type": "long"
},
"accessDate": {
"type": "date"
},
"createDate": {
"type": "date"
},
"url": {
"fields": {
"keyword": {
"ignore_above": 2048,
"type": "keyword"
}
},
"type": "text"
}
}
},
"visualization": {
"dynamic": "strict",
"properties": {
"description": {
"type": "text"
},
"kibanaSavedObjectMeta": {
"properties": {
"searchSourceJSON": {
"type": "text"
}
}
},
"savedSearchId": {
"type": "keyword"
},
"title": {
"type": "text"
},
"uiStateJSON": {
"type": "text"
},
"version": {
"type": "integer"
},
"visState": {
"type": "text"
}
}
}
}
},
"settings": {
"index": {
"number_of_replicas": "1",
"number_of_shards": "1"
}
}
}
}

View file

@ -1,171 +1,171 @@
{
"value": {
"index": ".management-beats",
"id": "beat:qux",
"index": ".management-beats",
"source": {
"type": "beat",
"beat": {
"type": "filebeat",
"access_token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJjcmVhdGVkIjoiMjAxOC0wNi0zMFQwMzo0MjoxNS4yMzBaIiwiaWF0IjoxNTMwMzMwMTM1fQ.SSsX2Byyo1B1bGxV8C3G4QldhE5iH87EY_1r21-bwbI",
"active": true,
"host_ip": "1.2.3.4",
"host_name": "foo.bar.com",
"id": "qux",
"name": "qux_filebeat",
"access_token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJjcmVhdGVkIjoiMjAxOC0wNi0zMFQwMzo0MjoxNS4yMzBaIiwiaWF0IjoxNTMwMzMwMTM1fQ.SSsX2Byyo1B1bGxV8C3G4QldhE5iH87EY_1r21-bwbI"
}
"type": "filebeat"
},
"type": "beat"
}
}
}
{
"value": {
"index": ".management-beats",
"id": "beat:baz",
"index": ".management-beats",
"source": {
"type": "beat",
"beat": {
"type": "metricbeat",
"access_token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJjcmVhdGVkIjoiMjAxOC0wNi0zMFQwMzo0MjoxNS4yMzBaIiwiaWF0IjoxNTMwMzMwMTM1fQ.SSsX2Byyo1B1bGxV8C3G4QldhE5iH87EY_1r21-bwbI",
"active": true,
"host_ip": "22.33.11.44",
"host_name": "baz.bar.com",
"id": "baz",
"name": "baz_metricbeat",
"access_token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJjcmVhdGVkIjoiMjAxOC0wNi0zMFQwMzo0MjoxNS4yMzBaIiwiaWF0IjoxNTMwMzMwMTM1fQ.SSsX2Byyo1B1bGxV8C3G4QldhE5iH87EY_1r21-bwbI"
}
"type": "metricbeat"
},
"type": "beat"
}
}
}
{
"value": {
"index": ".management-beats",
"id": "beat:foo",
"index": ".management-beats",
"source": {
"type": "beat",
"beat": {
"type": "metricbeat",
"access_token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJjcmVhdGVkIjoiMjAxOC0wNi0zMFQwMzo0MjoxNS4yMzBaIiwiaWF0IjoxNTMwMzMwMTM1fQ.SSsX2Byyo1B1bGxV8C3G4QldhE5iH87EY_1r21-bwbI",
"active": true,
"host_ip": "1.2.3.4",
"host_name": "foo.bar.com",
"id": "foo",
"name": "foo_metricbeat",
"access_token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJjcmVhdGVkIjoiMjAxOC0wNi0zMFQwMzo0MjoxNS4yMzBaIiwiaWF0IjoxNTMwMzMwMTM1fQ.SSsX2Byyo1B1bGxV8C3G4QldhE5iH87EY_1r21-bwbI",
"verified_on": "2018-05-15T16:25:38.924Z",
"tags": [
"production",
"qa"
]
}
],
"type": "metricbeat",
"verified_on": "2018-05-15T16:25:38.924Z"
},
"type": "beat"
}
}
}
{
"value": {
"index": ".management-beats",
"id": "beat:bar",
"index": ".management-beats",
"source": {
"type": "beat",
"beat": {
"type": "filebeat",
"access_token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJjcmVhdGVkIjoiMjAxOC0wNi0zMFQwMzo0MjoxNS4yMzBaIiwiaWF0IjoxNTMwMzMwMTM1fQ.SSsX2Byyo1B1bGxV8C3G4QldhE5iH87EY_1r21-bwbI",
"active": true,
"host_ip": "11.22.33.44",
"host_name": "foo.com",
"id": "bar",
"name": "bar_filebeat",
"access_token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJjcmVhdGVkIjoiMjAxOC0wNi0zMFQwMzo0MjoxNS4yMzBaIiwiaWF0IjoxNTMwMzMwMTM1fQ.SSsX2Byyo1B1bGxV8C3G4QldhE5iH87EY_1r21-bwbI"
}
"type": "filebeat"
},
"type": "beat"
}
}
}
{
"value": {
"index": ".management-beats",
"id": "tag:production",
"index": ".management-beats",
"source": {
"type": "tag",
"tag": {
"color": "blue"
}
},
"type": "tag"
}
}
}
{
"value": {
"index": ".management-beats",
"id": "tag:development",
"index": ".management-beats",
"source": {
"type": "tag",
"tag": {
"color": "red"
}
},
"type": "tag"
}
}
}
{
"value": {
"index": ".management-beats",
"id": "tag:qa",
"index": ".management-beats",
"source": {
"type": "tag",
"tag": {
"color": "green"
}
},
"type": "tag"
}
}
}
{
"value": {
"index": ".management-beats",
"type": "_doc",
"id": "configuration_block:SDfsdfIBdsfsf50zbta",
"index": ".management-beats",
"source": {
"type": "configuration_block",
"configuration_block": {
"type": "output",
"config": "{ \"username\": \"some-username\", \"hosts\": [\"localhost:11211\"] }",
"description": "some description",
"tag": "production",
"last_updated": "2018-05-15T16:25:38.924Z",
"config": "{ \"username\": \"some-username\", \"hosts\": [\"localhost:11211\"] }"
}
}
"tag": "production",
"type": "output"
},
"type": "configuration_block"
},
"type": "_doc"
}
}
{
"value": {
"index": ".management-beats",
"type": "_doc",
"id": "configuration_block:W0tpsmIBdsfsf50zbta",
"index": ".management-beats",
"source": {
"type": "configuration_block",
"configuration_block": {
"type": "metricbeat.modules",
"tag": "production",
"config": "{ \"module\": \"memcached\", \"hosts\": [\"localhost:11211\"] }",
"last_updated": "2018-05-15T16:25:38.924Z",
"config": "{ \"module\": \"memcached\", \"hosts\": [\"localhost:11211\"] }"
}
}
"tag": "production",
"type": "metricbeat.modules"
},
"type": "configuration_block"
},
"type": "_doc"
}
}
{
"value": {
"index": ".management-beats",
"type": "_doc",
"id": "configuration_block:W0tpsmIBdwcYyG50zbta",
"index": ".management-beats",
"source": {
"type": "configuration_block",
"configuration_block": {
"type": "metricbeat.modules",
"tag": "qa",
"config": "{\"module\": \"memcached\", \"node.namespace\": \"node\", \"hosts\": [\"localhost:4949\"] }",
"last_updated": "2018-05-15T16:25:38.924Z",
"config": "{\"module\": \"memcached\", \"node.namespace\": \"node\", \"hosts\": [\"localhost:4949\"] }"
}
}
"tag": "qa",
"type": "metricbeat.modules"
},
"type": "configuration_block"
},
"type": "_doc"
}
}

View file

@ -1,13 +1,11 @@
{
"type": "index",
"value": {
"index": ".kibana_1",
"settings": {
"index": {
"number_of_shards": "1",
"number_of_replicas": "1"
"aliases": {
".kibana": {
}
},
"index": ".kibana_1",
"mappings": {
"dynamic": "strict",
"properties": {
@ -21,16 +19,16 @@
"type": "date"
},
"id": {
"type": "text",
"index": false
"index": false,
"type": "text"
},
"name": {
"type": "text",
"fields": {
"keyword": {
"type": "keyword"
}
}
},
"type": "text"
}
}
},
@ -170,8 +168,8 @@
}
},
"migrationVersion": {
"type": "object",
"dynamic": "true"
"dynamic": "true",
"type": "object"
},
"namespace": {
"type": "keyword"
@ -227,13 +225,13 @@
"type": "keyword"
},
"name": {
"type": "text",
"fields": {
"keyword": {
"type": "keyword",
"ignore_above": 2048
"ignore_above": 2048,
"type": "keyword"
}
}
},
"type": "text"
}
}
},
@ -303,13 +301,13 @@
"type": "date"
},
"url": {
"type": "text",
"fields": {
"keyword": {
"type": "keyword",
"ignore_above": 2048
"ignore_above": 2048,
"type": "keyword"
}
}
},
"type": "text"
}
}
},
@ -344,8 +342,11 @@
}
}
},
"aliases": {
".kibana": {}
"settings": {
"index": {
"number_of_replicas": "1",
"number_of_shards": "1"
}
}
}
}

View file

@ -2,146 +2,8 @@
"type": "index",
"value": {
"index": ".kibana",
"settings": {
"index": {
"number_of_shards": "1",
"number_of_replicas": "1"
}
},
"mappings": {
"properties": {
"type": {
"type": "keyword"
},
"index-pattern": {
"dynamic": "strict",
"properties": {
"fieldFormatMap": {
"type": "text"
},
"fields": {
"type": "text"
},
"intervalName": {
"type": "keyword"
},
"notExpandable": {
"type": "boolean"
},
"sourceFilters": {
"type": "text"
},
"timeFieldName": {
"type": "keyword"
},
"title": {
"type": "text"
}
}
},
"visualization": {
"dynamic": "strict",
"properties": {
"description": {
"type": "text"
},
"kibanaSavedObjectMeta": {
"properties": {
"searchSourceJSON": {
"type": "text"
}
}
},
"savedSearchId": {
"type": "keyword"
},
"title": {
"type": "text"
},
"uiStateJSON": {
"type": "text"
},
"version": {
"type": "integer"
},
"visState": {
"type": "text"
}
}
},
"server": {
"dynamic": "strict",
"properties": {
"uuid": {
"type": "keyword"
}
}
},
"url": {
"dynamic": "strict",
"properties": {
"accessCount": {
"type": "long"
},
"accessDate": {
"type": "date"
},
"createDate": {
"type": "date"
},
"url": {
"type": "text",
"fields": {
"keyword": {
"type": "keyword",
"ignore_above": 2048
}
}
}
}
},
"timelion-sheet": {
"dynamic": "strict",
"properties": {
"description": {
"type": "text"
},
"hits": {
"type": "integer"
},
"kibanaSavedObjectMeta": {
"properties": {
"searchSourceJSON": {
"type": "text"
}
}
},
"timelion_chart_height": {
"type": "integer"
},
"timelion_columns": {
"type": "integer"
},
"timelion_interval": {
"type": "keyword"
},
"timelion_other_interval": {
"type": "keyword"
},
"timelion_rows": {
"type": "integer"
},
"timelion_sheet": {
"type": "text"
},
"title": {
"type": "text"
},
"version": {
"type": "integer"
}
}
},
"config": {
"dynamic": "true",
"properties": {
@ -150,36 +12,6 @@
}
}
},
"graph-workspace": {
"dynamic": "strict",
"properties": {
"description": {
"type": "text"
},
"kibanaSavedObjectMeta": {
"properties": {
"searchSourceJSON": {
"type": "text"
}
}
},
"numLinks": {
"type": "integer"
},
"numVertices": {
"type": "integer"
},
"title": {
"type": "text"
},
"version": {
"type": "integer"
},
"wsState": {
"type": "text"
}
}
},
"dashboard": {
"dynamic": "strict",
"properties": {
@ -238,6 +70,62 @@
}
}
},
"graph-workspace": {
"dynamic": "strict",
"properties": {
"description": {
"type": "text"
},
"kibanaSavedObjectMeta": {
"properties": {
"searchSourceJSON": {
"type": "text"
}
}
},
"numLinks": {
"type": "integer"
},
"numVertices": {
"type": "integer"
},
"title": {
"type": "text"
},
"version": {
"type": "integer"
},
"wsState": {
"type": "text"
}
}
},
"index-pattern": {
"dynamic": "strict",
"properties": {
"fieldFormatMap": {
"type": "text"
},
"fields": {
"type": "text"
},
"intervalName": {
"type": "keyword"
},
"notExpandable": {
"type": "boolean"
},
"sourceFilters": {
"type": "text"
},
"timeFieldName": {
"type": "keyword"
},
"title": {
"type": "text"
}
}
},
"search": {
"dynamic": "strict",
"properties": {
@ -268,19 +156,21 @@
}
}
},
"spaceId": {
"type": "keyword"
"server": {
"dynamic": "strict",
"properties": {
"uuid": {
"type": "keyword"
}
}
},
"space": {
"properties": {
"name": {
"type": "text",
"fields": {
"keyword": {
"type": "keyword",
"ignore_above": 2048
}
}
"_reserved": {
"type": "boolean"
},
"color": {
"type": "keyword"
},
"description": {
"type": "text"
@ -288,15 +178,125 @@
"initials": {
"type": "keyword"
},
"color": {
"name": {
"fields": {
"keyword": {
"ignore_above": 2048,
"type": "keyword"
}
},
"type": "text"
}
}
},
"spaceId": {
"type": "keyword"
},
"timelion-sheet": {
"dynamic": "strict",
"properties": {
"description": {
"type": "text"
},
"hits": {
"type": "integer"
},
"kibanaSavedObjectMeta": {
"properties": {
"searchSourceJSON": {
"type": "text"
}
}
},
"timelion_chart_height": {
"type": "integer"
},
"timelion_columns": {
"type": "integer"
},
"timelion_interval": {
"type": "keyword"
},
"_reserved": {
"type": "boolean"
"timelion_other_interval": {
"type": "keyword"
},
"timelion_rows": {
"type": "integer"
},
"timelion_sheet": {
"type": "text"
},
"title": {
"type": "text"
},
"version": {
"type": "integer"
}
}
},
"type": {
"type": "keyword"
},
"url": {
"dynamic": "strict",
"properties": {
"accessCount": {
"type": "long"
},
"accessDate": {
"type": "date"
},
"createDate": {
"type": "date"
},
"url": {
"fields": {
"keyword": {
"ignore_above": 2048,
"type": "keyword"
}
},
"type": "text"
}
}
},
"visualization": {
"dynamic": "strict",
"properties": {
"description": {
"type": "text"
},
"kibanaSavedObjectMeta": {
"properties": {
"searchSourceJSON": {
"type": "text"
}
}
},
"savedSearchId": {
"type": "keyword"
},
"title": {
"type": "text"
},
"uiStateJSON": {
"type": "text"
},
"version": {
"type": "integer"
},
"visState": {
"type": "text"
}
}
}
}
},
"settings": {
"index": {
"number_of_replicas": "1",
"number_of_shards": "1"
}
}
}
}

View file

@ -2,127 +2,8 @@
"type": "index",
"value": {
"index": ".kibana",
"settings": {
"index": {
"number_of_shards": "1",
"number_of_replicas": "1"
}
},
"mappings": {
"properties": {
"type": {
"type": "keyword"
},
"search": {
"dynamic": "strict",
"properties": {
"columns": {
"type": "keyword"
},
"description": {
"type": "text"
},
"hits": {
"type": "integer"
},
"kibanaSavedObjectMeta": {
"properties": {
"searchSourceJSON": {
"type": "text"
}
}
},
"sort": {
"type": "keyword"
},
"title": {
"type": "text"
},
"version": {
"type": "integer"
}
}
},
"graph-workspace": {
"dynamic": "strict",
"properties": {
"description": {
"type": "text"
},
"kibanaSavedObjectMeta": {
"properties": {
"searchSourceJSON": {
"type": "text"
}
}
},
"numLinks": {
"type": "integer"
},
"numVertices": {
"type": "integer"
},
"title": {
"type": "text"
},
"version": {
"type": "integer"
},
"wsState": {
"type": "text"
}
}
},
"server": {
"dynamic": "strict",
"properties": {
"uuid": {
"type": "keyword"
}
}
},
"timelion-sheet": {
"dynamic": "strict",
"properties": {
"description": {
"type": "text"
},
"hits": {
"type": "integer"
},
"kibanaSavedObjectMeta": {
"properties": {
"searchSourceJSON": {
"type": "text"
}
}
},
"timelion_chart_height": {
"type": "integer"
},
"timelion_columns": {
"type": "integer"
},
"timelion_interval": {
"type": "keyword"
},
"timelion_other_interval": {
"type": "keyword"
},
"timelion_rows": {
"type": "integer"
},
"timelion_sheet": {
"type": "text"
},
"title": {
"type": "text"
},
"version": {
"type": "integer"
}
}
},
"config": {
"dynamic": "true",
"properties": {
@ -131,55 +12,6 @@
}
}
},
"url": {
"dynamic": "strict",
"properties": {
"accessCount": {
"type": "long"
},
"accessDate": {
"type": "date"
},
"createDate": {
"type": "date"
},
"url": {
"type": "text",
"fields": {
"keyword": {
"type": "keyword",
"ignore_above": 2048
}
}
}
}
},
"index-pattern": {
"dynamic": "strict",
"properties": {
"fieldFormatMap": {
"type": "text"
},
"fields": {
"type": "text"
},
"intervalName": {
"type": "keyword"
},
"notExpandable": {
"type": "boolean"
},
"sourceFilters": {
"type": "text"
},
"timeFieldName": {
"type": "keyword"
},
"title": {
"type": "text"
}
}
},
"dashboard": {
"dynamic": "strict",
"properties": {
@ -238,6 +70,196 @@
}
}
},
"graph-workspace": {
"dynamic": "strict",
"properties": {
"description": {
"type": "text"
},
"kibanaSavedObjectMeta": {
"properties": {
"searchSourceJSON": {
"type": "text"
}
}
},
"numLinks": {
"type": "integer"
},
"numVertices": {
"type": "integer"
},
"title": {
"type": "text"
},
"version": {
"type": "integer"
},
"wsState": {
"type": "text"
}
}
},
"index-pattern": {
"dynamic": "strict",
"properties": {
"fieldFormatMap": {
"type": "text"
},
"fields": {
"type": "text"
},
"intervalName": {
"type": "keyword"
},
"notExpandable": {
"type": "boolean"
},
"sourceFilters": {
"type": "text"
},
"timeFieldName": {
"type": "keyword"
},
"title": {
"type": "text"
}
}
},
"search": {
"dynamic": "strict",
"properties": {
"columns": {
"type": "keyword"
},
"description": {
"type": "text"
},
"hits": {
"type": "integer"
},
"kibanaSavedObjectMeta": {
"properties": {
"searchSourceJSON": {
"type": "text"
}
}
},
"sort": {
"type": "keyword"
},
"title": {
"type": "text"
},
"version": {
"type": "integer"
}
}
},
"server": {
"dynamic": "strict",
"properties": {
"uuid": {
"type": "keyword"
}
}
},
"space": {
"properties": {
"_reserved": {
"type": "boolean"
},
"color": {
"type": "keyword"
},
"description": {
"type": "text"
},
"initials": {
"type": "keyword"
},
"name": {
"fields": {
"keyword": {
"ignore_above": 2048,
"type": "keyword"
}
},
"type": "text"
}
}
},
"spaceId": {
"type": "keyword"
},
"timelion-sheet": {
"dynamic": "strict",
"properties": {
"description": {
"type": "text"
},
"hits": {
"type": "integer"
},
"kibanaSavedObjectMeta": {
"properties": {
"searchSourceJSON": {
"type": "text"
}
}
},
"timelion_chart_height": {
"type": "integer"
},
"timelion_columns": {
"type": "integer"
},
"timelion_interval": {
"type": "keyword"
},
"timelion_other_interval": {
"type": "keyword"
},
"timelion_rows": {
"type": "integer"
},
"timelion_sheet": {
"type": "text"
},
"title": {
"type": "text"
},
"version": {
"type": "integer"
}
}
},
"type": {
"type": "keyword"
},
"url": {
"dynamic": "strict",
"properties": {
"accessCount": {
"type": "long"
},
"accessDate": {
"type": "date"
},
"createDate": {
"type": "date"
},
"url": {
"fields": {
"keyword": {
"ignore_above": 2048,
"type": "keyword"
}
},
"type": "text"
}
}
},
"visualization": {
"dynamic": "strict",
"properties": {
@ -267,36 +289,14 @@
"type": "text"
}
}
},
"spaceId": {
"type": "keyword"
},
"space": {
"properties": {
"name": {
"type": "text",
"fields": {
"keyword": {
"type": "keyword",
"ignore_above": 2048
}
}
},
"description": {
"type": "text"
},
"initials": {
"type": "keyword"
},
"color": {
"type": "keyword"
},
"_reserved": {
"type": "boolean"
}
}
}
}
},
"settings": {
"index": {
"number_of_replicas": "1",
"number_of_shards": "1"
}
}
}
}

View file

@ -2,33 +2,33 @@
"type": "index",
"value": {
"index": "dlstest",
"settings": {
"index": {
"number_of_shards": "5",
"number_of_replicas": "1"
}
},
"mappings": {
"properties": {
"name": {
"type": "text",
"fields": {
"keyword": {
"type": "keyword",
"ignore_above": 256
"ignore_above": 256,
"type": "keyword"
}
}
},
"type": "text"
},
"region": {
"type": "text",
"fields": {
"keyword": {
"type": "keyword",
"ignore_above": 256
"ignore_above": 256,
"type": "keyword"
}
}
},
"type": "text"
}
}
},
"settings": {
"index": {
"number_of_replicas": "1",
"number_of_shards": "5"
}
}
}
}

View file

@ -2,127 +2,8 @@
"type": "index",
"value": {
"index": ".kibana",
"settings": {
"index": {
"number_of_shards": "1",
"number_of_replicas": "1"
}
},
"mappings": {
"properties": {
"type": {
"type": "keyword"
},
"server": {
"dynamic": "strict",
"properties": {
"uuid": {
"type": "keyword"
}
}
},
"search": {
"dynamic": "strict",
"properties": {
"columns": {
"type": "keyword"
},
"description": {
"type": "text"
},
"hits": {
"type": "integer"
},
"kibanaSavedObjectMeta": {
"properties": {
"searchSourceJSON": {
"type": "text"
}
}
},
"sort": {
"type": "keyword"
},
"title": {
"type": "text"
},
"version": {
"type": "integer"
}
}
},
"timelion-sheet": {
"dynamic": "strict",
"properties": {
"description": {
"type": "text"
},
"hits": {
"type": "integer"
},
"kibanaSavedObjectMeta": {
"properties": {
"searchSourceJSON": {
"type": "text"
}
}
},
"timelion_chart_height": {
"type": "integer"
},
"timelion_columns": {
"type": "integer"
},
"timelion_interval": {
"type": "keyword"
},
"timelion_other_interval": {
"type": "keyword"
},
"timelion_rows": {
"type": "integer"
},
"timelion_sheet": {
"type": "text"
},
"title": {
"type": "text"
},
"version": {
"type": "integer"
}
}
},
"visualization": {
"dynamic": "strict",
"properties": {
"description": {
"type": "text"
},
"kibanaSavedObjectMeta": {
"properties": {
"searchSourceJSON": {
"type": "text"
}
}
},
"savedSearchId": {
"type": "keyword"
},
"title": {
"type": "text"
},
"uiStateJSON": {
"type": "text"
},
"version": {
"type": "integer"
},
"visState": {
"type": "text"
}
}
},
"config": {
"dynamic": "true",
"properties": {
@ -130,36 +11,13 @@
"type": "keyword"
},
"dateFormat:tz": {
"type": "text",
"fields": {
"keyword": {
"type": "keyword",
"ignore_above": 256
"ignore_above": 256,
"type": "keyword"
}
}
}
}
},
"url": {
"dynamic": "strict",
"properties": {
"accessCount": {
"type": "long"
},
"accessDate": {
"type": "date"
},
"createDate": {
"type": "date"
},
"url": {
"type": "text",
"fields": {
"keyword": {
"type": "keyword",
"ignore_above": 2048
}
}
},
"type": "text"
}
}
},
@ -247,19 +105,51 @@
}
}
},
"spaceId": {
"type": "keyword"
"search": {
"dynamic": "strict",
"properties": {
"columns": {
"type": "keyword"
},
"description": {
"type": "text"
},
"hits": {
"type": "integer"
},
"kibanaSavedObjectMeta": {
"properties": {
"searchSourceJSON": {
"type": "text"
}
}
},
"sort": {
"type": "keyword"
},
"title": {
"type": "text"
},
"version": {
"type": "integer"
}
}
},
"server": {
"dynamic": "strict",
"properties": {
"uuid": {
"type": "keyword"
}
}
},
"space": {
"properties": {
"name": {
"type": "text",
"fields": {
"keyword": {
"type": "keyword",
"ignore_above": 2048
}
}
"_reserved": {
"type": "boolean"
},
"color": {
"type": "keyword"
},
"description": {
"type": "text"
@ -267,15 +157,125 @@
"initials": {
"type": "keyword"
},
"color": {
"name": {
"fields": {
"keyword": {
"ignore_above": 2048,
"type": "keyword"
}
},
"type": "text"
}
}
},
"spaceId": {
"type": "keyword"
},
"timelion-sheet": {
"dynamic": "strict",
"properties": {
"description": {
"type": "text"
},
"hits": {
"type": "integer"
},
"kibanaSavedObjectMeta": {
"properties": {
"searchSourceJSON": {
"type": "text"
}
}
},
"timelion_chart_height": {
"type": "integer"
},
"timelion_columns": {
"type": "integer"
},
"timelion_interval": {
"type": "keyword"
},
"_reserved": {
"type": "boolean"
"timelion_other_interval": {
"type": "keyword"
},
"timelion_rows": {
"type": "integer"
},
"timelion_sheet": {
"type": "text"
},
"title": {
"type": "text"
},
"version": {
"type": "integer"
}
}
},
"type": {
"type": "keyword"
},
"url": {
"dynamic": "strict",
"properties": {
"accessCount": {
"type": "long"
},
"accessDate": {
"type": "date"
},
"createDate": {
"type": "date"
},
"url": {
"fields": {
"keyword": {
"ignore_above": 2048,
"type": "keyword"
}
},
"type": "text"
}
}
},
"visualization": {
"dynamic": "strict",
"properties": {
"description": {
"type": "text"
},
"kibanaSavedObjectMeta": {
"properties": {
"searchSourceJSON": {
"type": "text"
}
}
},
"savedSearchId": {
"type": "keyword"
},
"title": {
"type": "text"
},
"uiStateJSON": {
"type": "text"
},
"version": {
"type": "integer"
},
"visState": {
"type": "text"
}
}
}
}
},
"settings": {
"index": {
"number_of_replicas": "1",
"number_of_shards": "1"
}
}
}
}

View file

@ -2,21 +2,15 @@
"type": "index",
"value": {
"index": "secrepo",
"settings": {
"index": {
"number_of_shards": "1",
"number_of_replicas": "1"
}
},
"mappings": {
"dynamic_templates": [
{
"strings": {
"match": "*",
"match_mapping_type": "string",
"mapping": {
"type": "keyword"
}
},
"match": "*",
"match_mapping_type": "string"
}
}
],
@ -67,13 +61,13 @@
"type": "keyword"
},
"params": {
"type": "text",
"fielddata": true,
"fields": {
"raw": {
"type": "keyword"
}
},
"fielddata": true
"type": "text"
},
"patch": {
"type": "keyword"
@ -88,15 +82,21 @@
"type": "ip"
},
"url": {
"type": "keyword",
"fields": {
"parts": {
"type": "text",
"fielddata": true
"fielddata": true,
"type": "text"
}
}
},
"type": "keyword"
}
}
},
"settings": {
"index": {
"number_of_replicas": "1",
"number_of_shards": "1"
}
}
}
}

File diff suppressed because it is too large Load diff

View file

@ -2,12 +2,6 @@
"type": "index",
"value": {
"index": ".kibana",
"settings": {
"index": {
"number_of_shards": "1",
"number_of_replicas": "1"
}
},
"mappings": {
"properties": {
"config": {
@ -17,13 +11,13 @@
"type": "keyword"
},
"dateFormat:tz": {
"type": "text",
"fields": {
"keyword": {
"type": "keyword",
"ignore_above": 256
"ignore_above": 256,
"type": "keyword"
}
}
},
"type": "text"
},
"xPackMonitoring:showBanner": {
"type": "boolean"
@ -181,6 +175,34 @@
}
}
},
"space": {
"properties": {
"_reserved": {
"type": "boolean"
},
"color": {
"type": "keyword"
},
"description": {
"type": "text"
},
"initials": {
"type": "keyword"
},
"name": {
"fields": {
"keyword": {
"ignore_above": 2048,
"type": "keyword"
}
},
"type": "text"
}
}
},
"spaceId": {
"type": "keyword"
},
"timelion-sheet": {
"dynamic": "strict",
"properties": {
@ -239,13 +261,13 @@
"type": "date"
},
"url": {
"type": "text",
"fields": {
"keyword": {
"type": "keyword",
"ignore_above": 2048
"ignore_above": 2048,
"type": "keyword"
}
}
},
"type": "text"
}
}
},
@ -278,36 +300,14 @@
"type": "text"
}
}
},
"spaceId": {
"type": "keyword"
},
"space": {
"properties": {
"name": {
"type": "text",
"fields": {
"keyword": {
"type": "keyword",
"ignore_above": 2048
}
}
},
"description": {
"type": "text"
},
"initials": {
"type": "keyword"
},
"color": {
"type": "keyword"
},
"_reserved": {
"type": "boolean"
}
}
}
}
},
"settings": {
"index": {
"number_of_replicas": "1",
"number_of_shards": "1"
}
}
}
}

View file

@ -2,12 +2,6 @@
"type": "index",
"value": {
"index": ".kibana",
"settings": {
"index": {
"number_of_shards": "1",
"number_of_replicas": "1"
}
},
"mappings": {
"properties": {
"config": {
@ -17,13 +11,13 @@
"type": "keyword"
},
"dateFormat:tz": {
"type": "text",
"fields": {
"keyword": {
"type": "keyword",
"ignore_above": 256
"ignore_above": 256,
"type": "keyword"
}
}
},
"type": "text"
},
"xPackMonitoring:showBanner": {
"type": "boolean"
@ -181,6 +175,34 @@
}
}
},
"space": {
"properties": {
"_reserved": {
"type": "boolean"
},
"color": {
"type": "keyword"
},
"description": {
"type": "text"
},
"initials": {
"type": "keyword"
},
"name": {
"fields": {
"keyword": {
"ignore_above": 2048,
"type": "keyword"
}
},
"type": "text"
}
}
},
"spaceId": {
"type": "keyword"
},
"timelion-sheet": {
"dynamic": "strict",
"properties": {
@ -239,13 +261,13 @@
"type": "date"
},
"url": {
"type": "text",
"fields": {
"keyword": {
"type": "keyword",
"ignore_above": 2048
"ignore_above": 2048,
"type": "keyword"
}
}
},
"type": "text"
}
}
},
@ -278,36 +300,14 @@
"type": "text"
}
}
},
"spaceId": {
"type": "keyword"
},
"space": {
"properties": {
"name": {
"type": "text",
"fields": {
"keyword": {
"type": "keyword",
"ignore_above": 2048
}
}
},
"description": {
"type": "text"
},
"initials": {
"type": "keyword"
},
"color": {
"type": "keyword"
},
"_reserved": {
"type": "boolean"
}
}
}
}
},
"settings": {
"index": {
"number_of_replicas": "1",
"number_of_shards": "1"
}
}
}
}

View file

@ -1,11 +1,10 @@
{
"type": "doc",
"value": {
"index": "geo_shapes",
"id": "1",
"index": "geo_shapes",
"source": {
"geometry": {
"type": "polygon",
"coordinates": [
[
[
@ -25,7 +24,8 @@
5
]
]
]
],
"type": "polygon"
},
"name": "alpha"
}
@ -35,11 +35,10 @@
{
"type": "doc",
"value": {
"index": "geo_shapes",
"id": "2",
"index": "geo_shapes",
"source": {
"geometry": {
"type": "polygon",
"coordinates": [
[
[
@ -59,7 +58,8 @@
5
]
]
]
],
"type": "polygon"
},
"name": "bravo"
}
@ -69,11 +69,10 @@
{
"type": "doc",
"value": {
"index": "geo_shapes",
"id": "3",
"index": "geo_shapes",
"source": {
"geometry": {
"type": "polygon",
"coordinates": [
[
[
@ -93,7 +92,8 @@
5
]
]
]
],
"type": "polygon"
},
"name": "charlie"
}
@ -103,11 +103,11 @@
{
"type": "doc",
"value": {
"index": "meta_for_geo_shapes",
"id": "1",
"index": "meta_for_geo_shapes",
"source": {
"shape_name": "alpha",
"prop1": 7
"prop1": 7,
"shape_name": "alpha"
}
}
}
@ -115,11 +115,11 @@
{
"type": "doc",
"value": {
"index": "meta_for_geo_shapes",
"id": "2",
"index": "meta_for_geo_shapes",
"source": {
"shape_name": "alpha",
"prop1": 8
"prop1": 8,
"shape_name": "alpha"
}
}
}
@ -127,11 +127,11 @@
{
"type": "doc",
"value": {
"index": "meta_for_geo_shapes",
"id": "3",
"index": "meta_for_geo_shapes",
"source": {
"shape_name": "alpha",
"prop1": 10
"prop1": 10,
"shape_name": "alpha"
}
}
}
@ -139,11 +139,11 @@
{
"type": "doc",
"value": {
"index": "meta_for_geo_shapes",
"id": "4",
"index": "meta_for_geo_shapes",
"source": {
"shape_name": "bravo",
"prop1": 3
"prop1": 3,
"shape_name": "bravo"
}
}
}
@ -151,23 +151,23 @@
{
"type": "doc",
"value": {
"index": "meta_for_geo_shapes",
"id": "5",
"source": {
"shape_name": "charlie",
"prop1": 11
}
}
}
{
"type": "doc",
"value": {
"index": "meta_for_geo_shapes",
"id": "6",
"source": {
"shape_name": "charlie",
"prop1": 12
"prop1": 11,
"shape_name": "charlie"
}
}
}
{
"type": "doc",
"value": {
"id": "6",
"index": "meta_for_geo_shapes",
"source": {
"prop1": 12,
"shape_name": "charlie"
}
}
}
@ -175,8 +175,8 @@
{
"type": "doc",
"value": {
"index": "antimeridian_points",
"id": "1",
"index": "antimeridian_points",
"source": {
"location": {
"lat": 0,
@ -189,8 +189,8 @@
{
"type": "doc",
"value": {
"index": "antimeridian_points",
"id": "2",
"index": "antimeridian_points",
"source": {
"location": {
"lat": 0,
@ -203,8 +203,8 @@
{
"type": "doc",
"value": {
"index": "antimeridian_points",
"id": "3",
"index": "antimeridian_points",
"source": {
"location": {
"lat": 0,
@ -217,11 +217,10 @@
{
"type": "doc",
"value": {
"index": "antimeridian_shapes",
"id": "1",
"index": "antimeridian_shapes",
"source": {
"location": {
"type": "polygon",
"coordinates": [
[
[
@ -241,7 +240,8 @@
5
]
]
]
],
"type": "polygon"
}
}
}
@ -250,11 +250,10 @@
{
"type": "doc",
"value": {
"index": "antimeridian_shapes",
"id": "2",
"index": "antimeridian_shapes",
"source": {
"location": {
"type": "polygon",
"coordinates": [
[
[
@ -274,7 +273,8 @@
5
]
]
]
],
"type": "polygon"
}
}
}
@ -283,11 +283,10 @@
{
"type": "doc",
"value": {
"index": "antimeridian_shapes",
"id": "3",
"index": "antimeridian_shapes",
"source": {
"location": {
"type": "polygon",
"coordinates": [
[
[
@ -307,7 +306,8 @@
5
]
]
]
],
"type": "polygon"
}
}
}

View file

@ -2,12 +2,6 @@
"type": "index",
"value": {
"index": "geo_shapes",
"settings": {
"index": {
"number_of_shards": "1",
"number_of_replicas": "0"
}
},
"mappings": {
"properties": {
"geometry": {
@ -17,6 +11,12 @@
"type": "keyword"
}
}
},
"settings": {
"index": {
"number_of_replicas": "0",
"number_of_shards": "1"
}
}
}
}
@ -25,18 +25,18 @@
"type": "index",
"value": {
"index": "meta_for_geo_shapes",
"settings": {
"index": {
"number_of_shards": "1",
"number_of_replicas": "0"
}
},
"mappings": {
"properties": {
"shape_name": {
"type": "keyword"
}
}
},
"settings": {
"index": {
"number_of_replicas": "0",
"number_of_shards": "1"
}
}
}
}
@ -45,18 +45,18 @@
"type": "index",
"value": {
"index": "antimeridian_points",
"settings": {
"index": {
"number_of_shards": "1",
"number_of_replicas": "0"
}
},
"mappings": {
"properties": {
"location": {
"type": "geo_point"
}
}
},
"settings": {
"index": {
"number_of_replicas": "0",
"number_of_shards": "1"
}
}
}
}
@ -65,18 +65,18 @@
"type": "index",
"value": {
"index": "antimeridian_shapes",
"settings": {
"index": {
"number_of_shards": "1",
"number_of_replicas": "0"
}
},
"mappings": {
"properties": {
"location": {
"type": "geo_shape"
}
}
},
"settings": {
"index": {
"number_of_replicas": "0",
"number_of_shards": "1"
}
}
}
}

File diff suppressed because one or more lines are too long

View file

@ -2,12 +2,6 @@
"type": "index",
"value": {
"index": ".kibana",
"settings": {
"index": {
"number_of_shards": "1",
"number_of_replicas": "0"
}
},
"mappings": {
"dynamic": "strict",
"properties": {
@ -21,16 +15,16 @@
"type": "date"
},
"id": {
"type": "text",
"index": false
"index": false,
"type": "text"
},
"name": {
"type": "text",
"fields": {
"keyword": {
"type": "keyword"
}
}
},
"type": "text"
}
}
},
@ -41,13 +35,13 @@
"type": "keyword"
},
"defaultIndex": {
"type": "text",
"fields": {
"keyword": {
"type": "keyword",
"ignore_above": 256
"ignore_above": 256,
"type": "keyword"
}
}
},
"type": "text"
}
}
},
@ -108,32 +102,6 @@
}
}
},
"map": {
"properties": {
"bounds": {
"type": "geo_shape",
"tree": "quadtree"
},
"description": {
"type": "text"
},
"layerListJSON": {
"type": "text"
},
"mapStateJSON": {
"type": "text"
},
"title": {
"type": "text"
},
"uiStateJSON": {
"type": "text"
},
"version": {
"type": "integer"
}
}
},
"graph-workspace": {
"properties": {
"description": {
@ -204,17 +172,43 @@
}
}
},
"map": {
"properties": {
"bounds": {
"tree": "quadtree",
"type": "geo_shape"
},
"description": {
"type": "text"
},
"layerListJSON": {
"type": "text"
},
"mapStateJSON": {
"type": "text"
},
"title": {
"type": "text"
},
"uiStateJSON": {
"type": "text"
},
"version": {
"type": "integer"
}
}
},
"migrationVersion": {
"dynamic": "true",
"properties": {
"index-pattern": {
"type": "text",
"fields": {
"keyword": {
"type": "keyword",
"ignore_above": 256
"ignore_above": 256,
"type": "keyword"
}
}
},
"type": "text"
}
}
},
@ -272,13 +266,13 @@
"type": "keyword"
},
"name": {
"type": "text",
"fields": {
"keyword": {
"type": "keyword",
"ignore_above": 2048
"ignore_above": 2048,
"type": "keyword"
}
}
},
"type": "text"
}
}
},
@ -348,13 +342,13 @@
"type": "date"
},
"url": {
"type": "text",
"fields": {
"keyword": {
"type": "keyword",
"ignore_above": 2048
"ignore_above": 2048,
"type": "keyword"
}
}
},
"type": "text"
}
}
},
@ -388,6 +382,12 @@
}
}
}
},
"settings": {
"index": {
"number_of_replicas": "0",
"number_of_shards": "1"
}
}
}
}
}

View file

@ -1,16 +1,17 @@
{
"type": "index",
"value": {
"aliases": {
},
"index": ".monitoring-beats-6-2018.08.31",
"settings": {
"index": {
"codec": "best_compression",
"number_of_shards": "1",
"auto_expand_replicas": "0-1",
"codec": "best_compression",
"format": "6",
"number_of_replicas": "0"
"number_of_replicas": "0",
"number_of_shards": "1"
}
},
"aliases": {}
}
}
}
}

View file

@ -1,33 +1,35 @@
{
"type": "index",
"value": {
"aliases": {
},
"index": ".monitoring-kibana-6-2018.07.23",
"settings": {
"index": {
"codec": "best_compression",
"number_of_shards": "1",
"auto_expand_replicas": "0-1",
"codec": "best_compression",
"format": "6",
"number_of_replicas": "0"
"number_of_replicas": "0",
"number_of_shards": "1"
}
},
"aliases": {}
}
}
}
{
"type": "index",
"value": {
"aliases": {
},
"index": ".monitoring-es-6-2018.07.23",
"settings": {
"index": {
"codec": "best_compression",
"number_of_shards": "1",
"auto_expand_replicas": "0-1",
"codec": "best_compression",
"format": "6",
"number_of_replicas": "0"
"number_of_replicas": "0",
"number_of_shards": "1"
}
},
"aliases": {}
}
}
}

View file

@ -4,11 +4,11 @@
"index": ".monitoring-beats-6-2018.02.09",
"settings": {
"index": {
"codec": "best_compression",
"number_of_shards": "1",
"auto_expand_replicas": "0-1",
"codec": "best_compression",
"format": "6",
"number_of_replicas": "0"
"number_of_replicas": "0",
"number_of_shards": "1"
}
}
}
@ -20,11 +20,11 @@
"index": ".monitoring-es-6-2018.02.09",
"settings": {
"index": {
"codec": "best_compression",
"number_of_shards": "1",
"auto_expand_replicas": "0-1",
"codec": "best_compression",
"format": "6",
"number_of_replicas": "0"
"number_of_replicas": "0",
"number_of_shards": "1"
}
}
}
@ -36,11 +36,11 @@
"index": ".monitoring-alerts-6",
"settings": {
"index": {
"codec": "best_compression",
"number_of_shards": "1",
"auto_expand_replicas": "0-1",
"codec": "best_compression",
"format": "6",
"number_of_replicas": "0"
"number_of_replicas": "0",
"number_of_shards": "1"
}
}
}
@ -52,12 +52,12 @@
"index": ".monitoring-kibana-6-2018.02.09",
"settings": {
"index": {
"codec": "best_compression",
"number_of_shards": "1",
"auto_expand_replicas": "0-1",
"codec": "best_compression",
"format": "6",
"number_of_replicas": "0"
"number_of_replicas": "0",
"number_of_shards": "1"
}
}
}
}
}

View file

@ -5,9 +5,9 @@
"settings": {
"index": {
"codec": "best_compression",
"number_of_shards": "1",
"format": "6",
"number_of_replicas": "1"
"number_of_replicas": "1",
"number_of_shards": "1"
}
}
}
@ -19,8 +19,8 @@
"index": ".monitoring-beats-6-2017.12.19",
"settings": {
"index": {
"number_of_shards": "5",
"number_of_replicas": "1"
"number_of_replicas": "1",
"number_of_shards": "5"
}
}
}
@ -33,10 +33,10 @@
"settings": {
"index": {
"codec": "best_compression",
"number_of_shards": "1",
"format": "6",
"number_of_replicas": "1"
"number_of_replicas": "1",
"number_of_shards": "1"
}
}
}
}
}

View file

@ -1,16 +1,17 @@
{
"type": "index",
"value": {
"aliases": {
},
"index": ".monitoring-es-6-2018.09.19",
"settings": {
"index": {
"codec": "best_compression",
"number_of_shards": "1",
"auto_expand_replicas": "0-1",
"codec": "best_compression",
"format": "6",
"number_of_replicas": "0"
"number_of_replicas": "0",
"number_of_shards": "1"
}
},
"aliases": {}
}
}
}
}

View file

@ -4,11 +4,11 @@
"index": ".monitoring-logstash-6-2018.01.22",
"settings": {
"index": {
"codec": "best_compression",
"number_of_shards": "1",
"auto_expand_replicas": "0-1",
"codec": "best_compression",
"format": "6",
"number_of_replicas": "0"
"number_of_replicas": "0",
"number_of_shards": "1"
}
}
}
@ -20,12 +20,12 @@
"index": ".monitoring-es-6-2018.01.22",
"settings": {
"index": {
"codec": "best_compression",
"number_of_shards": "1",
"auto_expand_replicas": "0-1",
"codec": "best_compression",
"format": "6",
"number_of_replicas": "0"
"number_of_replicas": "0",
"number_of_shards": "1"
}
}
}
}
}

View file

@ -5,9 +5,9 @@
"settings": {
"index": {
"codec": "best_compression",
"number_of_shards": "1",
"format": "6",
"number_of_replicas": "1"
"number_of_replicas": "1",
"number_of_shards": "1"
}
}
}
@ -20,9 +20,9 @@
"settings": {
"index": {
"codec": "best_compression",
"number_of_shards": "1",
"format": "6",
"number_of_replicas": "1"
"number_of_replicas": "1",
"number_of_shards": "1"
}
}
}
@ -35,9 +35,9 @@
"settings": {
"index": {
"codec": "best_compression",
"number_of_shards": "1",
"format": "6",
"number_of_replicas": "1"
"number_of_replicas": "1",
"number_of_shards": "1"
}
}
}
@ -50,10 +50,10 @@
"settings": {
"index": {
"codec": "best_compression",
"number_of_shards": "1",
"format": "6",
"number_of_replicas": "1"
"number_of_replicas": "1",
"number_of_shards": "1"
}
}
}
}
}

View file

@ -1,24 +1,16 @@
{
"type": "index",
"value": {
"index": ".monitoring-es-6-2017.08.15",
"settings": {
"index": {
"codec": "best_compression",
"number_of_shards": "1",
"auto_expand_replicas": "0-1",
"format": "6",
"number_of_replicas": "0"
}
"aliases": {
},
"index": ".monitoring-es-6-2017.08.15",
"mappings": {
"dynamic": "false",
"date_detection": false,
"dynamic": "false",
"properties": {
"ccr_auto_follow_stats": {
"properties": {
"auto_followed_clusters": {
"type": "nested",
"properties": {
"cluster_name": {
"type": "keyword"
@ -29,7 +21,8 @@
"time_since_last_check_millis": {
"type": "long"
}
}
},
"type": "nested"
},
"number_of_failed_follow_indices": {
"type": "long"
@ -41,7 +34,6 @@
"type": "long"
},
"recent_auto_follow_errors": {
"type": "nested",
"properties": {
"auto_follow_exception": {
"properties": {
@ -59,7 +51,8 @@
"timestamp": {
"type": "long"
}
}
},
"type": "nested"
}
}
},
@ -124,7 +117,6 @@
"type": "long"
},
"read_exceptions": {
"type": "nested",
"properties": {
"exception": {
"properties": {
@ -142,7 +134,8 @@
"retries": {
"type": "integer"
}
}
},
"type": "nested"
},
"remote_cluster": {
"type": "keyword"
@ -1069,8 +1062,8 @@
"type": "keyword"
},
"timestamp": {
"type": "date",
"format": "date_time"
"format": "date_time",
"type": "date"
},
"transport_address": {
"type": "keyword"
@ -1084,31 +1077,32 @@
"type": "keyword"
},
"timestamp": {
"type": "date",
"format": "date_time"
"format": "date_time",
"type": "date"
},
"type": {
"type": "keyword"
}
}
},
"aliases": {}
"settings": {
"index": {
"auto_expand_replicas": "0-1",
"codec": "best_compression",
"format": "6",
"number_of_replicas": "0",
"number_of_shards": "1"
}
}
}
}
{
"type": "index",
"value": {
"index": ".monitoring-logstash-6-2017.08.15",
"settings": {
"index": {
"codec": "best_compression",
"number_of_shards": "1",
"auto_expand_replicas": "0-1",
"format": "6",
"number_of_replicas": "0"
}
"aliases": {
},
"index": ".monitoring-logstash-6-2017.08.15",
"mappings": {
"dynamic": "false",
"properties": {
@ -1150,8 +1144,8 @@
"type": "keyword"
},
"representation": {
"type": "object",
"enabled": false
"enabled": false,
"type": "object"
},
"version": {
"type": "keyword"
@ -1338,7 +1332,6 @@
}
},
"pipelines": {
"type": "nested",
"properties": {
"ephemeral_id": {
"type": "keyword"
@ -1395,10 +1388,8 @@
}
},
"vertices": {
"type": "nested",
"properties": {
"double_gauges": {
"type": "nested",
"properties": {
"name": {
"type": "keyword"
@ -1406,7 +1397,8 @@
"value": {
"type": "double"
}
}
},
"type": "nested"
},
"duration_in_millis": {
"type": "long"
@ -1421,7 +1413,6 @@
"type": "keyword"
},
"long_counters": {
"type": "nested",
"properties": {
"name": {
"type": "keyword"
@ -1429,7 +1420,8 @@
"value": {
"type": "long"
}
}
},
"type": "nested"
},
"pipeline_ephemeral_id": {
"type": "keyword"
@ -1437,9 +1429,11 @@
"queue_push_duration_in_millis": {
"type": "long"
}
}
},
"type": "nested"
}
}
},
"type": "nested"
},
"process": {
"properties": {
@ -1498,8 +1492,8 @@
"type": "keyword"
},
"timestamp": {
"type": "date",
"format": "date_time"
"format": "date_time",
"type": "date"
},
"transport_address": {
"type": "keyword"
@ -1510,31 +1504,32 @@
}
},
"timestamp": {
"type": "date",
"format": "date_time"
"format": "date_time",
"type": "date"
},
"type": {
"type": "keyword"
}
}
},
"aliases": {}
"settings": {
"index": {
"auto_expand_replicas": "0-1",
"codec": "best_compression",
"format": "6",
"number_of_replicas": "0",
"number_of_shards": "1"
}
}
}
}
{
"type": "index",
"value": {
"index": ".monitoring-kibana-6-2017.08.15",
"settings": {
"index": {
"codec": "best_compression",
"number_of_shards": "1",
"auto_expand_replicas": "0-1",
"format": "6",
"number_of_replicas": "0"
}
"aliases": {
},
"index": ".monitoring-kibana-6-2017.08.15",
"mappings": {
"dynamic": "false",
"properties": {
@ -1727,8 +1722,8 @@
"type": "keyword"
},
"timestamp": {
"type": "date",
"format": "date_time"
"format": "date_time",
"type": "date"
},
"transport_address": {
"type": "keyword"
@ -1739,31 +1734,32 @@
}
},
"timestamp": {
"type": "date",
"format": "date_time"
"format": "date_time",
"type": "date"
},
"type": {
"type": "keyword"
}
}
},
"aliases": {}
"settings": {
"index": {
"auto_expand_replicas": "0-1",
"codec": "best_compression",
"format": "6",
"number_of_replicas": "0",
"number_of_shards": "1"
}
}
}
}
{
"type": "index",
"value": {
"index": ".monitoring-alerts-6",
"settings": {
"index": {
"codec": "best_compression",
"number_of_shards": "1",
"auto_expand_replicas": "0-1",
"format": "6",
"number_of_replicas": "0"
}
"aliases": {
},
"index": ".monitoring-alerts-6",
"mappings": {
"dynamic": "false",
"properties": {
@ -1809,6 +1805,14 @@
}
}
},
"aliases": {}
"settings": {
"index": {
"auto_expand_replicas": "0-1",
"codec": "best_compression",
"format": "6",
"number_of_replicas": "0",
"number_of_shards": "1"
}
}
}
}

View file

@ -4,11 +4,11 @@
"index": ".monitoring-beats-6-2018.02.20",
"settings": {
"index": {
"codec": "best_compression",
"number_of_shards": "1",
"auto_expand_replicas": "0-1",
"codec": "best_compression",
"format": "6",
"number_of_replicas": "0"
"number_of_replicas": "0",
"number_of_shards": "1"
}
}
}
@ -20,11 +20,11 @@
"index": ".monitoring-kibana-6-2018.02.20",
"settings": {
"index": {
"codec": "best_compression",
"number_of_shards": "1",
"auto_expand_replicas": "0-1",
"codec": "best_compression",
"format": "6",
"number_of_replicas": "0"
"number_of_replicas": "0",
"number_of_shards": "1"
}
}
}
@ -36,12 +36,12 @@
"index": ".monitoring-es-6-2018.02.20",
"settings": {
"index": {
"codec": "best_compression",
"number_of_shards": "1",
"auto_expand_replicas": "0-1",
"codec": "best_compression",
"format": "6",
"number_of_replicas": "0"
"number_of_replicas": "0",
"number_of_shards": "1"
}
}
}
}
}

Some files were not shown because too many files have changed in this diff Show more