-
Notifications
You must be signed in to change notification settings - Fork 4.9k
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 the cluster_uuid field to Enterprise search stats metricset #28287
Changes from all commits
0e95902
9fd2d45
b568ec6
436090a
921a5a3
f296f33
c2a8857
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -31086,7 +31086,7 @@ type: keyword | |
-- | ||
|
||
[[exported-fields-enterprisesearch]] | ||
== enterprisesearch fields | ||
== Enterprise Search fields | ||
|
||
Enterprise Search module | ||
|
||
|
@@ -31099,21 +31099,21 @@ Enterprise Search module | |
|
||
|
||
|
||
[float] | ||
=== health | ||
|
||
Enterprise Search health | ||
|
||
|
||
*`enterprisesearch.health.cluster_uuid`*:: | ||
*`enterprisesearch.cluster_uuid`*:: | ||
+ | ||
-- | ||
Elasticsearch Cluster UUID used by Enterprise Search | ||
Cluster UUID for the Elasticsearch cluster used as the data store for Enterprise Search. | ||
|
||
type: keyword | ||
|
||
-- | ||
|
||
[float] | ||
=== health | ||
|
||
Enterprise Search health | ||
|
||
|
||
*`enterprisesearch.health.name`*:: | ||
+ | ||
-- | ||
|
@@ -31885,6 +31885,51 @@ type: long | |
|
||
-- | ||
|
||
[float] | ||
=== product_usage | ||
|
||
Aggregate product usage statistics for the Enterprise Search deployment. | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Added a few more fields from our stats endpoint to improve the Stack Monitoring experience |
||
|
||
|
||
[float] | ||
=== app_search | ||
|
||
App Search product usage statistics. | ||
|
||
|
||
*`enterprisesearch.stats.product_usage.app_search.total_engines`*:: | ||
+ | ||
-- | ||
Current number of App Search engines within the deployment. | ||
|
||
type: long | ||
|
||
-- | ||
|
||
[float] | ||
=== workplace_search | ||
|
||
Workplace Search product usage statistics. | ||
|
||
|
||
*`enterprisesearch.stats.product_usage.workplace_search.total_org_sources`*:: | ||
+ | ||
-- | ||
Current number of Workplace Search org-wide content sources within the deployment. | ||
|
||
type: long | ||
|
||
-- | ||
|
||
*`enterprisesearch.stats.product_usage.workplace_search.total_private_sources`*:: | ||
+ | ||
-- | ||
Current number of Workplace Search private content sources within the deployment. | ||
|
||
type: long | ||
|
||
-- | ||
|
||
[[exported-fields-envoyproxy]] | ||
== Envoyproxy fields | ||
|
||
|
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
This is the health metricset of the module enterprisesearch. | ||
This is the `health` metricset of the Enterprise Search module. | ||
|
||
This metricset allows users to fetch and ingest Enterprise Search solution health information from the https://www.elastic.co/guide/en/enterprise-search/current/monitoring-apis.html#health-api[Health API]. |
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,10 +3,6 @@ | |
release: beta | ||
description: Enterprise Search health | ||
fields: | ||
- name: cluster_uuid | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Moved this to the module level |
||
type: keyword | ||
description: Elasticsearch Cluster UUID used by Enterprise Search | ||
|
||
- name: name | ||
type: keyword | ||
description: Host name for the Enterprise Search node | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
This is the stats metricset of the module enterprisesearch. | ||
This is the `stats` metricset of the Enterprise Search module. | ||
|
||
This metricset allows users to fetch and ingest Enterprise Search solution statistics information from the https://www.elastic.co/guide/en/enterprise-search/current/monitoring-apis.html#stats-api[Stats API]. |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,5 @@ | ||
{ | ||
"cluster_uuid": "s7QHFAuAQmqeqnGZmAqXIA", | ||
"http": { | ||
"connections": { | ||
"current": 1, | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Just noticed we can control this via our module metadata and decided to make it prettier