[
https://issues.apache.org/jira/browse/IGNITE-5983?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=16753869#comment-16753869
]
Andrew Mashenkov commented on IGNITE-5983:
------------------------------------------
[~roman_s],
Usually, we do not restart the grid between 2 tests in same class to save TC
time.
So, if testDataStorageMetricsEnabled run before
testDataStorageMetricsDisabled, the last one will fails.
I mean an additional check should be added in testDataStorageMetricsDisabled:
{code:java}
if (memoryMetricsEnabled) {
memoryMetricsEnabled = false;
restartgrid();
}
<test body>
{code}
Or memoryMetricsEnabled default value should be restored in e.g. beforeTest
method. I'd prefer this approach.
{code:java}
void beforeTest() {
if (memoryMetricsEnabled) {
memoryMetricsEnabled = false;
restartgrid();
}
}
{code}
> REST: Memory policy metrics should be available via REST.
> ---------------------------------------------------------
>
> Key: IGNITE-5983
> URL: https://issues.apache.org/jira/browse/IGNITE-5983
> Project: Ignite
> Issue Type: Improvement
> Components: cache
> Reporter: Andrew Mashenkov
> Assignee: Roman Shtykh
> Priority: Major
> Fix For: 2.8
>
> Time Spent: 20m
> Remaining Estimate: 0h
>
> For now it is possible to get some of cache metrics via REST, but not memory
> metrics.
--
This message was sent by Atlassian JIRA
(v7.6.3#76005)