We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent dc371ff commit a80fb70Copy full SHA for a80fb70
x-pack/plugin/slm/src/main/java/org/elasticsearch/xpack/slm/SlmHealthIndicatorService.java
@@ -224,15 +224,6 @@ private static HealthIndicatorDetails createDetails(
224
SnapshotLifecyclePolicyMetadata::getId,
225
SnapshotLifecyclePolicyMetadata::getInvocationsSinceLastSuccess
226
)
227
- ),
228
- "last_successful_snapshot_timestamp",
229
- unhealthyPolicies.stream()
230
- .collect(
231
- Collectors.toMap(
232
- SnapshotLifecyclePolicyMetadata::getId,
233
- policy -> (policy.getLastSuccess() != null && policy.getLastSuccess().getSnapshotStartTimestamp() != null)
234
- ? FORMATTER.formatMillis(policy.getLastSuccess().getSnapshotStartTimestamp()) : "N/A"
235
- )
236
237
238
);
0 commit comments