X-Git-Url: https://git.liburcu.org/?a=blobdiff_plain;f=src%2Fbin%2Flttng-consumerd%2Fhealth-consumerd.h;fp=src%2Fbin%2Flttng-consumerd%2Fhealth-consumerd.h;h=f5e2a34cecfa377c399e81a66a502cb2218aeea4;hb=1fc79fb475198741b09a13b5397f018dff4b1aec;hp=0000000000000000000000000000000000000000;hpb=f385ae0a8f5c34cc33ca57cdb412393f90f9c0a8;p=lttng-tools.git diff --git a/src/bin/lttng-consumerd/health-consumerd.h b/src/bin/lttng-consumerd/health-consumerd.h new file mode 100644 index 000000000..f5e2a34ce --- /dev/null +++ b/src/bin/lttng-consumerd/health-consumerd.h @@ -0,0 +1,37 @@ +#ifndef HEALTH_CONSUMERD_H +#define HEALTH_CONSUMERD_H + +/* + * Copyright (C) 2012 - David Goulet + * Copyright (C) 2013 - Mathieu Desnoyers + * + * This program is free software; you can redistribute it and/or modify it + * under the terms of the GNU General Public License, version 2 only, as + * published by the Free Software Foundation. + * + * This program is distributed in the hope that it will be useful, but WITHOUT + * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for + * more details. + * + * You should have received a copy of the GNU General Public License along with + * this program; if not, write to the Free Software Foundation, Inc., 51 + * Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. + */ + +#include + +enum health_type { + HEALTH_CONSUMERD_TYPE_CHANNEL = 0, + HEALTH_CONSUMERD_TYPE_METADATA = 1, + HEALTH_CONSUMERD_TYPE_DATA = 2, + HEALTH_CONSUMERD_TYPE_SESSIOND = 3, + HEALTH_CONSUMERD_TYPE_METADATA_TIMER = 4, + + NR_HEALTH_CONSUMERD_TYPES, +}; + +/* Consumerd health monitoring */ +struct health_app *health_consumerd; + +#endif /* HEALTH_CONSUMERD_H */