Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
P
perxis-proto
Manage
Activity
Members
Labels
Plan
Issues
0
Issue boards
Milestones
Wiki
Code
Merge requests
12
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
perxis
perxis-proto
Merge requests
!30
Добавлено описание протокола сервиса логирования
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Добавлено описание протокола сервиса логирования
feature/PRXS-951-Log
into
master
Overview
16
Commits
5
Pipelines
0
Changes
3
Merged
Pavel Antonov
requested to merge
feature/PRXS-951-Log
into
master
1 year ago
Overview
16
Commits
5
Pipelines
0
Changes
3
Expand
Задача
PRXS-1889
Стори
PRXS-951
Поля page_num, page_size сделаны Deprecated
Добавлены поля offset, limit
Добавлено описание сервиса логирования
Edited
1 year ago
by
Pavel Antonov
0
0
Merge request reports
Compare
master
version 4
ccf33e30
1 year ago
version 3
d4975115
1 year ago
version 2
8b7d1d5b
1 year ago
version 1
2eaf0756
1 year ago
master (base)
and
latest version
latest version
b3370a43
5 commits,
1 year ago
version 4
ccf33e30
4 commits,
1 year ago
version 3
d4975115
3 commits,
1 year ago
version 2
8b7d1d5b
2 commits,
1 year ago
version 1
2eaf0756
1 commit,
1 year ago
3 files
+
204
−
2
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
3
Search (e.g. *.vue) (Ctrl+P)
proto/common/common.proto
+
5
−
2
Options
@@ -14,10 +14,13 @@ message Filter {
message
FindOptions
{
repeated
string
sort
=
1
;
int32
page_num
=
2
;
int32
page_size
=
3
;
int32
page_num
=
2
;
// Deprecated
int32
page_size
=
3
;
// Deprecated
repeated
string
fields
=
4
;
bool
exclude_fields
=
5
;
int32
offset
=
6
;
int32
limit
=
7
;
}
Loading