Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
G
Grpc
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
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
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
tci-gateway-module
Grpc
Commits
a478b52c
Commit
a478b52c
authored
9 years ago
by
Nicolas "Pixel" Noble
Browse files
Options
Downloads
Patches
Plain Diff
Creating placeholders for missing census functions.
parent
01ba279f
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/core/statistics/census_init.c
+73
-0
73 additions, 0 deletions
src/core/statistics/census_init.c
with
73 additions
and
0 deletions
src/core/statistics/census_init.c
+
73
−
0
View file @
a478b52c
...
@@ -46,3 +46,76 @@ void census_shutdown(void) {
...
@@ -46,3 +46,76 @@ void census_shutdown(void) {
census_stats_store_shutdown
();
census_stats_store_shutdown
();
census_tracing_shutdown
();
census_tracing_shutdown
();
}
}
census_tag_set
*
census_context_tag_set
(
census_context
*
context
)
{
(
void
)
context
;
abort
();
}
int
census_get_trace_record
(
census_trace_record
*
trace_record
)
{
(
void
)
trace_record
);
abort
();
}
void
census_record_values
(
census_context
*
context
,
census_value
*
values
,
size_t
nvalues
)
{
(
void
)
context
;
(
void
)
values
;
(
void
)
nvalues
;
abort
();
}
void
census_set_rpc_client_peer
(
census_context
*
context
,
const
char
*
peer
)
{
(
void
)
context
;
(
void
)
peer
;
abort
();
}
void
census_trace_scan_end
()
{
abort
();
}
int
census_trace_scan_start
(
int
consume
)
{
(
void
)
consume
;
abort
();
}
void
census_trace_scan_end
()
{
abort
();
}
const
census_aggregation
*
census_view_aggregrations
(
const
census_view
*
view
)
{
(
void
)
view
;
abort
();
}
census_view
*
census_view_create
(
uint32_t
metric_id
,
const
census_tag_set
*
tags
,
const
census_aggregation
*
aggregations
,
size_t
naggregations
)
{
(
void
)
metric_id
;
(
void
)
tags
;
(
void
)
census_aggregation
;
(
void
)
naggregations
;
abort
();
}
void
census_view_delete
(
census_view
*
view
)
{
(
void
)
view
;
abort
();
}
const
census_view_data
*
census_view_get_data
(
const
census_view
*
view
)
{
(
void
)
view
;
abort
();
}
size_t
census_view_metric
(
const
census_view
*
view
)
{
(
void
)
view
;
abort
();
}
size_t
census_view_naggregations
(
const
census_view
*
view
)
{
(
void
)
view
;
abort
();
}
void
census_view_reset
(
census_view
*
view
)
{
(
void
)
view
;
abort
();
}
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