Skip to content

Commit 9d4e13d

Browse files
committed
Refactor includes to YDB C++ SDK for ydb/apps and ydb/public (#15632)
1 parent e9b5b8f commit 9d4e13d

File tree

3 files changed

+11
-4
lines changed

3 files changed

+11
-4
lines changed

include/ydb-cpp-sdk/client/extensions/solomon_stats/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -32,8 +32,8 @@ After creating NYdb::TDriver you need to add Solomon Monitoring extension. If yo
3232
> **Important**: you must plug in monitoring before driver creation.
3333
3434
```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>
3737
3838
...
3939
@@ -65,7 +65,7 @@ Implementing NMonitoring::IMetricRegistry provides more flexibility. You can del
6565
6666
Select a method which is right for you:
6767
```cl
68-
#include <src/client/extensions/solomon_stats/pull_connector.h>
68+
#include <ydb-cpp-sdk/client/extensions/solomon_stats/pull_connector.h>
6969
7070
...
7171

src/api/protos/ydb_monitoring.proto

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,7 @@ message SelfCheckRequest {
2929
uint32 maximum_level = 4; // maximum level of issues to return
3030
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
3131
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
3233
}
3334

3435
message SelfCheckResponse {
@@ -163,10 +164,16 @@ message LocationComputeTablet {
163164
uint32 count = 3;
164165
}
165166

167+
message LocationComputeSchema {
168+
string type = 1;
169+
string path = 2;
170+
}
171+
166172
message LocationCompute {
167173
LocationNode node = 1;
168174
LocationComputePool pool = 2;
169175
LocationComputeTablet tablet = 3;
176+
LocationComputeSchema schema = 4;
170177
}
171178

172179
message LocationDatabase {

src/client/topic/ut/ut_utils/trace.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#pragma once
22

3-
#include "src/client/topic/common/trace_lazy.h"
3+
#include <src/client/topic/common/trace_lazy.h>
44

55
#include "library/cpp/logger/backend.h"
66
#include "library/cpp/logger/record.h"

0 commit comments

Comments
 (0)