Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add Dashboards var for UI Metric Collectors #4666

Merged
merged 1 commit into from
May 1, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions config/opensearch_dashboards-2.x.yml
Original file line number Diff line number Diff line change
Expand Up @@ -204,6 +204,10 @@
# Set the value of this setting to false to disable the query assistant
# observability.query_assist.enabled: false

# 2.14 Enable Ui Metric Collectors in Usage Collector
# Set the value of this setting to true to enable UI Metric collections
# usageCollection.uiMetric.enabled: false

opensearch.hosts: [https://localhost:9200]
opensearch.ssl.verificationMode: none
opensearch.username: kibanaserver
Expand Down
4 changes: 4 additions & 0 deletions config/opensearch_dashboards-default.x.yml
Original file line number Diff line number Diff line change
Expand Up @@ -204,6 +204,10 @@
# Set the value of this setting to false to disable the query assistant
# observability.query_assist.enabled: false

# 2.14 Enable Ui Metric Collectors in Usage Collector
# Set the value of this setting to true to enable UI Metric collections
# usageCollection.uiMetric.enabled: false

opensearch.hosts: [https://localhost:9200]
opensearch.ssl.verificationMode: none
opensearch.username: kibanaserver
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -168,6 +168,7 @@ opensearch_dashboards_vars=(
ml_commons_dashboards.enabled
assistant.chat.enabled
observability.query_assist.enabled
usageCollection.uiMetric.enabled
)

function setupSecurityDashboardsPlugin {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -168,6 +168,7 @@ opensearch_dashboards_vars=(
ml_commons_dashboards.enabled
assistant.chat.enabled
observability.query_assist.enabled
usageCollection.uiMetric.enabled
)

function setupSecurityDashboardsPlugin {
Expand Down
Loading