X-Git-Url: https://git.lttng.org/?a=blobdiff_plain;f=src%2Fbin%2Flttng-sessiond%2Fconsumer.c;h=8198629f32638fc181a07cc2c5d28ac6703c062f;hb=4b29f1cec9f8e93d4dde0c982f30e3201f0f4e65;hp=1b7a397335cb0abbe2dbcf07ecf7db578aac85f2;hpb=07b86b528dc279d59cdf16e6cb946c144fe773f2;p=lttng-tools.git diff --git a/src/bin/lttng-sessiond/consumer.c b/src/bin/lttng-sessiond/consumer.c index 1b7a39733..8198629f3 100644 --- a/src/bin/lttng-sessiond/consumer.c +++ b/src/bin/lttng-sessiond/consumer.c @@ -28,6 +28,7 @@ #include #include #include +#include #include "consumer.h" #include "health.h" @@ -1192,9 +1193,10 @@ end: */ int consumer_snapshot_channel(struct consumer_socket *socket, uint64_t key, struct snapshot_output *output, int metadata, uid_t uid, gid_t gid, - int wait) + const char *session_path, int wait) { int ret; + char datetime[16]; struct lttcomm_consumer_msg msg; assert(socket); @@ -1204,8 +1206,14 @@ int consumer_snapshot_channel(struct consumer_socket *socket, uint64_t key, DBG("Consumer snapshot channel key %" PRIu64, key); - memset(&msg, 0, sizeof(msg)); + ret = utils_get_current_time_str("%Y%m%d-%H%M%S", datetime, + sizeof(datetime)); + if (!ret) { + ret = -EINVAL; + goto error; + } + memset(&msg, 0, sizeof(msg)); msg.cmd_type = LTTNG_CONSUMER_SNAPSHOT_CHANNEL; msg.u.snapshot_channel.key = key; msg.u.snapshot_channel.max_size = output->max_size; @@ -1215,16 +1223,18 @@ int consumer_snapshot_channel(struct consumer_socket *socket, uint64_t key, msg.u.snapshot_channel.relayd_id = output->consumer->net_seq_index; msg.u.snapshot_channel.use_relayd = 1; ret = snprintf(msg.u.snapshot_channel.pathname, - sizeof(msg.u.snapshot_channel.pathname), "%s/%s", - output->consumer->subdir, DEFAULT_SNAPSHOT_NAME); + sizeof(msg.u.snapshot_channel.pathname), "%s/%s-%s%s", + output->consumer->subdir, output->name, datetime, + session_path); if (ret < 0) { ret = -LTTNG_ERR_NOMEM; goto error; } } else { ret = snprintf(msg.u.snapshot_channel.pathname, - sizeof(msg.u.snapshot_channel.pathname), "%s/%s", - output->consumer->dst.trace_path, DEFAULT_SNAPSHOT_NAME); + sizeof(msg.u.snapshot_channel.pathname), "%s/%s-%s%s", + output->consumer->dst.trace_path, output->name, datetime, + session_path); if (ret < 0) { ret = -LTTNG_ERR_NOMEM; goto error;