Skip to content

Commit

Permalink
change loggers for indexer subsystem (#17012)
Browse files Browse the repository at this point in the history
* change loggers for indexer subsystem

fixes #17011

* changelog

* use `graylog2` package

(cherry picked from commit 42aaebf)
  • Loading branch information
moesterheld committed Oct 20, 2023
1 parent 5521f50 commit 3d9421f
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 1 deletion.
5 changes: 5 additions & 0 deletions changelog/unreleased/pr-17012.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
type = "f"
message = "Change loggers in indexer subsystem to output all messages related to indexing/searching."

issues = ["17011"]
pulls = ["17012"]
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,10 @@ public class LoggersResource extends RestResource {

private static final Map<String, Subsystem> SUBSYSTEMS = ImmutableMap.<String, Subsystem>of(
"graylog", new Subsystem("Graylog", ImmutableList.of("org.graylog2", "org.graylog"), "All messages from Graylog-owned systems."),
"indexer", new Subsystem("Indexer", "org.elasticsearch", "All messages related to indexing and searching."),
"indexer", new Subsystem("Indexer",
ImmutableList.of("org.graylog2.storage", "org.graylog2.indexer",
"org.graylog.shaded.elasticsearch7.org.elasticsearch", "org.graylog.shaded.opensearch2.org.opensearch"),
"All messages related to indexing and searching."),
"authentication", new Subsystem("Authentication", "org.apache.shiro", "All user authentication messages."),
"sockets", new Subsystem("Sockets", "netty", "All messages related to socket communication."));

Expand Down

0 comments on commit 3d9421f

Please sign in to comment.