SoW-2019-0002: Dynamic Snapshot
[lttng-tools.git] / doc / examples / trigger-on-event / demo.sh
CommitLineData
1831ae68
FD
1#!/bin/bash
2#
3# Copyright (C) 2020 Jérémie Galarneau <jeremie.galarneau@efficios.com>
4#
5# SPDX-License-Identifier: MIT
6
7EVENT_NAME=trigger_exemple:my_event
8TRIGGER_NAME=demo_trigger
9
10lttng list > /dev/null 2>&1
11if [ $? -ne 0 ]; then
12 echo "Could not connect to session daemon, are you sure it is running?"
13 exit 1
14fi
15
16echo "Registering a notification trigger named \"$TRIGGER_NAME\" for the $EVENT_NAME user-space event"
17lttng add-trigger --id $TRIGGER_NAME --condition on-event --userspace $EVENT_NAME --action notify
18
19./notification-client $TRIGGER_NAME
20
This page took 0.025666 seconds and 5 git commands to generate.