mirror of
https://github.com/clearlinux/telemetrics-client.git
synced 2026-08-28 21:35:39 +00:00
d1f11980be
This change contains: * New configuration keys: record_retention_enabled and record_server_delivery_enabled. These keys are needed to control remote delivery of records and record retention. These keys are optional to preserve backward compatibility with existing custom configurations. * Record copy implementation. This change allows to save copies of records locally when feature is enabled in configuration. This operation is independent of record spooling and record reporting to remote server. * New telem_journal argument to allow record payload print from local copy (if it exists). Signed-off-by: avjarami <alex.v.jaramillo@intel.com>
47 lines
1.2 KiB
C
47 lines
1.2 KiB
C
/*
|
|
* This program is part of the Clear Linux Project
|
|
*
|
|
* Copyright 2018 Intel Corporation
|
|
*
|
|
* This program is free software; you can redistribute it and/or modify it under
|
|
* the terms and conditions of the GNU Lesser General Public License, as
|
|
* published by the Free Software Foundation; either version 2.1 of the License,
|
|
* or (at your option) any later version.
|
|
*
|
|
* This program is distributed in the hope it will be useful, but WITHOUT ANY
|
|
* WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
|
|
* A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more
|
|
* details.
|
|
*/
|
|
|
|
#define _GNU_SOURCE
|
|
|
|
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
#include <unistd.h>
|
|
#include <string.h>
|
|
#include <errno.h>
|
|
|
|
#include "log.h"
|
|
#include "common.h"
|
|
|
|
int delete_record_by_id(char *record_id)
|
|
{
|
|
int ret = 0;
|
|
char *record_path = NULL;
|
|
|
|
ret = asprintf(&record_path, "%s/%s", RECORD_RETENTION_DIR, record_id);
|
|
if (ret == -1) {
|
|
return 1;
|
|
}
|
|
ret = unlink(record_path);
|
|
if (ret == -1) {
|
|
telem_perror("Error deleting saved record");
|
|
}
|
|
free(record_path);
|
|
|
|
return 0;
|
|
}
|
|
|
|
/* vi: set ts=8 sw=8 sts=4 et tw=80 cino=(0: */
|