From 69e172ab30794b14a405e42df217e696090bd472 Mon Sep 17 00:00:00 2001 From: arvindvis Date: Thu, 24 May 2018 15:15:30 -0700 Subject: [PATCH] SLO logging params added Destination for SLO and sampled sessions can be created using slo_destination_list and sample_destination_list with space separated values. The values can be one of collector, syslog file or empty. Change-Id: Ib68ab5e1674217fed7b706023625cd6f55933ccc Partial-Bug: 1729812 --- tools/python-contrailctl/schema/agent.json | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/tools/python-contrailctl/schema/agent.json b/tools/python-contrailctl/schema/agent.json index c972112..26d98bf 100644 --- a/tools/python-contrailctl/schema/agent.json +++ b/tools/python-contrailctl/schema/agent.json @@ -148,6 +148,14 @@ "backup_file_count": { "description": "Number of backup files", "type": "string" + }, + "slo_destination_list": { + "description": "Destination to which slo session messages have to be sent: collector, file, syslog", + "type": "string" + }, + "sample_destination_list": { + "description": "Destination to which sample session messages have to be sent: collector, file, syslog", + "type": "string" } } },