Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
A
asapo
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container registry
Model registry
Operate
Terraform modules
Analyze
Contributor 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
Joao Alvim Oliveira Dias De Almeida
asapo
Commits
c8ac0f69
Commit
c8ac0f69
authored
3 years ago
by
Carsten Patzke
Browse files
Options
Downloads
Patches
Plain Diff
Monitoring: Made ReceiverMonitoringClientImpl also explicitly not copyable
parent
f169e60e
Branches
Branches containing commit
Tags
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
receiver/src/monitoring/receiver_monitoring_client.h
+0
-1
0 additions, 1 deletion
receiver/src/monitoring/receiver_monitoring_client.h
receiver/src/monitoring/receiver_monitoring_client_impl.h
+2
-0
2 additions, 0 deletions
receiver/src/monitoring/receiver_monitoring_client_impl.h
with
2 additions
and
1 deletion
receiver/src/monitoring/receiver_monitoring_client.h
+
0
−
1
View file @
c8ac0f69
...
...
@@ -16,7 +16,6 @@ public:
static
uint64_t
HelperTimeDiffInMicroseconds
(
std
::
chrono
::
high_resolution_clock
::
time_point
startTime
);
ReceiverMonitoringClient
(
const
ReceiverMonitoringClient
&
)
=
delete
;
ReceiverMonitoringClient
&
operator
=
(
const
ReceiverMonitoringClient
&
)
=
delete
;
virtual
void
SendProducerToReceiverTransferDataPoint
(
const
std
::
string
&
pipelineStepId
,
...
...
This diff is collapsed.
Click to expand it.
receiver/src/monitoring/receiver_monitoring_client_impl.h
+
2
−
0
View file @
c8ac0f69
...
...
@@ -41,6 +41,8 @@ public:
mutable
bool
sendingThreadRunning__
=
false
;
explicit
ReceiverMonitoringClientImpl
(
const
SharedCache
&
cache
);
ReceiverMonitoringClientImpl
(
const
ReceiverMonitoringClientImpl
&
)
=
delete
;
ReceiverMonitoringClientImpl
&
operator
=
(
const
ReceiverMonitoringClientImpl
&
)
=
delete
;
void
StartSendingThread
();
void
StopSendingThread
();
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment