return comm;
}
+char *get_context_hostname(const struct bt_ctf_event *event)
+{
+ const struct definition *scope;
+ char *hostname;
+
+ scope = bt_ctf_get_top_level_scope(event, BT_STREAM_EVENT_CONTEXT);
+ hostname = bt_ctf_get_char_array(bt_ctf_get_field(event,
+ scope, "_hostname"));
+ if (bt_ctf_field_get_error()) {
+ return NULL;
+ }
+
+ return hostname;
+}
+
/*
* To get the parent process, put the pid in the tid field
* because the parent process gets pid = tid
{
struct processtop *newproc;
- if (opt_tid && !lookup_tid_list(tid))
- return NULL;
-
/* if the PID already exists, we just rename the process */
/* FIXME : need to integrate with clone/fork/exit to be accurate */
newproc = find_process_tid(ctx, tid, comm);
}
struct processtop* update_proc(struct processtop* proc, int pid, int tid,
- int ppid, int vpid, int vtid, int vppid, char *comm)
+ int ppid, int vpid, int vtid, int vppid, char *comm, char *hostname)
{
if (proc) {
proc->pid = pid;
free(proc->comm);
proc->comm = strdup(comm);
}
+ if (hostname) {
+ if (proc->hostname && strcmp(proc->hostname, hostname) != 0) {
+ free(proc->hostname);
+ }
+ proc->hostname = strdup(hostname);
+ }
}
return proc;
}
proc = find_process_tid(<tngtop, tid, procname);
if (proc == NULL)
proc = add_proc(<tngtop, tid, procname, timestamp);
- update_proc(proc, pid, tid, ppid, vpid, vtid, vppid, procname);
+ update_proc(proc, pid, tid, ppid, vpid, vtid, vppid, procname, NULL);
if (proc) {
free(proc->comm);
{
return g_hash_table_lookup(tid_list, (gpointer) &tid);
}
+
+char *lookup_hostname_list(const char *hostname)
+{
+ if (!hostname)
+ return NULL;
+
+ return g_hash_table_lookup(hostname_list, (gpointer) hostname);
+}
GHashTable *global_perf_liszt;
char *opt_tid;
+char *opt_hostname;
GHashTable *tid_list;
+GHashTable *hostname_list;
extern int quit;
struct processtop* add_proc(struct lttngtop *ctx, int pid, char *comm,
unsigned long timestamp);
struct processtop* update_proc(struct processtop* proc, int pid, int tid,
- int ppid, int vpid, int vtid, int vppid, char *comm);
+ int ppid, int vpid, int vtid, int vppid, char *comm,
+ char *hostname);
void add_thread(struct processtop *parent, struct processtop *thread);
struct processtop* get_proc(struct lttngtop *ctx, int tid, char *comm,
unsigned long timestamp);
uint64_t get_context_vtid(const struct bt_ctf_event *event);
uint64_t get_context_vpid(const struct bt_ctf_event *event);
uint64_t get_context_vppid(const struct bt_ctf_event *event);
+char *get_context_hostname(const struct bt_ctf_event *event);
enum bt_cb_ret handle_statedump_process_state(struct bt_ctf_event *call_data,
void *private_data);
struct tm format_timestamp(uint64_t timestamp);
int *lookup_tid_list(int tid);
+char *lookup_hostname_list(const char *hostname);
#endif /* _COMMON_H */
nblinedisplayed < max_center_lines; i++) {
tmp = g_ptr_array_index(data->process_table, i);
current_row_offset = 1;
+ if (!opt_tid && (opt_hostname && !lookup_hostname_list(tmp->hostname)))
+ continue;
+ if (!opt_hostname && (opt_tid && !lookup_tid_list(tmp->pid)))
+ continue;
+ if ((opt_tid && !lookup_tid_list(tmp->tid)) &&
+ (opt_hostname && !lookup_hostname_list(tmp->hostname)))
+ continue;
+
if (tmp->pid != tmp->tid)
if (toggle_threads == -1)
continue;
for (i = 0; i < data->process_table->len &&
nblinedisplayed < max_center_lines; i++) {
tmp = g_ptr_array_index(data->process_table, i);
+
+ if (!opt_tid && (opt_hostname && !lookup_hostname_list(tmp->hostname)))
+ continue;
+ if (!opt_hostname && (opt_tid && !lookup_tid_list(tmp->pid)))
+ continue;
+ if ((opt_tid && !lookup_tid_list(tmp->tid)) &&
+ (opt_hostname && !lookup_hostname_list(tmp->hostname)))
+ continue;
+
if (tmp->pid != tmp->tid)
if (toggle_threads == -1)
continue;
for (i = list_offset; i < data->process_table->len &&
nblinedisplayed < max_center_lines; i++) {
tmp = g_ptr_array_index(data->process_table, i);
+
+ if (!opt_tid && (opt_hostname && !lookup_hostname_list(tmp->hostname)))
+ continue;
+ if (!opt_hostname && (opt_tid && !lookup_tid_list(tmp->pid)))
+ continue;
+ if ((opt_tid && !lookup_tid_list(tmp->tid)) &&
+ (opt_hostname && !lookup_hostname_list(tmp->hostname)))
+ continue;
+
if (tmp->pid != tmp->tid)
if (toggle_threads == -1)
continue;
OPT_TEXTDUMP,
OPT_PID,
OPT_CHILD,
+ OPT_HOSTNAME,
};
static struct poptOption long_options[] = {
{ "textdump", 't', POPT_ARG_NONE, NULL, OPT_TEXTDUMP, NULL, NULL },
{ "child", 'f', POPT_ARG_NONE, NULL, OPT_CHILD, NULL, NULL },
{ "pid", 'p', POPT_ARG_STRING, &opt_tid, OPT_PID, NULL, NULL },
+ { "hostname", 'n', POPT_ARG_STRING, &opt_hostname, OPT_HOSTNAME, NULL, NULL },
{ NULL, 0, 0, NULL, 0, NULL, NULL },
};
int pid;
int64_t syscall_ret;
const struct definition *scope;
+ const char *hostname;
timestamp = bt_ctf_get_timestamp(call_data);
goto error;
}
- if (opt_tid && !lookup_tid_list(pid))
+ hostname = get_context_hostname(call_data);
+ if (!opt_tid && (opt_hostname && !lookup_hostname_list(hostname)))
+ goto end;
+ if (!opt_hostname && (opt_tid && !lookup_tid_list(pid)))
+ goto end;
+ if ((opt_tid && !lookup_tid_list(pid)) &&
+ (opt_hostname && !lookup_hostname_list(hostname)))
goto end;
if (strcmp(bt_ctf_event_name(call_data), "exit_syscall") == 0) {
void *private_data)
{
int pid, tid, ppid, vpid, vtid, vppid;
- char *comm;
+ char *comm, *hostname;
struct processtop *parent, *child;
unsigned long timestamp;
if (!comm) {
goto error;
}
+ /* optional */
+ hostname = get_context_hostname(call_data);
/* find or create the current process */
child = find_process_tid(<tngtop, tid, comm);
child = add_proc(<tngtop, tid, comm, timestamp);
if (!child)
goto end;
- update_proc(child, pid, tid, ppid, vpid, vtid, vppid, comm);
+ update_proc(child, pid, tid, ppid, vpid, vtid, vppid, comm, hostname);
if (pid != tid) {
/* find or create the parent */
void usage(FILE *fp)
{
fprintf(fp, "LTTngTop %s\n\n", VERSION);
- fprintf(fp, "Usage : lttngtop /path/to/trace\n");
+ fprintf(fp, "Usage : lttngtop [OPTIONS] [TRACE]\n");
+ fprintf(fp, " TRACE Path to the trace to analyse (no trace path for live tracing)\n");
+ fprintf(fp, " -h, --help This help message\n");
+ fprintf(fp, " -t, --textdump Display live events in text-only\n");
+ fprintf(fp, " -p, --pid Comma-separated list of PIDs to display\n");
+ fprintf(fp, " -f, --child Follow threads associated with selected PIDs\n");
+ fprintf(fp, " -n, --hostname Comma-separated list of hostnames to display (require hostname context in trace)\n");
}
/*
opt_child = 1;
break;
case OPT_PID:
- tid_list = g_hash_table_new(g_str_hash, g_str_equal);
+ tid_list = g_hash_table_new(g_str_hash,
+ g_str_equal);
tmp_str = strtok(opt_tid, ",");
while (tmp_str) {
tid = malloc(sizeof(int));
*tid = atoi(tmp_str);
- g_hash_table_insert(tid_list, (gpointer) tid, tid);
+ g_hash_table_insert(tid_list,
+ (gpointer) tid, tid);
+ tmp_str = strtok(NULL, ",");
+ }
+ break;
+ case OPT_HOSTNAME:
+ hostname_list = g_hash_table_new(g_str_hash,
+ g_str_equal);
+ tmp_str = strtok(opt_hostname, ",");
+ while (tmp_str) {
+ char *new_str = strdup(tmp_str);
+ g_hash_table_insert(hostname_list,
+ (gpointer) new_str,
+ (gpointer) new_str);
tmp_str = strtok(NULL, ",");
}
break;
lttng_add_context(handle, &kctxpid, NULL, NULL);
kctxtid.ctx = LTTNG_EVENT_CONTEXT_VTID;
lttng_add_context(handle, &kctxtid, NULL, NULL);
+ kctxtid.ctx = LTTNG_EVENT_CONTEXT_HOSTNAME;
+ lttng_add_context(handle, &kctxtid, NULL, NULL);
if ((ret = lttng_start_tracing("test")) < 0) {
fprintf(stderr,"error starting tracing : %s\n",