Commit Graph

46 Commits

Author SHA1 Message Date
Antoine Cotten
6704d9f1d7 Update to v8.0.0 (#544)
List of changes impacting docker-elk:

- [logstash]: The output to Elasticsearch is handled as a data stream.

  Starting with v8.0.0, the `elasticsearch` output for Logstash sends
  log data to a data stream instead of `logstash-*` indices by default.
  The name of the default data stream is `logs-generic-default`.
  docker-elk remains unopinionated and simply uses Elastic's defaults
  like it always has, so users who prefer to retain the old behaviour
  need to explicitly opt-out of data streams in their Logstash
  pipelines.

  Refs:
  - https://www.elastic.co/guide/en/elasticsearch/reference/current/data-streams.html
  - https://www.elastic.co/guide/en/logstash/current/plugins-outputs-elasticsearch.html#plugins-outputs-elasticsearch-data-streams

- [logstash]: The (legacy) monitoring data collection is now disabled.

  This feature was deprecated since v7.9.0, and removed in v8.0.0.

  Ref: https://www.elastic.co/guide/en/logstash/current/monitoring-internal-collection-legacy.html

- [kibana]: An index pattern for `logs-*` indices is automatically
  created.

  It used to be required to manually create an index pattern for indices
  managed by Logstash, even when using the default Logstash indices.
  This is no longer the case since the output data is now being handled
  as a data stream, and Kibana automatically creates index patterns for
  these.

- [elasticsearch]: The command line tool `elasticsearch-setup-passwords`
  was deprecated in favour of a new `elasticsearch-reset-password` tool.

  Passwords for built-in users must now be generated one by one.

  Ref: https://www.elastic.co/guide/en/elasticsearch/reference/current/setup-passwords.html

- [enterprise-search]: Kibana is now the new management interface, and
  the only one available moving forward.

  The old standalone Enterprise Search interface was removed in v8.0.0.

  Ref: https://www.elastic.co/guide/en/enterprise-search/current/user-interfaces.html
2022-02-10 17:19:04 +01:00
docker-elk-updater[bot]
1a30af6e11 Update to v7.17.0 2022-02-04 14:37:42 +00:00
docker-elk-updater[bot]
ff35064836 Update to v7.16.3 2022-01-16 00:20:34 +00:00
docker-elk-updater[bot]
691ffd8764 Update to v7.16.2 2021-12-20 16:01:32 +00:00
docker-elk-updater[bot]
c7f4a8eac0 Update to v7.16.1 2021-12-13 16:18:54 +00:00
docker-elk-updater[bot]
4e6c8712fe Update to v7.16.0 2021-12-12 11:30:14 +00:00
docker-elk-updater[bot]
8055143d52 Update to v7.15.2 2021-11-11 14:36:47 +00:00
github-actions[bot]
b2e2aa792c Update to v7.15.1 (#631)
Co-authored-by: antoineco <antoineco@users.noreply.github.com>
2021-10-26 19:41:15 +02:00
Antoine Cotten
f79ac77ad0 Update to v7.15.0 2021-09-23 21:52:55 +02:00
Antoine Cotten
5103d46859 Update to v7.14.1 2021-09-02 15:39:46 +02:00
Antoine Cotten
05768d135e Update to v7.14.0 (#612) 2021-08-11 16:20:56 +02:00
github-actions[bot]
3ed2a5a2d4 Update to v7.13.4 (#607)
Co-authored-by: antoineco <antoineco@users.noreply.github.com>
2021-07-25 08:37:34 +02:00
github-actions[bot]
42e537e743 Update to v7.13.2 (#595)
Co-authored-by: antoineco <antoineco@users.noreply.github.com>
2021-06-20 19:14:43 +02:00
github-actions[bot]
6af589b4a7 Update to v7.13.1 (#594)
Co-authored-by: antoineco <antoineco@users.noreply.github.com>
2021-06-06 22:11:34 +02:00
Conor O'Callaghan
3b61be9559 Update to v7.13.0 (#593) 2021-05-26 16:18:01 +02:00
github-actions[bot]
b3498d18ca Update to v7.12.1 (#591)
Co-authored-by: antoineco <antoineco@users.noreply.github.com>
2021-05-02 16:05:01 +02:00
github-actions[bot]
37dc3c1d4a Update to v7.12.0 (#584)
Co-authored-by: antoineco <antoineco@users.noreply.github.com>
2021-03-28 18:12:34 +02:00
github-actions[bot]
3c455d61ca Update to v7.11.2 (#580)
Co-authored-by: antoineco <antoineco@users.noreply.github.com>
2021-03-11 19:24:44 +01:00
github-actions[bot]
f9235f2105 Update to v7.11.1 (#577)
Co-authored-by: antoineco <antoineco@users.noreply.github.com>
2021-02-21 10:34:24 +01:00
github-actions[bot]
75ebebcebb Update to v7.11.0 (#575)
ci: Update Enterprise Search test for v3 index

App Search API keys are now encrypted in Elasticsearch, so we simply
ensure they exist and don't try to read their value.
2021-02-11 13:48:22 +01:00
github-actions[bot]
b4dc43e583 Update to v7.10.2 (#570)
Co-authored-by: antoineco <antoineco@users.noreply.github.com>
2021-01-16 22:29:47 +01:00
github-actions[bot]
29b988195c Update to v7.10.1 (#556)
Co-authored-by: antoineco <antoineco@users.noreply.github.com>
2020-12-13 09:50:09 +01:00
github-actions[bot]
1bee7e1c09 Update to v7.10.0 (#553)
Co-authored-by: antoineco <antoineco@users.noreply.github.com>
2020-11-11 16:55:48 +01:00
github-actions[bot]
6f6266a605 Update to v7.9.3 (#551)
Co-authored-by: antoineco <antoineco@users.noreply.github.com>
2020-11-09 14:56:51 +01:00
Antoine Cotten
a4f4e8fd39 Enable Logstash's Beats input by default
The configuration from the official Docker image includes it by default:
https://github.com/elastic/logstash/blob/7.9/docker/data/logstash/pipeline/default.conf

More information about the Beats input plugin:
https://www.elastic.co/guide/en/logstash/current/plugins-inputs-beats.html
2020-10-18 11:48:25 +02:00
Antoine Cotten
b599285dac Move CI flow from Travis CI to GitHub Actions 2020-10-14 00:32:17 +02:00
Antoine Cotten
081589dd18 Update to v7.9.2
Closes #539
2020-10-09 11:57:40 +02:00
Antoine Cotten
d2ff4a5f22 Update to v7.9.1
Closes #529
2020-09-08 11:32:03 +02:00
Antoine Cotten
c0dcc2489b Update to v7.8.0 2020-06-30 10:06:40 +02:00
Antoine Cotten
ffc52a9c89 Update to v7.7.1 2020-06-10 15:29:38 +02:00
Alkan ARSLAN
a7175e265b Update to 7.6.2 (#482)
Co-authored-by: Antoine Cotten <hello@acotten.com>
2020-04-19 14:44:16 +02:00
Antoine Cotten
c680149e42 Update to 7.6.0
Closes #473
2020-03-02 18:06:25 +01:00
Antoine Cotten
1d5d04baf5 Update to 7.5.1
Closes #462
2020-01-15 14:29:30 +01:00
Antoine Cotten
6a7902b548 Update to 7.5.0
Closes #456
2019-12-17 14:51:15 +01:00
Antoine Cotten
7591ea2f19 Set discovery.type option in Compose file for easier override
ref. #410
2019-12-05 15:26:53 +01:00
Benny O
6d16363f7c Update to 7.4.1 (#442) 2019-10-29 16:18:01 +01:00
Antoine Cotten
600488a5bd Update to 7.3.1
Closes #428
2019-09-09 10:54:42 +02:00
Antoine Cotten
d8995b3f7a Update Swarm stack to 7.2.1
Increase delay before password setup in Swarm test
2019-08-05 17:33:47 +02:00
Antoine Cotten
6a97c20a25 Update to 7.2.0
Closes #409
2019-06-28 22:25:19 +02:00
Antoine Cotten
45d008e7d1 Travis: Return exit code of spawned process in password setup script
Also bump stack version in stack file.
2019-06-18 14:53:26 +02:00
Kshitij Gupta
05e527c503 Update to Elastic 7.0.1 (#382) 2019-05-07 10:49:19 +02:00
Antoine Cotten
e8e238f00c Enable Stack Features (X-Pack) and trial by default (#387)
Co-authored-by: Willian Soares <willian@unidesk.com.br>
2019-05-06 23:51:40 +02:00
Anthony Lapenna
366e2bc5a2 Update to ELK 6.6.1 (#368) 2019-03-04 09:07:08 +13:00
Abdul Wakeel
1ab56c6a17 Upgrade to 6.6.0 (#362) 2019-02-09 19:33:24 +01:00
Walid
a710c49610 Update to 6.5.4 (#345) 2018-12-23 16:28:30 +01:00
Antoine Cotten
a7defb1c2e Support basic Docker Swarm deployment (#262) 2018-09-02 20:23:18 +02:00