File tree Expand file tree Collapse file tree 3 files changed +11
-4
lines changed
include/ydb-cpp-sdk/client/extensions/solomon_stats Expand file tree Collapse file tree 3 files changed +11
-4
lines changed Original file line number Diff line number Diff line change @@ -32,8 +32,8 @@ After creating NYdb::TDriver you need to add Solomon Monitoring extension. If yo
32
32
> ** Important** : you must plug in monitoring before driver creation.
33
33
34
34
``` cl
35
- #include <src /client/ydb_driver /driver.h>
36
- #include <src /client/extensions/solomon_stats/pull_client.h>
35
+ #include <ydb-cpp-sdk /client/driver /driver.h>
36
+ #include <ydb-cpp-sdk /client/extensions/solomon_stats/pull_client.h>
37
37
38
38
...
39
39
@@ -65,7 +65,7 @@ Implementing NMonitoring::IMetricRegistry provides more flexibility. You can del
65
65
66
66
Select a method which is right for you:
67
67
``` cl
68
- #include <src /client/extensions/solomon_stats/pull_connector.h>
68
+ #include <ydb-cpp-sdk /client/extensions/solomon_stats/pull_connector.h>
69
69
70
70
...
71
71
Original file line number Diff line number Diff line change @@ -29,6 +29,7 @@ message SelfCheckRequest {
29
29
uint32 maximum_level = 4 ; // maximum level of issues to return
30
30
bool do_not_cache = 5 ; // by default database health state is taken from metadata cache; this option can be used to force bypassing that cache
31
31
bool merge_records = 6 ; // combine similar records with similar status, message and level into one issue
32
+ bool return_hints = 7 ; // return hints for common problems
32
33
}
33
34
34
35
message SelfCheckResponse {
@@ -163,10 +164,16 @@ message LocationComputeTablet {
163
164
uint32 count = 3 ;
164
165
}
165
166
167
+ message LocationComputeSchema {
168
+ string type = 1 ;
169
+ string path = 2 ;
170
+ }
171
+
166
172
message LocationCompute {
167
173
LocationNode node = 1 ;
168
174
LocationComputePool pool = 2 ;
169
175
LocationComputeTablet tablet = 3 ;
176
+ LocationComputeSchema schema = 4 ;
170
177
}
171
178
172
179
message LocationDatabase {
Original file line number Diff line number Diff line change 1
1
#pragma once
2
2
3
- #include " src/client/topic/common/trace_lazy.h"
3
+ #include < src/client/topic/common/trace_lazy.h>
4
4
5
5
#include " library/cpp/logger/backend.h"
6
6
#include " library/cpp/logger/record.h"
You can’t perform that action at this time.
0 commit comments