From 3a8db73421174725c6bef0b11b3bd8a629602342 Mon Sep 17 00:00:00 2001 From: Krishna Chaitanya Reddy Burri Date: Thu, 29 Aug 2024 16:54:15 +0530 Subject: [PATCH] gigamon: Update package description and cleanup (#10879) Update package description and readme cleanup. Current package refers to be ingesting data from Filebeat. Updated this to Elastic Agent inside the package description. Other Cleanup: Fix comments positioning in ingest pipeline. Fix README indentation. Fix dashboards containing undefined index-pattern. --- packages/gigamon/_dev/build/docs/README.md | 26 +++---- packages/gigamon/changelog.yml | 14 ++++ .../elasticsearch/ingest_pipeline/default.yml | 11 +-- packages/gigamon/docs/README.md | 26 +++---- ...-032aab7b-87b2-444c-8c86-956d092598fb.json | 76 +++++++++---------- ...-3523b534-7525-44a7-808f-6a9f3235a67d.json | 40 +++++----- ...-46931a21-a33e-43af-aadf-da8d6446b9cc.json | 40 +++++----- ...-4ae2cd9a-3eef-42c6-a02c-731ce74d94ac.json | 32 ++++---- ...-62291e9e-8b75-4f23-9121-79959da99b3b.json | 12 +-- ...-64ca15b3-8327-4940-8b35-0e75ab3a73c6.json | 16 ++-- ...-855a64dc-1a72-403f-932b-a5b848378f7e.json | 40 +++++----- ...-8f772203-64e0-4d1b-bb0e-14fa57b4b754.json | 20 ++--- ...-d6cecabb-f026-4823-914d-b4d61fd61787.json | 32 ++++---- ...-d866be49-47b2-4306-a2be-d5cb6b6ab9c8.json | 64 ++++++++-------- ...-e192a946-8287-450a-a8f0-e23de9f95dae.json | 48 ++++++------ ...-e733c64e-6ea9-4dd6-a8ca-3914274598f3.json | 28 +++---- packages/gigamon/manifest.yml | 4 +- 17 files changed, 269 insertions(+), 260 deletions(-) diff --git a/packages/gigamon/_dev/build/docs/README.md b/packages/gigamon/_dev/build/docs/README.md index 0fe4c667884..73bf7354223 100644 --- a/packages/gigamon/_dev/build/docs/README.md +++ b/packages/gigamon/_dev/build/docs/README.md @@ -60,30 +60,30 @@ To add AMX application: 2. Enter the Alias for the application. Enter a port number for the Cloud Tool Ingestor Port. Then, click the Add button for Cloud Tool Exports. 3. You can export your Application Metadata Intelligence output to cloud tools. Enter the following details for the Cloud tool export in the Application quick view: - -**Alias**:Enter the alias name for the cloud tool export. + - **Alias**: Enter the alias name for the cloud tool export. - -**Cloud Tool**:Select the Cloud tool from the drop-down menu.If it is not available click "others". + - **Cloud Tool**: Select the Cloud tool from the drop-down menu.If it is not available click "others". - -**Endpoint**:Give the URL of the cloud tool instance with the correct port number in which the port is listening. + - **Endpoint**: Give the URL of the cloud tool instance with the correct port number in which the port is listening. - -**Headers**:Enter the secret header and enable secure keys + - **Headers**: Enter the secret header and enable secure keys - -**Enable Export**:Enable the box to export the Application Metadata Intelligence output in JSON format. + - **Enable Export**: Enable the box to export the Application Metadata Intelligence output in JSON format. - -**Zip**:Enable the box to compress the output file. + - **Zip**: Enable the box to compress the output file. - -**Interval**:The time interval (in seconds) in which the data should be uploaded periodically. The recommended minimum time interval is 10 seconds and the maximum time interval is 30 minutes. + - **Interval**: The time interval (in seconds) in which the data should be uploaded periodically. The recommended minimum time interval is 10 seconds and the maximum time interval is 30 minutes. - -**Parallel Writer**:Specifies the number of simultaneous JSON exports done. + - **Parallel Writer**: Specifies the number of simultaneous JSON exports done. - -**Export Retries**:The number of times the application tries to export the entries to Cloud Tool. The recommended minimum value is 4 and the maximum is 10. + - **Export Retries**: The number of times the application tries to export the entries to Cloud Tool. The recommended minimum value is 4 and the maximum is 10. - -**Maximum Entries**:The number of JSON entries in a file. The maximum number of allowed entries is 5000 and the minimum is 10, however 1000 is the default value. + - **Maximum Entries**: The number of JSON entries in a file. The maximum number of allowed entries is 5000 and the minimum is 10, however 1000 is the default value. - -**Labels**:Click Add. Enter the following details: + - **Labels**: Click Add. Enter the following details: - o Enter the Key . - o Enter the Value. + - Enter the **Key**. + - Enter the **Value**. 4. Click Deploy to deploy the monitoring session. The Select nodes to deploy the Monitoring Session dialog box appears. Select the GigaVUE V Series Node for which you wish to deploy the monitoring session. diff --git a/packages/gigamon/changelog.yml b/packages/gigamon/changelog.yml index 8725ed53796..3dd86e93395 100644 --- a/packages/gigamon/changelog.yml +++ b/packages/gigamon/changelog.yml @@ -1,4 +1,18 @@ # newer versions go on top +- version: "0.2.0" + changes: + - description: Update package description. + type: enhancement + link: https://github.com/elastic/integrations/pull/10879 + - description: Update README to fix indentation. + type: enhancement + link: https://github.com/elastic/integrations/pull/10879 + - description: Fix dashboards containing undefined index-pattern. + type: bugfix + link: https://github.com/elastic/integrations/pull/10879 + - description: Fix comments positioning in ingest pipeline. + type: bugfix + link: https://github.com/elastic/integrations/pull/10879 - version: "0.1.0" changes: - description: Initial release diff --git a/packages/gigamon/data_stream/ami/elasticsearch/ingest_pipeline/default.yml b/packages/gigamon/data_stream/ami/elasticsearch/ingest_pipeline/default.yml index 13969ead3c1..ff794d9c730 100644 --- a/packages/gigamon/data_stream/ami/elasticsearch/ingest_pipeline/default.yml +++ b/packages/gigamon/data_stream/ami/elasticsearch/ingest_pipeline/default.yml @@ -266,12 +266,12 @@ processors: - append: field: error.message value: 'Processor {{{_ingest.on_failure_processor_type}}} with tag {{{_ingest.on_failure_processor_tag}}} in pipeline {{{_ingest.pipeline}}} failed with message: {{{_ingest.on_failure_message}}}' + # convert dns_ fields to ip - convert: field: gigamon.ami.dns_arcount if: ctx.gigamon?.ami?.dns_arcount != null tag: convert_dns_arcount type: long - # convert dns_ fields to ip on_failure: - remove: field: gigamon.ami.dns_arcount @@ -284,7 +284,6 @@ processors: if: ctx.gigamon?.ami?.dns_reverse_addr != null tag: convert_dns_reverse_addr type: ip - # convert dns_ fields to double on_failure: - remove: field: gigamon.ami.dns_reverse_addr @@ -292,12 +291,12 @@ processors: - append: field: error.message value: 'Processor {{{_ingest.on_failure_processor_type}}} with tag {{{_ingest.on_failure_processor_tag}}} in pipeline {{{_ingest.pipeline}}} failed with message: {{{_ingest.on_failure_message}}}' + # convert dns_ fields to double - convert: field: gigamon.ami.dns_response_time if: ctx.gigamon?.ami?.dns_response_time != null tag: convert_dns_response_time type: double - # convert http_ fields to long on_failure: - remove: field: gigamon.ami.dns_response_time @@ -305,6 +304,7 @@ processors: - append: field: error.message value: 'Processor {{{_ingest.on_failure_processor_type}}} with tag {{{_ingest.on_failure_processor_tag}}} in pipeline {{{_ingest.pipeline}}} failed with message: {{{_ingest.on_failure_message}}}' + # convert http_ fields to long - convert: field: gigamon.ami.http_code if: ctx.gigamon?.ami?.http_code != null @@ -831,11 +831,6 @@ processors: - json if: ctx.tags == null || !(ctx.tags.contains('preserve_duplicate_custom_fields')) ignore_missing: true - - remove: - field: event.original - if: ctx.tags == null || !(ctx.tags.contains('preserve_original_event')) - ignore_failure: true - ignore_missing: true - script: lang: painless description: Drops null/empty values recursively. diff --git a/packages/gigamon/docs/README.md b/packages/gigamon/docs/README.md index 00b25abf2cb..b7f4b2d74f3 100644 --- a/packages/gigamon/docs/README.md +++ b/packages/gigamon/docs/README.md @@ -60,30 +60,30 @@ To add AMX application: 2. Enter the Alias for the application. Enter a port number for the Cloud Tool Ingestor Port. Then, click the Add button for Cloud Tool Exports. 3. You can export your Application Metadata Intelligence output to cloud tools. Enter the following details for the Cloud tool export in the Application quick view: - -**Alias**:Enter the alias name for the cloud tool export. + - **Alias**: Enter the alias name for the cloud tool export. - -**Cloud Tool**:Select the Cloud tool from the drop-down menu.If it is not available click "others". + - **Cloud Tool**: Select the Cloud tool from the drop-down menu.If it is not available click "others". - -**Endpoint**:Give the URL of the cloud tool instance with the correct port number in which the port is listening. + - **Endpoint**: Give the URL of the cloud tool instance with the correct port number in which the port is listening. - -**Headers**:Enter the secret header and enable secure keys + - **Headers**: Enter the secret header and enable secure keys - -**Enable Export**:Enable the box to export the Application Metadata Intelligence output in JSON format. + - **Enable Export**: Enable the box to export the Application Metadata Intelligence output in JSON format. - -**Zip**:Enable the box to compress the output file. + - **Zip**: Enable the box to compress the output file. - -**Interval**:The time interval (in seconds) in which the data should be uploaded periodically. The recommended minimum time interval is 10 seconds and the maximum time interval is 30 minutes. + - **Interval**: The time interval (in seconds) in which the data should be uploaded periodically. The recommended minimum time interval is 10 seconds and the maximum time interval is 30 minutes. - -**Parallel Writer**:Specifies the number of simultaneous JSON exports done. + - **Parallel Writer**: Specifies the number of simultaneous JSON exports done. - -**Export Retries**:The number of times the application tries to export the entries to Cloud Tool. The recommended minimum value is 4 and the maximum is 10. + - **Export Retries**: The number of times the application tries to export the entries to Cloud Tool. The recommended minimum value is 4 and the maximum is 10. - -**Maximum Entries**:The number of JSON entries in a file. The maximum number of allowed entries is 5000 and the minimum is 10, however 1000 is the default value. + - **Maximum Entries**: The number of JSON entries in a file. The maximum number of allowed entries is 5000 and the minimum is 10, however 1000 is the default value. - -**Labels**:Click Add. Enter the following details: + - **Labels**: Click Add. Enter the following details: - o Enter the Key . - o Enter the Value. + - Enter the **Key**. + - Enter the **Value**. 4. Click Deploy to deploy the monitoring session. The Select nodes to deploy the Monitoring Session dialog box appears. Select the GigaVUE V Series Node for which you wish to deploy the monitoring session. diff --git a/packages/gigamon/kibana/dashboard/gigamon-032aab7b-87b2-444c-8c86-956d092598fb.json b/packages/gigamon/kibana/dashboard/gigamon-032aab7b-87b2-444c-8c86-956d092598fb.json index d2cbef791d4..1ae3d2207c8 100644 --- a/packages/gigamon/kibana/dashboard/gigamon-032aab7b-87b2-444c-8c86-956d092598fb.json +++ b/packages/gigamon/kibana/dashboard/gigamon-032aab7b-87b2-444c-8c86-956d092598fb.json @@ -62,7 +62,7 @@ "attributes": { "references": [ { - "id": "e3f451b1-4c23-4305-bcbf-0bc812d1ba07", + "id": "logs-*", "name": "indexpattern-datasource-layer-7c68c54d-62b4-49f1-8a13-f778321dd524", "type": "index-pattern" } @@ -209,7 +209,7 @@ "attributes": { "references": [ { - "id": "e3f451b1-4c23-4305-bcbf-0bc812d1ba07", + "id": "logs-*", "name": "indexpattern-datasource-layer-5c045cd1-896d-4616-ab58-e438179a1271", "type": "index-pattern" } @@ -361,7 +361,7 @@ "attributes": { "references": [ { - "id": "e3f451b1-4c23-4305-bcbf-0bc812d1ba07", + "id": "logs-*", "name": "indexpattern-datasource-layer-b41c5eb7-b859-49fd-98e0-3f44e409b57e", "type": "index-pattern" } @@ -525,7 +525,7 @@ "attributes": { "references": [ { - "id": "e3f451b1-4c23-4305-bcbf-0bc812d1ba07", + "id": "logs-*", "name": "indexpattern-datasource-layer-f00fe1d2-0b00-4926-ba8b-50f5098b4aec", "type": "index-pattern" } @@ -686,7 +686,7 @@ "attributes": { "references": [ { - "id": "e3f451b1-4c23-4305-bcbf-0bc812d1ba07", + "id": "logs-*", "name": "indexpattern-datasource-layer-d38e1fb2-0496-472a-82f2-7c88d7f947d4", "type": "index-pattern" } @@ -837,12 +837,12 @@ "attributes": { "references": [ { - "id": "e3f451b1-4c23-4305-bcbf-0bc812d1ba07", + "id": "logs-*", "name": "indexpattern-datasource-layer-a267cd60-3767-4e26-8b44-4761dd601e16", "type": "index-pattern" }, { - "id": "e3f451b1-4c23-4305-bcbf-0bc812d1ba07", + "id": "logs-*", "name": "c001313b-a4ee-4ec8-91bb-e412b3bbe5d2", "type": "index-pattern" } @@ -976,7 +976,7 @@ "attributes": { "references": [ { - "id": "e3f451b1-4c23-4305-bcbf-0bc812d1ba07", + "id": "logs-*", "name": "indexpattern-datasource-layer-f8c599bc-4580-4a39-a5fa-1cc2a68260d7", "type": "index-pattern" } @@ -1201,7 +1201,7 @@ "attributes": { "references": [ { - "id": "e3f451b1-4c23-4305-bcbf-0bc812d1ba07", + "id": "logs-*", "name": "indexpattern-datasource-layer-e6f6eaaa-bde7-4b77-a5a3-2cbdc2449a35", "type": "index-pattern" } @@ -1359,7 +1359,7 @@ "attributes": { "references": [ { - "id": "e3f451b1-4c23-4305-bcbf-0bc812d1ba07", + "id": "logs-*", "name": "indexpattern-datasource-layer-fd16c376-c72d-484f-b22d-b1e48d9806c1", "type": "index-pattern" } @@ -1606,22 +1606,22 @@ "attributes": { "references": [ { - "id": "e3f451b1-4c23-4305-bcbf-0bc812d1ba07", + "id": "logs-*", "name": "indexpattern-datasource-layer-a82f90ee-acf4-4ff5-899f-a5e07ae82bf7", "type": "index-pattern" }, { - "id": "e3f451b1-4c23-4305-bcbf-0bc812d1ba07", + "id": "logs-*", "name": "d8152df4-c3d5-4e93-ac0d-9d13a3cd834e", "type": "index-pattern" }, { - "id": "e3f451b1-4c23-4305-bcbf-0bc812d1ba07", + "id": "logs-*", "name": "088f2453-2e6e-4f79-adf6-f3ee0d498e49", "type": "index-pattern" }, { - "id": "e3f451b1-4c23-4305-bcbf-0bc812d1ba07", + "id": "logs-*", "name": "14efcd52-a120-4efe-8502-da61db173619", "type": "index-pattern" } @@ -1791,7 +1791,7 @@ "attributes": { "references": [ { - "id": "e3f451b1-4c23-4305-bcbf-0bc812d1ba07", + "id": "logs-*", "name": "indexpattern-datasource-layer-707db7dc-7bda-4553-b9a6-cbeba1925faf", "type": "index-pattern" } @@ -1952,7 +1952,7 @@ "attributes": { "references": [ { - "id": "e3f451b1-4c23-4305-bcbf-0bc812d1ba07", + "id": "logs-*", "name": "indexpattern-datasource-layer-9ad9bf45-e8a5-4971-a6d9-f10c483725bc", "type": "index-pattern" } @@ -2112,7 +2112,7 @@ "attributes": { "references": [ { - "id": "e3f451b1-4c23-4305-bcbf-0bc812d1ba07", + "id": "logs-*", "name": "indexpattern-datasource-layer-eea40633-1ee7-46a8-88f2-fc96ea82626e", "type": "index-pattern" } @@ -2295,7 +2295,7 @@ "attributes": { "references": [ { - "id": "e3f451b1-4c23-4305-bcbf-0bc812d1ba07", + "id": "logs-*", "name": "indexpattern-datasource-layer-1a46766c-98d3-4c59-955f-ad248e69c09d", "type": "index-pattern" } @@ -2444,7 +2444,7 @@ "attributes": { "references": [ { - "id": "e3f451b1-4c23-4305-bcbf-0bc812d1ba07", + "id": "logs-*", "name": "indexpattern-datasource-layer-6df89022-0b31-47d3-b7b4-b39627957e1c", "type": "index-pattern" } @@ -2590,97 +2590,97 @@ "managed": false, "references": [ { - "id": "e3f451b1-4c23-4305-bcbf-0bc812d1ba07", + "id": "logs-*", "name": "9398dc6a-34e1-4932-a812-4aa0eb66c174:indexpattern-datasource-layer-7c68c54d-62b4-49f1-8a13-f778321dd524", "type": "index-pattern" }, { - "id": "e3f451b1-4c23-4305-bcbf-0bc812d1ba07", + "id": "logs-*", "name": "dff9d72d-84a2-485f-895f-d41ceb25b537:indexpattern-datasource-layer-5c045cd1-896d-4616-ab58-e438179a1271", "type": "index-pattern" }, { - "id": "e3f451b1-4c23-4305-bcbf-0bc812d1ba07", + "id": "logs-*", "name": "09fe9c07-9113-427b-9c1d-c50defd14c0a:indexpattern-datasource-layer-b41c5eb7-b859-49fd-98e0-3f44e409b57e", "type": "index-pattern" }, { - "id": "e3f451b1-4c23-4305-bcbf-0bc812d1ba07", + "id": "logs-*", "name": "4b26f1c1-a5e3-4373-801a-9606d43da277:indexpattern-datasource-layer-f00fe1d2-0b00-4926-ba8b-50f5098b4aec", "type": "index-pattern" }, { - "id": "e3f451b1-4c23-4305-bcbf-0bc812d1ba07", + "id": "logs-*", "name": "e35868f4-1c6e-4eff-a933-08884a7fc300:indexpattern-datasource-layer-d38e1fb2-0496-472a-82f2-7c88d7f947d4", "type": "index-pattern" }, { - "id": "e3f451b1-4c23-4305-bcbf-0bc812d1ba07", + "id": "logs-*", "name": "039714a2-0b5f-4ce1-aea0-35887146d978:indexpattern-datasource-layer-a267cd60-3767-4e26-8b44-4761dd601e16", "type": "index-pattern" }, { - "id": "e3f451b1-4c23-4305-bcbf-0bc812d1ba07", + "id": "logs-*", "name": "039714a2-0b5f-4ce1-aea0-35887146d978:c001313b-a4ee-4ec8-91bb-e412b3bbe5d2", "type": "index-pattern" }, { - "id": "e3f451b1-4c23-4305-bcbf-0bc812d1ba07", + "id": "logs-*", "name": "846e11e1-efc8-4311-88a7-cadb7aca1ad4:indexpattern-datasource-layer-f8c599bc-4580-4a39-a5fa-1cc2a68260d7", "type": "index-pattern" }, { - "id": "e3f451b1-4c23-4305-bcbf-0bc812d1ba07", + "id": "logs-*", "name": "a7f83583-f83e-41fb-bce5-fd13fc774a8f:indexpattern-datasource-layer-e6f6eaaa-bde7-4b77-a5a3-2cbdc2449a35", "type": "index-pattern" }, { - "id": "e3f451b1-4c23-4305-bcbf-0bc812d1ba07", + "id": "logs-*", "name": "ca21225a-3af7-4bc9-8602-433089592d5f:indexpattern-datasource-layer-fd16c376-c72d-484f-b22d-b1e48d9806c1", "type": "index-pattern" }, { - "id": "e3f451b1-4c23-4305-bcbf-0bc812d1ba07", + "id": "logs-*", "name": "2f77e26f-85cf-47aa-a467-4886a34a6845:indexpattern-datasource-layer-a82f90ee-acf4-4ff5-899f-a5e07ae82bf7", "type": "index-pattern" }, { - "id": "e3f451b1-4c23-4305-bcbf-0bc812d1ba07", + "id": "logs-*", "name": "2f77e26f-85cf-47aa-a467-4886a34a6845:d8152df4-c3d5-4e93-ac0d-9d13a3cd834e", "type": "index-pattern" }, { - "id": "e3f451b1-4c23-4305-bcbf-0bc812d1ba07", + "id": "logs-*", "name": "2f77e26f-85cf-47aa-a467-4886a34a6845:088f2453-2e6e-4f79-adf6-f3ee0d498e49", "type": "index-pattern" }, { - "id": "e3f451b1-4c23-4305-bcbf-0bc812d1ba07", + "id": "logs-*", "name": "2f77e26f-85cf-47aa-a467-4886a34a6845:14efcd52-a120-4efe-8502-da61db173619", "type": "index-pattern" }, { - "id": "e3f451b1-4c23-4305-bcbf-0bc812d1ba07", + "id": "logs-*", "name": "e7ce60d7-9327-4d64-9ca1-6c814506375b:indexpattern-datasource-layer-707db7dc-7bda-4553-b9a6-cbeba1925faf", "type": "index-pattern" }, { - "id": "e3f451b1-4c23-4305-bcbf-0bc812d1ba07", + "id": "logs-*", "name": "3a4884cb-e0f3-4fef-9436-2f553afcfb87:indexpattern-datasource-layer-9ad9bf45-e8a5-4971-a6d9-f10c483725bc", "type": "index-pattern" }, { - "id": "e3f451b1-4c23-4305-bcbf-0bc812d1ba07", + "id": "logs-*", "name": "720a352e-155e-4a3e-87bf-86ddfb52061d:indexpattern-datasource-layer-eea40633-1ee7-46a8-88f2-fc96ea82626e", "type": "index-pattern" }, { - "id": "e3f451b1-4c23-4305-bcbf-0bc812d1ba07", + "id": "logs-*", "name": "16419820-6dc1-4bdb-aa34-9c80b2d1ad1e:indexpattern-datasource-layer-1a46766c-98d3-4c59-955f-ad248e69c09d", "type": "index-pattern" }, { - "id": "e3f451b1-4c23-4305-bcbf-0bc812d1ba07", + "id": "logs-*", "name": "f97cff25-8a15-4598-9f82-e9ca97f22248:indexpattern-datasource-layer-6df89022-0b31-47d3-b7b4-b39627957e1c", "type": "index-pattern" } diff --git a/packages/gigamon/kibana/dashboard/gigamon-3523b534-7525-44a7-808f-6a9f3235a67d.json b/packages/gigamon/kibana/dashboard/gigamon-3523b534-7525-44a7-808f-6a9f3235a67d.json index b110a3fc64b..0dd02368487 100644 --- a/packages/gigamon/kibana/dashboard/gigamon-3523b534-7525-44a7-808f-6a9f3235a67d.json +++ b/packages/gigamon/kibana/dashboard/gigamon-3523b534-7525-44a7-808f-6a9f3235a67d.json @@ -62,12 +62,12 @@ "attributes": { "references": [ { - "id": "e3f451b1-4c23-4305-bcbf-0bc812d1ba07", + "id": "logs-*", "name": "indexpattern-datasource-layer-be43b3a9-77eb-4997-b0a3-2c7bf9642d91", "type": "index-pattern" }, { - "id": "e3f451b1-4c23-4305-bcbf-0bc812d1ba07", + "id": "logs-*", "name": "8cf2d322-d829-49e3-bc08-bbdf2bad8404", "type": "index-pattern" } @@ -336,12 +336,12 @@ "attributes": { "references": [ { - "id": "e3f451b1-4c23-4305-bcbf-0bc812d1ba07", + "id": "logs-*", "name": "indexpattern-datasource-layer-be43b3a9-77eb-4997-b0a3-2c7bf9642d91", "type": "index-pattern" }, { - "id": "e3f451b1-4c23-4305-bcbf-0bc812d1ba07", + "id": "logs-*", "name": "deddd9f4-b68e-4e4a-bac6-030cbf077d0d", "type": "index-pattern" } @@ -625,12 +625,12 @@ "attributes": { "references": [ { - "id": "e3f451b1-4c23-4305-bcbf-0bc812d1ba07", + "id": "logs-*", "name": "indexpattern-datasource-layer-be43b3a9-77eb-4997-b0a3-2c7bf9642d91", "type": "index-pattern" }, { - "id": "e3f451b1-4c23-4305-bcbf-0bc812d1ba07", + "id": "logs-*", "name": "e162d9f3-10d5-403a-9800-0869a637ca55", "type": "index-pattern" } @@ -899,12 +899,12 @@ "attributes": { "references": [ { - "id": "e3f451b1-4c23-4305-bcbf-0bc812d1ba07", + "id": "logs-*", "name": "indexpattern-datasource-layer-be43b3a9-77eb-4997-b0a3-2c7bf9642d91", "type": "index-pattern" }, { - "id": "e3f451b1-4c23-4305-bcbf-0bc812d1ba07", + "id": "logs-*", "name": "4e115414-3b37-4d6a-a7d3-909dd2bbd10d", "type": "index-pattern" } @@ -1173,12 +1173,12 @@ "attributes": { "references": [ { - "id": "e3f451b1-4c23-4305-bcbf-0bc812d1ba07", + "id": "logs-*", "name": "indexpattern-datasource-layer-be43b3a9-77eb-4997-b0a3-2c7bf9642d91", "type": "index-pattern" }, { - "id": "e3f451b1-4c23-4305-bcbf-0bc812d1ba07", + "id": "logs-*", "name": "60326333-2197-489c-b92c-c43814bb2a07", "type": "index-pattern" } @@ -1420,52 +1420,52 @@ "managed": false, "references": [ { - "id": "e3f451b1-4c23-4305-bcbf-0bc812d1ba07", + "id": "logs-*", "name": "a6bb8905-1429-48f4-afe0-8abe04458570:indexpattern-datasource-layer-be43b3a9-77eb-4997-b0a3-2c7bf9642d91", "type": "index-pattern" }, { - "id": "e3f451b1-4c23-4305-bcbf-0bc812d1ba07", + "id": "logs-*", "name": "a6bb8905-1429-48f4-afe0-8abe04458570:8cf2d322-d829-49e3-bc08-bbdf2bad8404", "type": "index-pattern" }, { - "id": "e3f451b1-4c23-4305-bcbf-0bc812d1ba07", + "id": "logs-*", "name": "e0bd8c6b-8b7a-44e0-b8ef-8c2814e00f57:indexpattern-datasource-layer-be43b3a9-77eb-4997-b0a3-2c7bf9642d91", "type": "index-pattern" }, { - "id": "e3f451b1-4c23-4305-bcbf-0bc812d1ba07", + "id": "logs-*", "name": "e0bd8c6b-8b7a-44e0-b8ef-8c2814e00f57:deddd9f4-b68e-4e4a-bac6-030cbf077d0d", "type": "index-pattern" }, { - "id": "e3f451b1-4c23-4305-bcbf-0bc812d1ba07", + "id": "logs-*", "name": "1ab105d2-cd65-497f-9dec-eca0022b4dab:indexpattern-datasource-layer-be43b3a9-77eb-4997-b0a3-2c7bf9642d91", "type": "index-pattern" }, { - "id": "e3f451b1-4c23-4305-bcbf-0bc812d1ba07", + "id": "logs-*", "name": "1ab105d2-cd65-497f-9dec-eca0022b4dab:e162d9f3-10d5-403a-9800-0869a637ca55", "type": "index-pattern" }, { - "id": "e3f451b1-4c23-4305-bcbf-0bc812d1ba07", + "id": "logs-*", "name": "b9b235ec-c995-4e04-9c8d-4a1241ddcf3c:indexpattern-datasource-layer-be43b3a9-77eb-4997-b0a3-2c7bf9642d91", "type": "index-pattern" }, { - "id": "e3f451b1-4c23-4305-bcbf-0bc812d1ba07", + "id": "logs-*", "name": "b9b235ec-c995-4e04-9c8d-4a1241ddcf3c:4e115414-3b37-4d6a-a7d3-909dd2bbd10d", "type": "index-pattern" }, { - "id": "e3f451b1-4c23-4305-bcbf-0bc812d1ba07", + "id": "logs-*", "name": "f994304e-fef0-446b-991e-3fdad41e3d1e:indexpattern-datasource-layer-be43b3a9-77eb-4997-b0a3-2c7bf9642d91", "type": "index-pattern" }, { - "id": "e3f451b1-4c23-4305-bcbf-0bc812d1ba07", + "id": "logs-*", "name": "f994304e-fef0-446b-991e-3fdad41e3d1e:60326333-2197-489c-b92c-c43814bb2a07", "type": "index-pattern" } diff --git a/packages/gigamon/kibana/dashboard/gigamon-46931a21-a33e-43af-aadf-da8d6446b9cc.json b/packages/gigamon/kibana/dashboard/gigamon-46931a21-a33e-43af-aadf-da8d6446b9cc.json index aacbd540220..e4b309a34f6 100644 --- a/packages/gigamon/kibana/dashboard/gigamon-46931a21-a33e-43af-aadf-da8d6446b9cc.json +++ b/packages/gigamon/kibana/dashboard/gigamon-46931a21-a33e-43af-aadf-da8d6446b9cc.json @@ -62,12 +62,12 @@ "attributes": { "references": [ { - "id": "e3f451b1-4c23-4305-bcbf-0bc812d1ba07", + "id": "logs-*", "name": "indexpattern-datasource-layer-524869d1-5c3a-48d3-b70d-31c695576301", "type": "index-pattern" }, { - "id": "e3f451b1-4c23-4305-bcbf-0bc812d1ba07", + "id": "logs-*", "name": "2ac90361-4777-4349-b8e0-8d84b45a8b28", "type": "index-pattern" } @@ -241,12 +241,12 @@ "attributes": { "references": [ { - "id": "e3f451b1-4c23-4305-bcbf-0bc812d1ba07", + "id": "logs-*", "name": "indexpattern-datasource-layer-5ce0cd74-fa7b-48d2-80aa-9aac35104287", "type": "index-pattern" }, { - "id": "e3f451b1-4c23-4305-bcbf-0bc812d1ba07", + "id": "logs-*", "name": "1e3c3df4-0e19-4c69-a467-d411710b5568", "type": "index-pattern" } @@ -455,7 +455,7 @@ "attributes": { "references": [ { - "id": "e3f451b1-4c23-4305-bcbf-0bc812d1ba07", + "id": "logs-*", "name": "indexpattern-datasource-layer-382d6efb-9dae-4d62-9a7d-2084e6592e76", "type": "index-pattern" } @@ -646,12 +646,12 @@ "attributes": { "references": [ { - "id": "e3f451b1-4c23-4305-bcbf-0bc812d1ba07", + "id": "logs-*", "name": "indexpattern-datasource-layer-00809baf-def6-44f9-8ed0-071dd5fafdde", "type": "index-pattern" }, { - "id": "e3f451b1-4c23-4305-bcbf-0bc812d1ba07", + "id": "logs-*", "name": "22bb68a9-8f42-40f8-b4e5-11a20106f03d", "type": "index-pattern" } @@ -831,7 +831,7 @@ "attributes": { "references": [ { - "id": "e3f451b1-4c23-4305-bcbf-0bc812d1ba07", + "id": "logs-*", "name": "indexpattern-datasource-layer-512ecd89-fcfa-4cae-942d-276720984eec", "type": "index-pattern" } @@ -993,12 +993,12 @@ "attributes": { "references": [ { - "id": "e3f451b1-4c23-4305-bcbf-0bc812d1ba07", + "id": "logs-*", "name": "indexpattern-datasource-layer-c0e77b08-b6fd-4c45-88ed-0a361a6dff5f", "type": "index-pattern" }, { - "id": "e3f451b1-4c23-4305-bcbf-0bc812d1ba07", + "id": "logs-*", "name": "a2f2d7ad-6751-4277-bb47-475310feb936", "type": "index-pattern" } @@ -1213,52 +1213,52 @@ "managed": false, "references": [ { - "id": "e3f451b1-4c23-4305-bcbf-0bc812d1ba07", + "id": "logs-*", "name": "7a2dc5c1-f5f2-487d-a6c8-e7ddc57f7328:indexpattern-datasource-layer-524869d1-5c3a-48d3-b70d-31c695576301", "type": "index-pattern" }, { - "id": "e3f451b1-4c23-4305-bcbf-0bc812d1ba07", + "id": "logs-*", "name": "7a2dc5c1-f5f2-487d-a6c8-e7ddc57f7328:2ac90361-4777-4349-b8e0-8d84b45a8b28", "type": "index-pattern" }, { - "id": "e3f451b1-4c23-4305-bcbf-0bc812d1ba07", + "id": "logs-*", "name": "ced39111-0d23-411f-8228-f7d3ec1d6ce8:indexpattern-datasource-layer-5ce0cd74-fa7b-48d2-80aa-9aac35104287", "type": "index-pattern" }, { - "id": "e3f451b1-4c23-4305-bcbf-0bc812d1ba07", + "id": "logs-*", "name": "ced39111-0d23-411f-8228-f7d3ec1d6ce8:1e3c3df4-0e19-4c69-a467-d411710b5568", "type": "index-pattern" }, { - "id": "e3f451b1-4c23-4305-bcbf-0bc812d1ba07", + "id": "logs-*", "name": "ef25137d-2ae5-4cec-9986-46b53cf890d7:indexpattern-datasource-layer-382d6efb-9dae-4d62-9a7d-2084e6592e76", "type": "index-pattern" }, { - "id": "e3f451b1-4c23-4305-bcbf-0bc812d1ba07", + "id": "logs-*", "name": "3eb9c4d5-3560-4d3b-81f4-ba3a12995869:indexpattern-datasource-layer-00809baf-def6-44f9-8ed0-071dd5fafdde", "type": "index-pattern" }, { - "id": "e3f451b1-4c23-4305-bcbf-0bc812d1ba07", + "id": "logs-*", "name": "3eb9c4d5-3560-4d3b-81f4-ba3a12995869:22bb68a9-8f42-40f8-b4e5-11a20106f03d", "type": "index-pattern" }, { - "id": "e3f451b1-4c23-4305-bcbf-0bc812d1ba07", + "id": "logs-*", "name": "74bbfa9a-665c-47b6-9d44-28643901358e:indexpattern-datasource-layer-512ecd89-fcfa-4cae-942d-276720984eec", "type": "index-pattern" }, { - "id": "e3f451b1-4c23-4305-bcbf-0bc812d1ba07", + "id": "logs-*", "name": "db06369d-6d2c-42a9-adb3-2fc812e5e947:indexpattern-datasource-layer-c0e77b08-b6fd-4c45-88ed-0a361a6dff5f", "type": "index-pattern" }, { - "id": "e3f451b1-4c23-4305-bcbf-0bc812d1ba07", + "id": "logs-*", "name": "db06369d-6d2c-42a9-adb3-2fc812e5e947:a2f2d7ad-6751-4277-bb47-475310feb936", "type": "index-pattern" } diff --git a/packages/gigamon/kibana/dashboard/gigamon-4ae2cd9a-3eef-42c6-a02c-731ce74d94ac.json b/packages/gigamon/kibana/dashboard/gigamon-4ae2cd9a-3eef-42c6-a02c-731ce74d94ac.json index 7c68899f80f..8af90cd7c8c 100644 --- a/packages/gigamon/kibana/dashboard/gigamon-4ae2cd9a-3eef-42c6-a02c-731ce74d94ac.json +++ b/packages/gigamon/kibana/dashboard/gigamon-4ae2cd9a-3eef-42c6-a02c-731ce74d94ac.json @@ -101,7 +101,7 @@ "attributes": { "references": [ { - "id": "e3f451b1-4c23-4305-bcbf-0bc812d1ba07", + "id": "logs-*", "name": "indexpattern-datasource-layer-f8370edf-a33f-4b5f-a5e0-f91226bd7ee4", "type": "index-pattern" } @@ -262,7 +262,7 @@ "attributes": { "references": [ { - "id": "e3f451b1-4c23-4305-bcbf-0bc812d1ba07", + "id": "logs-*", "name": "indexpattern-datasource-layer-1a855e99-fd47-4ba6-a92a-56f7fbc4955f", "type": "index-pattern" } @@ -876,7 +876,7 @@ "description": "Lookout for deprecated Hash functions such as MD5 and SHA1\n", "references": [ { - "id": "e3f451b1-4c23-4305-bcbf-0bc812d1ba07", + "id": "logs-*", "name": "indexpattern-datasource-layer-a59e668a-9b41-4e4f-a213-d849adcc37e1", "type": "index-pattern" } @@ -1047,7 +1047,7 @@ "attributes": { "references": [ { - "id": "e3f451b1-4c23-4305-bcbf-0bc812d1ba07", + "id": "logs-*", "name": "indexpattern-datasource-layer-ca329fec-55d4-4114-8e6c-66fac6103bd6", "type": "index-pattern" } @@ -1208,7 +1208,7 @@ "attributes": { "references": [ { - "id": "e3f451b1-4c23-4305-bcbf-0bc812d1ba07", + "id": "logs-*", "name": "indexpattern-datasource-layer-1a6b0337-abdf-4190-a6f0-01eb8bf27602", "type": "index-pattern" } @@ -1387,7 +1387,7 @@ "attributes": { "references": [ { - "id": "e3f451b1-4c23-4305-bcbf-0bc812d1ba07", + "id": "logs-*", "name": "indexpattern-datasource-layer-7bc2981e-b536-4695-978a-4204ad71b136", "type": "index-pattern" } @@ -1548,7 +1548,7 @@ "description": "Applications, Servers and Clients using deprecated and risky SSL versions", "references": [ { - "id": "e3f451b1-4c23-4305-bcbf-0bc812d1ba07", + "id": "logs-*", "name": "indexpattern-datasource-layer-52ebe360-98df-4c55-9c3a-5b30179d97fe", "type": "index-pattern" } @@ -1795,7 +1795,7 @@ "attributes": { "references": [ { - "id": "e3f451b1-4c23-4305-bcbf-0bc812d1ba07", + "id": "logs-*", "name": "indexpattern-datasource-layer-b5a30015-ed6f-4639-9440-8d481157749c", "type": "index-pattern" } @@ -2005,42 +2005,42 @@ "managed": false, "references": [ { - "id": "e3f451b1-4c23-4305-bcbf-0bc812d1ba07", + "id": "logs-*", "name": "2ec46ecc-8727-4ada-a9cc-791128084fc7:indexpattern-datasource-layer-f8370edf-a33f-4b5f-a5e0-f91226bd7ee4", "type": "index-pattern" }, { - "id": "e3f451b1-4c23-4305-bcbf-0bc812d1ba07", + "id": "logs-*", "name": "7ee54803-53b7-4030-ac5a-4e6bb7f8d488:indexpattern-datasource-layer-1a855e99-fd47-4ba6-a92a-56f7fbc4955f", "type": "index-pattern" }, { - "id": "e3f451b1-4c23-4305-bcbf-0bc812d1ba07", + "id": "logs-*", "name": "4ecbea12-8c6b-4628-af7e-561eb34a8580:indexpattern-datasource-layer-a59e668a-9b41-4e4f-a213-d849adcc37e1", "type": "index-pattern" }, { - "id": "e3f451b1-4c23-4305-bcbf-0bc812d1ba07", + "id": "logs-*", "name": "4edbfb96-b1de-4a66-804b-e0dda725f53c:indexpattern-datasource-layer-ca329fec-55d4-4114-8e6c-66fac6103bd6", "type": "index-pattern" }, { - "id": "e3f451b1-4c23-4305-bcbf-0bc812d1ba07", + "id": "logs-*", "name": "d930ab89-a6d5-48ef-b925-e994aebe8793:indexpattern-datasource-layer-1a6b0337-abdf-4190-a6f0-01eb8bf27602", "type": "index-pattern" }, { - "id": "e3f451b1-4c23-4305-bcbf-0bc812d1ba07", + "id": "logs-*", "name": "0eddb6e3-01cd-41be-b179-786c9156d810:indexpattern-datasource-layer-7bc2981e-b536-4695-978a-4204ad71b136", "type": "index-pattern" }, { - "id": "e3f451b1-4c23-4305-bcbf-0bc812d1ba07", + "id": "logs-*", "name": "e2b390fc-73ff-471d-91cb-0529402a4647:indexpattern-datasource-layer-52ebe360-98df-4c55-9c3a-5b30179d97fe", "type": "index-pattern" }, { - "id": "e3f451b1-4c23-4305-bcbf-0bc812d1ba07", + "id": "logs-*", "name": "20b67d27-53bd-4df5-8e4e-553d170b9f3d:indexpattern-datasource-layer-b5a30015-ed6f-4639-9440-8d481157749c", "type": "index-pattern" } diff --git a/packages/gigamon/kibana/dashboard/gigamon-62291e9e-8b75-4f23-9121-79959da99b3b.json b/packages/gigamon/kibana/dashboard/gigamon-62291e9e-8b75-4f23-9121-79959da99b3b.json index fd44f843d94..36e366c931a 100644 --- a/packages/gigamon/kibana/dashboard/gigamon-62291e9e-8b75-4f23-9121-79959da99b3b.json +++ b/packages/gigamon/kibana/dashboard/gigamon-62291e9e-8b75-4f23-9121-79959da99b3b.json @@ -62,7 +62,7 @@ "attributes": { "references": [ { - "id": "e3f451b1-4c23-4305-bcbf-0bc812d1ba07", + "id": "logs-*", "name": "indexpattern-datasource-layer-4e7a5be6-e8e2-4181-8c8e-3464b9cbb8f3", "type": "index-pattern" } @@ -183,7 +183,7 @@ "attributes": { "references": [ { - "id": "e3f451b1-4c23-4305-bcbf-0bc812d1ba07", + "id": "logs-*", "name": "indexpattern-datasource-layer-0e790f53-fc9a-4723-b826-345927fe0ac2", "type": "index-pattern" } @@ -439,7 +439,7 @@ "attributes": { "references": [ { - "id": "e3f451b1-4c23-4305-bcbf-0bc812d1ba07", + "id": "logs-*", "name": "indexpattern-datasource-layer-dcb2c44f-fa1b-49dc-a8fd-95735065a2ca", "type": "index-pattern" } @@ -745,17 +745,17 @@ "managed": false, "references": [ { - "id": "e3f451b1-4c23-4305-bcbf-0bc812d1ba07", + "id": "logs-*", "name": "691cc634-beea-4461-abf3-7798f2fd7f53:indexpattern-datasource-layer-4e7a5be6-e8e2-4181-8c8e-3464b9cbb8f3", "type": "index-pattern" }, { - "id": "e3f451b1-4c23-4305-bcbf-0bc812d1ba07", + "id": "logs-*", "name": "9e15b7fa-c6fa-407f-8164-0003a5211964:indexpattern-datasource-layer-0e790f53-fc9a-4723-b826-345927fe0ac2", "type": "index-pattern" }, { - "id": "e3f451b1-4c23-4305-bcbf-0bc812d1ba07", + "id": "logs-*", "name": "466a4ef7-11b5-42b8-9499-34509fff70f6:indexpattern-datasource-layer-dcb2c44f-fa1b-49dc-a8fd-95735065a2ca", "type": "index-pattern" } diff --git a/packages/gigamon/kibana/dashboard/gigamon-64ca15b3-8327-4940-8b35-0e75ab3a73c6.json b/packages/gigamon/kibana/dashboard/gigamon-64ca15b3-8327-4940-8b35-0e75ab3a73c6.json index 13c56e79ee7..081db8e945e 100644 --- a/packages/gigamon/kibana/dashboard/gigamon-64ca15b3-8327-4940-8b35-0e75ab3a73c6.json +++ b/packages/gigamon/kibana/dashboard/gigamon-64ca15b3-8327-4940-8b35-0e75ab3a73c6.json @@ -63,12 +63,12 @@ "description": "URL strings which look like inputted trusted domains, but are composed of different characters - by default uses Alexa Top 10 websites", "references": [ { - "id": "e3f451b1-4c23-4305-bcbf-0bc812d1ba07", + "id": "logs-*", "name": "indexpattern-datasource-layer-6a4b4b49-d74b-4032-8c98-aa7a2050ead3", "type": "index-pattern" }, { - "id": "e3f451b1-4c23-4305-bcbf-0bc812d1ba07", + "id": "logs-*", "name": "2f79ee85-3ccc-4e3b-a3cd-54801483e084", "type": "index-pattern" } @@ -283,12 +283,12 @@ "attributes": { "references": [ { - "id": "e3f451b1-4c23-4305-bcbf-0bc812d1ba07", + "id": "logs-*", "name": "indexpattern-datasource-layer-6a4b4b49-d74b-4032-8c98-aa7a2050ead3", "type": "index-pattern" }, { - "id": "e3f451b1-4c23-4305-bcbf-0bc812d1ba07", + "id": "logs-*", "name": "b2d2a2d8-715d-49ea-b486-2046c4083804", "type": "index-pattern" } @@ -459,22 +459,22 @@ "managed": false, "references": [ { - "id": "e3f451b1-4c23-4305-bcbf-0bc812d1ba07", + "id": "logs-*", "name": "9a6bd170-6a5e-4da1-be11-91bf825056db:indexpattern-datasource-layer-6a4b4b49-d74b-4032-8c98-aa7a2050ead3", "type": "index-pattern" }, { - "id": "e3f451b1-4c23-4305-bcbf-0bc812d1ba07", + "id": "logs-*", "name": "9a6bd170-6a5e-4da1-be11-91bf825056db:2f79ee85-3ccc-4e3b-a3cd-54801483e084", "type": "index-pattern" }, { - "id": "e3f451b1-4c23-4305-bcbf-0bc812d1ba07", + "id": "logs-*", "name": "3807bd4e-36c5-4458-92fb-10b007af3a45:indexpattern-datasource-layer-6a4b4b49-d74b-4032-8c98-aa7a2050ead3", "type": "index-pattern" }, { - "id": "e3f451b1-4c23-4305-bcbf-0bc812d1ba07", + "id": "logs-*", "name": "3807bd4e-36c5-4458-92fb-10b007af3a45:b2d2a2d8-715d-49ea-b486-2046c4083804", "type": "index-pattern" } diff --git a/packages/gigamon/kibana/dashboard/gigamon-855a64dc-1a72-403f-932b-a5b848378f7e.json b/packages/gigamon/kibana/dashboard/gigamon-855a64dc-1a72-403f-932b-a5b848378f7e.json index da475f4fc02..1ac4f75eae9 100644 --- a/packages/gigamon/kibana/dashboard/gigamon-855a64dc-1a72-403f-932b-a5b848378f7e.json +++ b/packages/gigamon/kibana/dashboard/gigamon-855a64dc-1a72-403f-932b-a5b848378f7e.json @@ -62,7 +62,7 @@ "attributes": { "references": [ { - "id": "e3f451b1-4c23-4305-bcbf-0bc812d1ba07", + "id": "logs-*", "name": "indexpattern-datasource-layer-2f770a63-b087-4627-9eac-4ec02a6860a2", "type": "index-pattern" } @@ -207,12 +207,12 @@ "description": "Expired TLS Certificate Details", "references": [ { - "id": "e3f451b1-4c23-4305-bcbf-0bc812d1ba07", + "id": "logs-*", "name": "indexpattern-datasource-layer-f2bfa25e-3307-4990-9396-2a83c047bd87", "type": "index-pattern" }, { - "id": "e3f451b1-4c23-4305-bcbf-0bc812d1ba07", + "id": "logs-*", "name": "c8822484-f6d7-438a-8d37-aea5210af207", "type": "index-pattern" } @@ -502,7 +502,7 @@ "attributes": { "references": [ { - "id": "e3f451b1-4c23-4305-bcbf-0bc812d1ba07", + "id": "logs-*", "name": "indexpattern-datasource-layer-5276360b-3935-40fb-81fc-d50d8f9ea03f", "type": "index-pattern" } @@ -665,7 +665,7 @@ "attributes": { "references": [ { - "id": "e3f451b1-4c23-4305-bcbf-0bc812d1ba07", + "id": "logs-*", "name": "indexpattern-datasource-layer-66c4f953-6f64-4e94-866f-ea62083a4fc5", "type": "index-pattern" } @@ -819,12 +819,12 @@ "attributes": { "references": [ { - "id": "e3f451b1-4c23-4305-bcbf-0bc812d1ba07", + "id": "logs-*", "name": "indexpattern-datasource-layer-ecbac86b-4380-404f-8228-0eebf7bdfc91", "type": "index-pattern" }, { - "id": "e3f451b1-4c23-4305-bcbf-0bc812d1ba07", + "id": "logs-*", "name": "e129a477-9070-430e-a87c-8699b92ac3ce", "type": "index-pattern" } @@ -988,7 +988,7 @@ "attributes": { "references": [ { - "id": "e3f451b1-4c23-4305-bcbf-0bc812d1ba07", + "id": "logs-*", "name": "indexpattern-datasource-layer-fb531e58-0b95-4e83-b783-bf2806d409a5", "type": "index-pattern" } @@ -1153,7 +1153,7 @@ "attributes": { "references": [ { - "id": "e3f451b1-4c23-4305-bcbf-0bc812d1ba07", + "id": "logs-*", "name": "indexpattern-datasource-layer-6e2c8ecc-817c-4e37-9f2d-a4fa9d1e24fa", "type": "index-pattern" } @@ -1260,7 +1260,7 @@ "attributes": { "references": [ { - "id": "e3f451b1-4c23-4305-bcbf-0bc812d1ba07", + "id": "logs-*", "name": "indexpattern-datasource-layer-974e273d-499f-40bc-9759-7176653b97e6", "type": "index-pattern" } @@ -1428,52 +1428,52 @@ "managed": false, "references": [ { - "id": "e3f451b1-4c23-4305-bcbf-0bc812d1ba07", + "id": "logs-*", "name": "82d13ba0-b304-4852-afd1-6963f658852a:indexpattern-datasource-layer-2f770a63-b087-4627-9eac-4ec02a6860a2", "type": "index-pattern" }, { - "id": "e3f451b1-4c23-4305-bcbf-0bc812d1ba07", + "id": "logs-*", "name": "f8298c20-12fa-44e3-a9ab-139a3d78d841:indexpattern-datasource-layer-f2bfa25e-3307-4990-9396-2a83c047bd87", "type": "index-pattern" }, { - "id": "e3f451b1-4c23-4305-bcbf-0bc812d1ba07", + "id": "logs-*", "name": "f8298c20-12fa-44e3-a9ab-139a3d78d841:c8822484-f6d7-438a-8d37-aea5210af207", "type": "index-pattern" }, { - "id": "e3f451b1-4c23-4305-bcbf-0bc812d1ba07", + "id": "logs-*", "name": "9abb6f37-8bf4-4ab6-b5d6-536dc987436d:indexpattern-datasource-layer-5276360b-3935-40fb-81fc-d50d8f9ea03f", "type": "index-pattern" }, { - "id": "e3f451b1-4c23-4305-bcbf-0bc812d1ba07", + "id": "logs-*", "name": "98f58056-281d-48fe-a045-9fc5975472d8:indexpattern-datasource-layer-66c4f953-6f64-4e94-866f-ea62083a4fc5", "type": "index-pattern" }, { - "id": "e3f451b1-4c23-4305-bcbf-0bc812d1ba07", + "id": "logs-*", "name": "a8ab6b8e-65a7-4b15-9d88-4fe84a04e66a:indexpattern-datasource-layer-ecbac86b-4380-404f-8228-0eebf7bdfc91", "type": "index-pattern" }, { - "id": "e3f451b1-4c23-4305-bcbf-0bc812d1ba07", + "id": "logs-*", "name": "a8ab6b8e-65a7-4b15-9d88-4fe84a04e66a:e129a477-9070-430e-a87c-8699b92ac3ce", "type": "index-pattern" }, { - "id": "e3f451b1-4c23-4305-bcbf-0bc812d1ba07", + "id": "logs-*", "name": "3158230d-f337-4f7c-b6e4-4ef7bb238e1d:indexpattern-datasource-layer-fb531e58-0b95-4e83-b783-bf2806d409a5", "type": "index-pattern" }, { - "id": "e3f451b1-4c23-4305-bcbf-0bc812d1ba07", + "id": "logs-*", "name": "a7af43a5-7061-4222-b3d1-611f063a4e85:indexpattern-datasource-layer-6e2c8ecc-817c-4e37-9f2d-a4fa9d1e24fa", "type": "index-pattern" }, { - "id": "e3f451b1-4c23-4305-bcbf-0bc812d1ba07", + "id": "logs-*", "name": "2ba5611d-c9c5-4ace-bc10-7ca77c30173b:indexpattern-datasource-layer-974e273d-499f-40bc-9759-7176653b97e6", "type": "index-pattern" } diff --git a/packages/gigamon/kibana/dashboard/gigamon-8f772203-64e0-4d1b-bb0e-14fa57b4b754.json b/packages/gigamon/kibana/dashboard/gigamon-8f772203-64e0-4d1b-bb0e-14fa57b4b754.json index 69c0ce659fa..80573d340cb 100644 --- a/packages/gigamon/kibana/dashboard/gigamon-8f772203-64e0-4d1b-bb0e-14fa57b4b754.json +++ b/packages/gigamon/kibana/dashboard/gigamon-8f772203-64e0-4d1b-bb0e-14fa57b4b754.json @@ -62,7 +62,7 @@ "attributes": { "references": [ { - "id": "e3f451b1-4c23-4305-bcbf-0bc812d1ba07", + "id": "logs-*", "name": "indexpattern-datasource-layer-cd856c2a-46c1-4df6-b312-a57d975d7421", "type": "index-pattern" } @@ -211,12 +211,12 @@ "attributes": { "references": [ { - "id": "e3f451b1-4c23-4305-bcbf-0bc812d1ba07", + "id": "logs-*", "name": "indexpattern-datasource-layer-2baf48c3-9fd0-496a-83bc-10fb08c0e185", "type": "index-pattern" }, { - "id": "e3f451b1-4c23-4305-bcbf-0bc812d1ba07", + "id": "logs-*", "name": "95b7216a-aedc-4964-ac63-824f2ba16b0b", "type": "index-pattern" } @@ -368,7 +368,7 @@ "attributes": { "references": [ { - "id": "e3f451b1-4c23-4305-bcbf-0bc812d1ba07", + "id": "logs-*", "name": "indexpattern-datasource-layer-b4cb0805-6cc3-4468-8d86-48aa1a0b7db1", "type": "index-pattern" } @@ -477,7 +477,7 @@ "attributes": { "references": [ { - "id": "e3f451b1-4c23-4305-bcbf-0bc812d1ba07", + "id": "logs-*", "name": "indexpattern-datasource-layer-041a0381-2bfb-4cd9-873d-19dce5f12fc9", "type": "index-pattern" } @@ -652,27 +652,27 @@ "managed": false, "references": [ { - "id": "e3f451b1-4c23-4305-bcbf-0bc812d1ba07", + "id": "logs-*", "name": "0fdd5c6d-a9fb-4ce9-9e62-b4491a5e2fd7:indexpattern-datasource-layer-cd856c2a-46c1-4df6-b312-a57d975d7421", "type": "index-pattern" }, { - "id": "e3f451b1-4c23-4305-bcbf-0bc812d1ba07", + "id": "logs-*", "name": "4648f24d-ab58-4f61-8168-70d53013db9b:indexpattern-datasource-layer-2baf48c3-9fd0-496a-83bc-10fb08c0e185", "type": "index-pattern" }, { - "id": "e3f451b1-4c23-4305-bcbf-0bc812d1ba07", + "id": "logs-*", "name": "4648f24d-ab58-4f61-8168-70d53013db9b:95b7216a-aedc-4964-ac63-824f2ba16b0b", "type": "index-pattern" }, { - "id": "e3f451b1-4c23-4305-bcbf-0bc812d1ba07", + "id": "logs-*", "name": "26779c1e-6664-461a-87b5-2694a97b059f:indexpattern-datasource-layer-b4cb0805-6cc3-4468-8d86-48aa1a0b7db1", "type": "index-pattern" }, { - "id": "e3f451b1-4c23-4305-bcbf-0bc812d1ba07", + "id": "logs-*", "name": "8ecd545c-6fc8-49f4-8612-29ce91f43b63:indexpattern-datasource-layer-041a0381-2bfb-4cd9-873d-19dce5f12fc9", "type": "index-pattern" } diff --git a/packages/gigamon/kibana/dashboard/gigamon-d6cecabb-f026-4823-914d-b4d61fd61787.json b/packages/gigamon/kibana/dashboard/gigamon-d6cecabb-f026-4823-914d-b4d61fd61787.json index 27695403cb4..a66b6bbc7f1 100644 --- a/packages/gigamon/kibana/dashboard/gigamon-d6cecabb-f026-4823-914d-b4d61fd61787.json +++ b/packages/gigamon/kibana/dashboard/gigamon-d6cecabb-f026-4823-914d-b4d61fd61787.json @@ -62,7 +62,7 @@ "attributes": { "references": [ { - "id": "e3f451b1-4c23-4305-bcbf-0bc812d1ba07", + "id": "logs-*", "name": "indexpattern-datasource-layer-3dd7de9b-2674-43e2-9f03-179267084b90", "type": "index-pattern" } @@ -139,7 +139,7 @@ "attributes": { "references": [ { - "id": "e3f451b1-4c23-4305-bcbf-0bc812d1ba07", + "id": "logs-*", "name": "indexpattern-datasource-layer-684ec40c-0c1f-4071-bc86-2912815b5999", "type": "index-pattern" } @@ -291,7 +291,7 @@ "attributes": { "references": [ { - "id": "e3f451b1-4c23-4305-bcbf-0bc812d1ba07", + "id": "logs-*", "name": "indexpattern-datasource-layer-4df04fa8-fb80-477b-9ba1-9cf4a934a83a", "type": "index-pattern" } @@ -441,7 +441,7 @@ "attributes": { "references": [ { - "id": "e3f451b1-4c23-4305-bcbf-0bc812d1ba07", + "id": "logs-*", "name": "indexpattern-datasource-layer-403b61f1-7a19-449b-bd4a-f8e479cf992c", "type": "index-pattern" } @@ -593,7 +593,7 @@ "attributes": { "references": [ { - "id": "e3f451b1-4c23-4305-bcbf-0bc812d1ba07", + "id": "logs-*", "name": "indexpattern-datasource-layer-46fcaaf9-668c-4079-a818-8e3371c526ec", "type": "index-pattern" } @@ -669,7 +669,7 @@ "attributes": { "references": [ { - "id": "e3f451b1-4c23-4305-bcbf-0bc812d1ba07", + "id": "logs-*", "name": "indexpattern-datasource-layer-aa7adcfb-0485-48f9-9e46-64a74505c5fd", "type": "index-pattern" } @@ -841,7 +841,7 @@ "attributes": { "references": [ { - "id": "e3f451b1-4c23-4305-bcbf-0bc812d1ba07", + "id": "logs-*", "name": "indexpattern-datasource-layer-4babe8af-f2c9-4bab-9cd0-8bc1275cbd61", "type": "index-pattern" } @@ -992,7 +992,7 @@ "attributes": { "references": [ { - "id": "e3f451b1-4c23-4305-bcbf-0bc812d1ba07", + "id": "logs-*", "name": "indexpattern-datasource-layer-8490641b-b909-47f5-85f7-0d4904867eae", "type": "index-pattern" } @@ -1167,42 +1167,42 @@ "managed": false, "references": [ { - "id": "e3f451b1-4c23-4305-bcbf-0bc812d1ba07", + "id": "logs-*", "name": "6f8364bf-0889-4fcf-b93e-7bbe4a2e5a2f:indexpattern-datasource-layer-3dd7de9b-2674-43e2-9f03-179267084b90", "type": "index-pattern" }, { - "id": "e3f451b1-4c23-4305-bcbf-0bc812d1ba07", + "id": "logs-*", "name": "af30586c-75b3-4cf7-8068-26dd00cf5015:indexpattern-datasource-layer-684ec40c-0c1f-4071-bc86-2912815b5999", "type": "index-pattern" }, { - "id": "e3f451b1-4c23-4305-bcbf-0bc812d1ba07", + "id": "logs-*", "name": "a50fa397-cb54-42c9-aaad-f04f7799893b:indexpattern-datasource-layer-4df04fa8-fb80-477b-9ba1-9cf4a934a83a", "type": "index-pattern" }, { - "id": "e3f451b1-4c23-4305-bcbf-0bc812d1ba07", + "id": "logs-*", "name": "535537dd-8986-4f20-81bc-762050441e30:indexpattern-datasource-layer-403b61f1-7a19-449b-bd4a-f8e479cf992c", "type": "index-pattern" }, { - "id": "e3f451b1-4c23-4305-bcbf-0bc812d1ba07", + "id": "logs-*", "name": "37f1214d-ab60-4e57-9f2e-11784a6b8cc4:indexpattern-datasource-layer-46fcaaf9-668c-4079-a818-8e3371c526ec", "type": "index-pattern" }, { - "id": "e3f451b1-4c23-4305-bcbf-0bc812d1ba07", + "id": "logs-*", "name": "afad47ae-823e-42b0-969e-9cb3089b8dd9:indexpattern-datasource-layer-aa7adcfb-0485-48f9-9e46-64a74505c5fd", "type": "index-pattern" }, { - "id": "e3f451b1-4c23-4305-bcbf-0bc812d1ba07", + "id": "logs-*", "name": "52ecf662-7933-4de2-be81-5f61baeb9db5:indexpattern-datasource-layer-4babe8af-f2c9-4bab-9cd0-8bc1275cbd61", "type": "index-pattern" }, { - "id": "e3f451b1-4c23-4305-bcbf-0bc812d1ba07", + "id": "logs-*", "name": "23a2dec7-0607-45a6-a5f0-175fbd4638c5:indexpattern-datasource-layer-8490641b-b909-47f5-85f7-0d4904867eae", "type": "index-pattern" } diff --git a/packages/gigamon/kibana/dashboard/gigamon-d866be49-47b2-4306-a2be-d5cb6b6ab9c8.json b/packages/gigamon/kibana/dashboard/gigamon-d866be49-47b2-4306-a2be-d5cb6b6ab9c8.json index 10dccca03c1..150bce583aa 100644 --- a/packages/gigamon/kibana/dashboard/gigamon-d866be49-47b2-4306-a2be-d5cb6b6ab9c8.json +++ b/packages/gigamon/kibana/dashboard/gigamon-d866be49-47b2-4306-a2be-d5cb6b6ab9c8.json @@ -62,7 +62,7 @@ "attributes": { "references": [ { - "id": "e3f451b1-4c23-4305-bcbf-0bc812d1ba07", + "id": "logs-*", "name": "indexpattern-datasource-layer-6653e941-2b11-4e99-8cf6-7b536389759d", "type": "index-pattern" } @@ -212,7 +212,7 @@ "attributes": { "references": [ { - "id": "e3f451b1-4c23-4305-bcbf-0bc812d1ba07", + "id": "logs-*", "name": "indexpattern-datasource-layer-42ff257f-c3e4-45a0-9b1f-fc81a1882379", "type": "index-pattern" } @@ -372,7 +372,7 @@ "attributes": { "references": [ { - "id": "e3f451b1-4c23-4305-bcbf-0bc812d1ba07", + "id": "logs-*", "name": "indexpattern-datasource-layer-9a30d6db-4434-4567-9300-acbb289bbc91", "type": "index-pattern" } @@ -526,12 +526,12 @@ "attributes": { "references": [ { - "id": "e3f451b1-4c23-4305-bcbf-0bc812d1ba07", + "id": "logs-*", "name": "indexpattern-datasource-layer-f5aa0548-7204-4fe7-ae54-91c762a05ddd", "type": "index-pattern" }, { - "id": "e3f451b1-4c23-4305-bcbf-0bc812d1ba07", + "id": "logs-*", "name": "9e00affd-603f-47dc-8524-9248c20ef8dc", "type": "index-pattern" } @@ -708,7 +708,7 @@ "attributes": { "references": [ { - "id": "e3f451b1-4c23-4305-bcbf-0bc812d1ba07", + "id": "logs-*", "name": "indexpattern-datasource-layer-f9a9aa82-c81c-45f0-9f40-d1bdb7a0a44b", "type": "index-pattern" } @@ -899,7 +899,7 @@ "attributes": { "references": [ { - "id": "e3f451b1-4c23-4305-bcbf-0bc812d1ba07", + "id": "logs-*", "name": "indexpattern-datasource-layer-52f8c4eb-efe2-46ef-a2a1-48f38c5d2e60", "type": "index-pattern" } @@ -1138,7 +1138,7 @@ "attributes": { "references": [ { - "id": "e3f451b1-4c23-4305-bcbf-0bc812d1ba07", + "id": "logs-*", "name": "indexpattern-datasource-layer-6f432d24-4cfb-4fae-9c30-59d320818535", "type": "index-pattern" } @@ -1298,12 +1298,12 @@ "attributes": { "references": [ { - "id": "e3f451b1-4c23-4305-bcbf-0bc812d1ba07", + "id": "logs-*", "name": "indexpattern-datasource-layer-b770cd6b-b887-413e-8cdc-c938199efa2c", "type": "index-pattern" }, { - "id": "e3f451b1-4c23-4305-bcbf-0bc812d1ba07", + "id": "logs-*", "name": "62e73998-8469-4073-8224-b341e39886f1", "type": "index-pattern" } @@ -1563,7 +1563,7 @@ "attributes": { "references": [ { - "id": "e3f451b1-4c23-4305-bcbf-0bc812d1ba07", + "id": "logs-*", "name": "indexpattern-datasource-layer-dd0c1ad5-68d7-4b28-853e-6a26f853ca4d", "type": "index-pattern" } @@ -1754,12 +1754,12 @@ "attributes": { "references": [ { - "id": "e3f451b1-4c23-4305-bcbf-0bc812d1ba07", + "id": "logs-*", "name": "indexpattern-datasource-layer-d2c430c7-08e1-46ee-86f1-95f74dcbded4", "type": "index-pattern" }, { - "id": "e3f451b1-4c23-4305-bcbf-0bc812d1ba07", + "id": "logs-*", "name": "626d397a-5863-44a3-9644-dcf830489401", "type": "index-pattern" } @@ -2084,7 +2084,7 @@ "attributes": { "references": [ { - "id": "e3f451b1-4c23-4305-bcbf-0bc812d1ba07", + "id": "logs-*", "name": "indexpattern-datasource-layer-7ae3bfcf-251d-41f4-af53-a381f40e04e4", "type": "index-pattern" } @@ -2324,7 +2324,7 @@ "attributes": { "references": [ { - "id": "e3f451b1-4c23-4305-bcbf-0bc812d1ba07", + "id": "logs-*", "name": "indexpattern-datasource-layer-0d2c6675-2841-4e00-a502-a80b7aee1da3", "type": "index-pattern" } @@ -2534,7 +2534,7 @@ "attributes": { "references": [ { - "id": "e3f451b1-4c23-4305-bcbf-0bc812d1ba07", + "id": "logs-*", "name": "indexpattern-datasource-layer-fcbe6558-dee4-4eac-bac0-f3f340630af1", "type": "index-pattern" } @@ -2686,82 +2686,82 @@ "managed": false, "references": [ { - "id": "e3f451b1-4c23-4305-bcbf-0bc812d1ba07", + "id": "logs-*", "name": "9236f79d-61f7-404a-8822-17ef4496b7d6:indexpattern-datasource-layer-6653e941-2b11-4e99-8cf6-7b536389759d", "type": "index-pattern" }, { - "id": "e3f451b1-4c23-4305-bcbf-0bc812d1ba07", + "id": "logs-*", "name": "0c4c7a41-4eb9-4389-9c0f-dd395676c84a:indexpattern-datasource-layer-42ff257f-c3e4-45a0-9b1f-fc81a1882379", "type": "index-pattern" }, { - "id": "e3f451b1-4c23-4305-bcbf-0bc812d1ba07", + "id": "logs-*", "name": "8c016cce-649d-4cdb-a7df-e88685e7ee43:indexpattern-datasource-layer-9a30d6db-4434-4567-9300-acbb289bbc91", "type": "index-pattern" }, { - "id": "e3f451b1-4c23-4305-bcbf-0bc812d1ba07", + "id": "logs-*", "name": "a31e20d6-3010-44c4-b685-8a00a8698947:indexpattern-datasource-layer-f5aa0548-7204-4fe7-ae54-91c762a05ddd", "type": "index-pattern" }, { - "id": "e3f451b1-4c23-4305-bcbf-0bc812d1ba07", + "id": "logs-*", "name": "a31e20d6-3010-44c4-b685-8a00a8698947:9e00affd-603f-47dc-8524-9248c20ef8dc", "type": "index-pattern" }, { - "id": "e3f451b1-4c23-4305-bcbf-0bc812d1ba07", + "id": "logs-*", "name": "49610792-b5f4-4920-9012-bed8ef370218:indexpattern-datasource-layer-f9a9aa82-c81c-45f0-9f40-d1bdb7a0a44b", "type": "index-pattern" }, { - "id": "e3f451b1-4c23-4305-bcbf-0bc812d1ba07", + "id": "logs-*", "name": "35be4b1b-e979-4994-956d-161df3c542df:indexpattern-datasource-layer-52f8c4eb-efe2-46ef-a2a1-48f38c5d2e60", "type": "index-pattern" }, { - "id": "e3f451b1-4c23-4305-bcbf-0bc812d1ba07", + "id": "logs-*", "name": "e721ba83-d8a0-4e87-aec3-cef7372f8740:indexpattern-datasource-layer-6f432d24-4cfb-4fae-9c30-59d320818535", "type": "index-pattern" }, { - "id": "e3f451b1-4c23-4305-bcbf-0bc812d1ba07", + "id": "logs-*", "name": "a2607495-befa-4003-8135-3b853f5d681d:indexpattern-datasource-layer-b770cd6b-b887-413e-8cdc-c938199efa2c", "type": "index-pattern" }, { - "id": "e3f451b1-4c23-4305-bcbf-0bc812d1ba07", + "id": "logs-*", "name": "a2607495-befa-4003-8135-3b853f5d681d:62e73998-8469-4073-8224-b341e39886f1", "type": "index-pattern" }, { - "id": "e3f451b1-4c23-4305-bcbf-0bc812d1ba07", + "id": "logs-*", "name": "c6ed4dc3-69db-48f3-9b49-c6ea39f901b4:indexpattern-datasource-layer-dd0c1ad5-68d7-4b28-853e-6a26f853ca4d", "type": "index-pattern" }, { - "id": "e3f451b1-4c23-4305-bcbf-0bc812d1ba07", + "id": "logs-*", "name": "2118f875-bcca-44fd-a40f-18b047fc61ac:indexpattern-datasource-layer-d2c430c7-08e1-46ee-86f1-95f74dcbded4", "type": "index-pattern" }, { - "id": "e3f451b1-4c23-4305-bcbf-0bc812d1ba07", + "id": "logs-*", "name": "2118f875-bcca-44fd-a40f-18b047fc61ac:626d397a-5863-44a3-9644-dcf830489401", "type": "index-pattern" }, { - "id": "e3f451b1-4c23-4305-bcbf-0bc812d1ba07", + "id": "logs-*", "name": "15bf7ddc-aa4f-4698-b9c1-a42ac68ef94a:indexpattern-datasource-layer-7ae3bfcf-251d-41f4-af53-a381f40e04e4", "type": "index-pattern" }, { - "id": "e3f451b1-4c23-4305-bcbf-0bc812d1ba07", + "id": "logs-*", "name": "2d34d4b2-a3fd-41e3-afb0-0c6f7e84aa9c:indexpattern-datasource-layer-0d2c6675-2841-4e00-a502-a80b7aee1da3", "type": "index-pattern" }, { - "id": "e3f451b1-4c23-4305-bcbf-0bc812d1ba07", + "id": "logs-*", "name": "031caf31-94df-4ae9-b8db-048c6087d60d:indexpattern-datasource-layer-fcbe6558-dee4-4eac-bac0-f3f340630af1", "type": "index-pattern" } diff --git a/packages/gigamon/kibana/dashboard/gigamon-e192a946-8287-450a-a8f0-e23de9f95dae.json b/packages/gigamon/kibana/dashboard/gigamon-e192a946-8287-450a-a8f0-e23de9f95dae.json index f8cdd854ba2..0b6de63422d 100644 --- a/packages/gigamon/kibana/dashboard/gigamon-e192a946-8287-450a-a8f0-e23de9f95dae.json +++ b/packages/gigamon/kibana/dashboard/gigamon-e192a946-8287-450a-a8f0-e23de9f95dae.json @@ -62,7 +62,7 @@ "attributes": { "references": [ { - "id": "e3f451b1-4c23-4305-bcbf-0bc812d1ba07", + "id": "logs-*", "name": "indexpattern-datasource-layer-c40b1d67-8d61-453a-a436-aa99ea61cc06", "type": "index-pattern" } @@ -250,7 +250,7 @@ "attributes": { "references": [ { - "id": "e3f451b1-4c23-4305-bcbf-0bc812d1ba07", + "id": "logs-*", "name": "indexpattern-datasource-layer-41d11af3-009b-45ce-b2b4-70cdc656b927", "type": "index-pattern" } @@ -411,12 +411,12 @@ "attributes": { "references": [ { - "id": "e3f451b1-4c23-4305-bcbf-0bc812d1ba07", + "id": "logs-*", "name": "indexpattern-datasource-layer-58ebbf18-0dda-49c2-ae26-1a96bb76a444", "type": "index-pattern" }, { - "id": "e3f451b1-4c23-4305-bcbf-0bc812d1ba07", + "id": "logs-*", "name": "466e4764-4008-4351-ba5e-74939f3168ae", "type": "index-pattern" } @@ -608,12 +608,12 @@ "attributes": { "references": [ { - "id": "e3f451b1-4c23-4305-bcbf-0bc812d1ba07", + "id": "logs-*", "name": "indexpattern-datasource-layer-4f46c7d1-cd26-40ef-bea2-a17023767382", "type": "index-pattern" }, { - "id": "e3f451b1-4c23-4305-bcbf-0bc812d1ba07", + "id": "logs-*", "name": "abf73eef-11dd-4f79-8e5d-ab518aa8bbc7", "type": "index-pattern" } @@ -785,12 +785,12 @@ "attributes": { "references": [ { - "id": "e3f451b1-4c23-4305-bcbf-0bc812d1ba07", + "id": "logs-*", "name": "indexpattern-datasource-layer-3d66f06d-227d-4b54-a0d8-9a892b2d8163", "type": "index-pattern" }, { - "id": "e3f451b1-4c23-4305-bcbf-0bc812d1ba07", + "id": "logs-*", "name": "82a0bf64-7149-422f-989a-ffbfaf939c8f", "type": "index-pattern" } @@ -943,7 +943,7 @@ "attributes": { "references": [ { - "id": "e3f451b1-4c23-4305-bcbf-0bc812d1ba07", + "id": "logs-*", "name": "indexpattern-datasource-layer-ab8e599f-a4ab-40ee-9c6e-55a3851d9943", "type": "index-pattern" } @@ -1097,7 +1097,7 @@ "attributes": { "references": [ { - "id": "e3f451b1-4c23-4305-bcbf-0bc812d1ba07", + "id": "logs-*", "name": "indexpattern-datasource-layer-721b569c-a91b-4f80-93cd-e3249af588b1", "type": "index-pattern" } @@ -1273,7 +1273,7 @@ "attributes": { "references": [ { - "id": "e3f451b1-4c23-4305-bcbf-0bc812d1ba07", + "id": "logs-*", "name": "indexpattern-datasource-layer-df034b2d-ce2a-4ece-a173-bf8b998f4aaf", "type": "index-pattern" } @@ -1540,7 +1540,7 @@ "attributes": { "references": [ { - "id": "e3f451b1-4c23-4305-bcbf-0bc812d1ba07", + "id": "logs-*", "name": "indexpattern-datasource-layer-fde7f29c-0218-4d7a-9717-9e49997f51c2", "type": "index-pattern" } @@ -1720,62 +1720,62 @@ "managed": false, "references": [ { - "id": "e3f451b1-4c23-4305-bcbf-0bc812d1ba07", + "id": "logs-*", "name": "2b540711-4ead-413a-8b4a-9c1aee1f432a:indexpattern-datasource-layer-c40b1d67-8d61-453a-a436-aa99ea61cc06", "type": "index-pattern" }, { - "id": "e3f451b1-4c23-4305-bcbf-0bc812d1ba07", + "id": "logs-*", "name": "aea6907c-059a-4596-b3c6-9d2582bc2fbf:indexpattern-datasource-layer-41d11af3-009b-45ce-b2b4-70cdc656b927", "type": "index-pattern" }, { - "id": "e3f451b1-4c23-4305-bcbf-0bc812d1ba07", + "id": "logs-*", "name": "0121fd10-c2b4-472a-bcd8-148d3e9589e2:indexpattern-datasource-layer-58ebbf18-0dda-49c2-ae26-1a96bb76a444", "type": "index-pattern" }, { - "id": "e3f451b1-4c23-4305-bcbf-0bc812d1ba07", + "id": "logs-*", "name": "0121fd10-c2b4-472a-bcd8-148d3e9589e2:466e4764-4008-4351-ba5e-74939f3168ae", "type": "index-pattern" }, { - "id": "e3f451b1-4c23-4305-bcbf-0bc812d1ba07", + "id": "logs-*", "name": "b97357d2-ccbf-4968-a18c-b5417b1d2823:indexpattern-datasource-layer-4f46c7d1-cd26-40ef-bea2-a17023767382", "type": "index-pattern" }, { - "id": "e3f451b1-4c23-4305-bcbf-0bc812d1ba07", + "id": "logs-*", "name": "b97357d2-ccbf-4968-a18c-b5417b1d2823:abf73eef-11dd-4f79-8e5d-ab518aa8bbc7", "type": "index-pattern" }, { - "id": "e3f451b1-4c23-4305-bcbf-0bc812d1ba07", + "id": "logs-*", "name": "13499553-67bc-4664-8afc-09dac2c5ff7a:indexpattern-datasource-layer-3d66f06d-227d-4b54-a0d8-9a892b2d8163", "type": "index-pattern" }, { - "id": "e3f451b1-4c23-4305-bcbf-0bc812d1ba07", + "id": "logs-*", "name": "13499553-67bc-4664-8afc-09dac2c5ff7a:82a0bf64-7149-422f-989a-ffbfaf939c8f", "type": "index-pattern" }, { - "id": "e3f451b1-4c23-4305-bcbf-0bc812d1ba07", + "id": "logs-*", "name": "9ec9a432-43ba-4cd6-bfb5-85ad1b150839:indexpattern-datasource-layer-ab8e599f-a4ab-40ee-9c6e-55a3851d9943", "type": "index-pattern" }, { - "id": "e3f451b1-4c23-4305-bcbf-0bc812d1ba07", + "id": "logs-*", "name": "4b139b4f-b643-4953-865a-faec3dd2fea2:indexpattern-datasource-layer-721b569c-a91b-4f80-93cd-e3249af588b1", "type": "index-pattern" }, { - "id": "e3f451b1-4c23-4305-bcbf-0bc812d1ba07", + "id": "logs-*", "name": "d4d86252-0126-4f94-a270-281277c80c7e:indexpattern-datasource-layer-df034b2d-ce2a-4ece-a173-bf8b998f4aaf", "type": "index-pattern" }, { - "id": "e3f451b1-4c23-4305-bcbf-0bc812d1ba07", + "id": "logs-*", "name": "d04b750f-714b-4ade-b946-3f3f5a230bce:indexpattern-datasource-layer-fde7f29c-0218-4d7a-9717-9e49997f51c2", "type": "index-pattern" } diff --git a/packages/gigamon/kibana/dashboard/gigamon-e733c64e-6ea9-4dd6-a8ca-3914274598f3.json b/packages/gigamon/kibana/dashboard/gigamon-e733c64e-6ea9-4dd6-a8ca-3914274598f3.json index 5ddbe0bd66b..b27bde40838 100644 --- a/packages/gigamon/kibana/dashboard/gigamon-e733c64e-6ea9-4dd6-a8ca-3914274598f3.json +++ b/packages/gigamon/kibana/dashboard/gigamon-e733c64e-6ea9-4dd6-a8ca-3914274598f3.json @@ -62,7 +62,7 @@ "attributes": { "references": [ { - "id": "e3f451b1-4c23-4305-bcbf-0bc812d1ba07", + "id": "logs-*", "name": "indexpattern-datasource-layer-5ccdb314-f7d5-4e07-9da8-deec1f9e87bf", "type": "index-pattern" } @@ -266,7 +266,7 @@ "attributes": { "references": [ { - "id": "e3f451b1-4c23-4305-bcbf-0bc812d1ba07", + "id": "logs-*", "name": "indexpattern-datasource-layer-40542048-bf27-455d-8ace-4cfeec0547cf", "type": "index-pattern" } @@ -439,7 +439,7 @@ "attributes": { "references": [ { - "id": "e3f451b1-4c23-4305-bcbf-0bc812d1ba07", + "id": "logs-*", "name": "indexpattern-datasource-layer-c3f5a560-d315-4963-9020-22bfb2a43957", "type": "index-pattern" } @@ -599,7 +599,7 @@ "attributes": { "references": [ { - "id": "e3f451b1-4c23-4305-bcbf-0bc812d1ba07", + "id": "logs-*", "name": "indexpattern-datasource-layer-4075f59d-f023-4b0d-945c-bf1a5dcee87f", "type": "index-pattern" } @@ -772,7 +772,7 @@ "attributes": { "references": [ { - "id": "e3f451b1-4c23-4305-bcbf-0bc812d1ba07", + "id": "logs-*", "name": "indexpattern-datasource-layer-c0c6f334-8d4e-4cb8-939d-df6c7a549561", "type": "index-pattern" } @@ -977,7 +977,7 @@ "attributes": { "references": [ { - "id": "e3f451b1-4c23-4305-bcbf-0bc812d1ba07", + "id": "logs-*", "name": "indexpattern-datasource-layer-0034057d-bfb0-459f-869b-385f354ed921", "type": "index-pattern" } @@ -1182,7 +1182,7 @@ "attributes": { "references": [ { - "id": "e3f451b1-4c23-4305-bcbf-0bc812d1ba07", + "id": "logs-*", "name": "indexpattern-datasource-layer-3b42ba9f-0144-427f-8fc7-822db62260ef", "type": "index-pattern" } @@ -1302,37 +1302,37 @@ "managed": false, "references": [ { - "id": "e3f451b1-4c23-4305-bcbf-0bc812d1ba07", + "id": "logs-*", "name": "c3ac490a-3407-4c20-81ee-5e7b72cd7644:indexpattern-datasource-layer-5ccdb314-f7d5-4e07-9da8-deec1f9e87bf", "type": "index-pattern" }, { - "id": "e3f451b1-4c23-4305-bcbf-0bc812d1ba07", + "id": "logs-*", "name": "b07089af-c0bf-453a-8f75-3da528c947f7:indexpattern-datasource-layer-40542048-bf27-455d-8ace-4cfeec0547cf", "type": "index-pattern" }, { - "id": "e3f451b1-4c23-4305-bcbf-0bc812d1ba07", + "id": "logs-*", "name": "20a5f52f-3dc0-48d5-8f60-1bbdf657b49e:indexpattern-datasource-layer-c3f5a560-d315-4963-9020-22bfb2a43957", "type": "index-pattern" }, { - "id": "e3f451b1-4c23-4305-bcbf-0bc812d1ba07", + "id": "logs-*", "name": "730c317d-8817-466a-9219-fdab1bf7b810:indexpattern-datasource-layer-4075f59d-f023-4b0d-945c-bf1a5dcee87f", "type": "index-pattern" }, { - "id": "e3f451b1-4c23-4305-bcbf-0bc812d1ba07", + "id": "logs-*", "name": "8fa462dc-65b1-446d-bd57-5868edf3354c:indexpattern-datasource-layer-c0c6f334-8d4e-4cb8-939d-df6c7a549561", "type": "index-pattern" }, { - "id": "e3f451b1-4c23-4305-bcbf-0bc812d1ba07", + "id": "logs-*", "name": "a6629af9-b16e-44d4-bd77-1dfb1edb8a75:indexpattern-datasource-layer-0034057d-bfb0-459f-869b-385f354ed921", "type": "index-pattern" }, { - "id": "e3f451b1-4c23-4305-bcbf-0bc812d1ba07", + "id": "logs-*", "name": "735f65bf-40c1-4b14-bec9-a2d07ad726a7:indexpattern-datasource-layer-3b42ba9f-0144-427f-8fc7-822db62260ef", "type": "index-pattern" } diff --git a/packages/gigamon/manifest.yml b/packages/gigamon/manifest.yml index 802c42ab8bb..a2c7ef422dd 100644 --- a/packages/gigamon/manifest.yml +++ b/packages/gigamon/manifest.yml @@ -1,8 +1,8 @@ format_version: 3.1.3 name: gigamon title: Gigamon -version: "0.1.0" -description: "This Gigamon package integrates with Filebeat to collect and ingest data from Gigamon devices" +version: "0.2.0" +description: Collect logs from Gigamon with Elastic Agent. type: integration categories: - custom