-
Notifications
You must be signed in to change notification settings - Fork 8.2k
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
[Monitoring] Rename ccr fields based on changes in ES #24519
Changes from 1 commit
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 |
---|---|---|
|
@@ -32,7 +32,7 @@ async function getCcrStat(req, esIndexPattern, filters) { | |
filterPath: [ | ||
'hits.hits._source.ccr_stats', | ||
'hits.hits._source.timestamp', | ||
'hits.hits.inner_hits.oldest.hits.hits._source.ccr_stats.number_of_operations_indexed', | ||
'hits.hits.inner_hits.oldest.hits.hits._source.ccr_stats.operations_read', | ||
'hits.hits.inner_hits.oldest.hits.hits._source.ccr_stats.number_of_failed_fetches', | ||
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. this one should be |
||
], | ||
body: { | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -9,7 +9,7 @@ | |
}, | ||
"metric": { | ||
"app": "elasticsearch", | ||
"field": "ccr_stats.time_since_last_fetch_millis", | ||
"field": "ccr_stats.time_since_last_read_millis", | ||
"metricAgg": "max", | ||
"label": "Fetch delay", | ||
"title": "Fetch delay", | ||
|
@@ -63,13 +63,13 @@ | |
"total_index_time_millis": 1096, | ||
"number_of_successful_bulk_operations": 86, | ||
"number_of_failed_bulk_operations": 0, | ||
"number_of_operations_indexed": 86, | ||
"fetch_exceptions": [], | ||
"time_since_last_fetch_millis": 19886 | ||
"operations_read": 86, | ||
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.
|
||
"read_exceptions": [], | ||
"time_since_last_read_millis": 19886 | ||
}, | ||
"timestamp": "2018-09-19T20:01:00.440Z", | ||
"oldestStat": { | ||
"number_of_failed_fetches": 0, | ||
"number_of_operations_indexed": 1 | ||
"operations_read": 1 | ||
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.
|
||
} | ||
} |
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.
this should be
operations_written
.