action list: missing renames from previous name "group"
[lttng-tools.git] / src / bin / lttng / lttng.c
index 36a4fbed99e1b5234e986b3a7c10aa85ef00d54e..1c7d79954f37f1f14935bd66f8afb0b6fa2b33e0 100644 (file)
@@ -1,18 +1,8 @@
 /*
- * Copyright (c)  2011 David Goulet <david.goulet@polymtl.ca>
+ * Copyright (C) 2011 David Goulet <david.goulet@polymtl.ca>
  *
- * 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.
+ * SPDX-License-Identifier: GPL-2.0-only
  *
- * 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.
  */
 
 #define _LGPL_SOURCE
@@ -43,7 +33,7 @@ NULL
 ;
 
 /* Variables */
-static char *progname;
+static const char *progname;
 int opt_no_sessiond;
 char *opt_sessiond_path;
 
@@ -75,6 +65,7 @@ static struct option long_options[] = {
 /* First level command */
 static struct cmd_struct commands[] =  {
        { "add-context", cmd_add_context},
+       { "add-trigger", cmd_add_trigger},
        { "create", cmd_create},
        { "clear", cmd_clear},
        { "destroy", cmd_destroy},
@@ -84,9 +75,11 @@ static struct cmd_struct commands[] =  {
        { "enable-event", cmd_enable_events},
        { "help", NULL},
        { "list", cmd_list},
+       { "list-triggers", cmd_list_triggers},
        { "load", cmd_load},
        { "metadata", cmd_metadata},
        { "regenerate", cmd_regenerate},
+       { "remove-trigger", cmd_remove_trigger},
        { "rotate", cmd_rotate},
        { "enable-rotation", cmd_enable_rotation},
        { "disable-rotation", cmd_disable_rotation},
@@ -293,7 +286,7 @@ static void show_basic_help(void)
        puts("  disable-channel   " CONFIG_CMD_DESCR_DISABLE_CHANNEL);
        puts("  enable-channel    " CONFIG_CMD_DESCR_ENABLE_CHANNEL);
        puts("");
-       puts("Event rules:");
+       puts("Recording event rules:");
        puts("  disable-event     " CONFIG_CMD_DESCR_DISABLE_EVENT);
        puts("  enable-event      " CONFIG_CMD_DESCR_ENABLE_EVENT);
        puts("");
@@ -315,6 +308,11 @@ static void show_basic_help(void)
        puts("  track             " CONFIG_CMD_DESCR_TRACK);
        puts("  untrack           " CONFIG_CMD_DESCR_UNTRACK);
        puts("");
+       puts("Triggers:");
+       puts("  add-trigger       " CONFIG_CMD_DESCR_ADD_TRIGGER);
+       puts("  remove-trigger    " CONFIG_CMD_DESCR_REMOVE_TRIGGER);
+       puts("  list-triggers     " CONFIG_CMD_DESCR_LIST_TRIGGERS);
+       puts("");
        puts("Miscellaneous:");
        puts("  help              " CONFIG_CMD_DESCR_HELP);
        puts("  version           " CONFIG_CMD_DESCR_VERSION);
This page took 0.024639 seconds and 4 git commands to generate.