-
Type:
Investigation
-
Resolution: Unresolved
-
Priority:
Major - P3
-
None
-
Affects Version/s: None
-
Component/s: None
-
None
-
None
-
Developer Tools
Adds a new 'extensions' sub-section to the 'metrics' section of serverStatus
Part of several diagnostics added for extensions - the 'observability' tab of this program document[1] include the full details.
Description of Linked Ticket
I found that these metrics were under a top-level section of serverStatus like this:
```
"extension.vectorSearch" :
,
```
I think we intended for them to be nested - and in SERVER-115695 we added this section under the top-level 'metrics':
```
"extension": {
"totalAggStageExecMicros": NumberLong(0);
}
```
I think taken together we should move these metrics and have it look like:
```
"extension": {
"totalAggStageExecMicros": NumberLong(0);
// Metrics coming in SERVER-115696
"extensionSuccesses": NumberLong(0);
"extensionFailures": NumberLong(0);
// These metrics:
"vectorSearch" :
,
```
- depends on
-
SERVER-117216 Move extension.vectorSearch metrics near other extension metrics
-
- Closed
-