Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
A
asterisk
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
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Issue analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Voice
asterisk
Commits
da54d3dd
Commit
da54d3dd
authored
9 years ago
by
Matt Jordan
Committed by
Gerrit Code Review
9 years ago
Browse files
Options
Downloads
Plain Diff
Merge "StatsD: Write skeleton Asterisk application"
parents
7b2afcc9
2fe9f097
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
apps/app_statsd.c
+74
-0
74 additions, 0 deletions
apps/app_statsd.c
with
74 additions
and
0 deletions
apps/app_statsd.c
0 → 100644
+
74
−
0
View file @
da54d3dd
/*
* Asterisk -- An open source telephony toolkit.
*
* Copyright (C) 2015, Digium, Inc.
*
* Tyler Cambron <tcambron@digium.com>
*
* See http://www.asterisk.org for more information about
* the Asterisk project. Please do not directly contact
* any of the maintainers of this project for assistance;
* the project provides a web site, mailing lists and IRC
* channels for your use.
*
* This program is free software, distributed under the terms of
* the GNU General Public License Version 2. See the LICENSE file
* at the top of the source tree.
*/
/*** MODULEINFO
<depend>res_statsd</depend>
<defaultenabled>no</defaultenabled>
<support_level>extended</support_level>
***/
#include
"asterisk.h"
ASTERISK_REGISTER_FILE
()
#include
"asterisk/module.h"
#include
"asterisk/logger.h"
/*** DOCUMENTATION
<application name="Statsd" language="en_US">
<synopsis>
Allow statistics to be passed to the StatsD server from the dialplan.
</synopsis>
<syntax>
<parameter name="metric_type" required="true">
<para>The metric type to be sent to StatsD.</para>
</parameter>
<parameter name="statistic_name" required="true">
<para>The name of the variable to be sent to StatsD.</para>
</parameter>
<parameter name="value" required="true">
<para>The value of the variable to be sent to StatsD.</para>
</parameter>
</syntax>
<description>
<para>This dialplan application sends statistics to the StatsD server
specified inside of <literal>statsd.conf</literal>.</para>
</description>
</application>
***/
static
const
char
app
[]
=
"Statsd"
;
static
int
statsd_exec
(
struct
ast_channel
*
chan
,
const
char
*
data
)
{
ast_log
(
LOG_NOTICE
,
"StatsD application callback is working!
\n
"
);
return
0
;
}
static
int
unload_module
(
void
)
{
return
ast_unregister_application
(
app
);
}
static
int
load_module
(
void
)
{
return
ast_register_application_xml
(
app
,
statsd_exec
);
}
AST_MODULE_INFO_STANDARD_EXTENDED
(
ASTERISK_GPL_KEY
,
"Statsd Dialplan Application"
);
\ No newline at end of file
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