blob: 5558b8787191eee33418c5d9a3afeccaaa606922 [file] [log] [blame]
peusterm79ef6ae2016-07-08 13:53:57 +02001"""
2Copyright (c) 2015 SONATA-NFV and Paderborn University
3ALL RIGHTS RESERVED.
4
5Licensed under the Apache License, Version 2.0 (the "License");
6you may not use this file except in compliance with the License.
7You may obtain a copy of the License at
8
9 http://www.apache.org/licenses/LICENSE-2.0
10
11Unless required by applicable law or agreed to in writing, software
12distributed under the License is distributed on an "AS IS" BASIS,
13WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14See the License for the specific language governing permissions and
15limitations under the License.
16
17Neither the name of the SONATA-NFV [, ANY ADDITIONAL AFFILIATION]
18nor the names of its contributors may be used to endorse or promote
19products derived from this software without specific prior written
20permission.
21
22This work has been performed in the framework of the SONATA project,
23funded by the European Commission under Grant number 671517 through
24the Horizon 2020 and 5G-PPP programmes. The authors would like to
25acknowledge the contributions of their colleagues of the SONATA
26partner consortium (www.sonata-nfv.eu).
27"""
stevenvanrosseme131bf52016-07-14 11:42:09 +020028
29"""
30Distributed Cloud Emulator (dcemulator)
31Networking and monitoring functions
32(c) 2015 by Steven Van Rossem <steven.vanrossem@intec.ugent.be>
33"""
34
stevenvanrossem73efd192016-06-29 01:44:07 +020035import logging
36from flask_restful import Resource
37from flask import request
38import json
39
40logging.basicConfig(level=logging.INFO)
41
peustermdfc14602017-01-13 08:22:45 +010042CORS_HEADER = {'Access-Control-Allow-Origin': '*'}
43
stevenvanrossem73efd192016-06-29 01:44:07 +020044net = None
45
46
47
48class MonitorInterfaceAction(Resource):
49 """
50 Monitor the counters of a VNF interface
51 :param vnf_name: name of the VNF to be monitored
52 :param vnf_interface: name of the VNF interface to be monitored
53 :param metric: tx_bytes, rx_bytes, tx_packets, rx_packets
54 :return: message string indicating if the monitor action is succesful or not
55 """
56 global net
57
stevenvanrossem9c8a4122016-07-16 03:23:13 +020058 def put(self, vnf_name, vnf_interface=None, metric='tx_packets'):
stevenvanrossem73efd192016-06-29 01:44:07 +020059 logging.debug("REST CALL: start monitor VNF interface")
60 try:
61 c = net.monitor_agent.setup_metric(vnf_name, vnf_interface, metric)
62 # return monitor message response
peustermdfc14602017-01-13 08:22:45 +010063 return str(c), 200, CORS_HEADER
stevenvanrossem73efd192016-06-29 01:44:07 +020064 except Exception as ex:
65 logging.exception("API error.")
peustermdfc14602017-01-13 08:22:45 +010066 return ex.message, 500, CORS_HEADER
stevenvanrossem73efd192016-06-29 01:44:07 +020067
stevenvanrossem9c8a4122016-07-16 03:23:13 +020068 def delete(self, vnf_name, vnf_interface=None, metric='tx_packets'):
stevenvanrossem73efd192016-06-29 01:44:07 +020069 logging.debug("REST CALL: stop monitor VNF interface")
70 try:
71 c = net.monitor_agent.stop_metric(vnf_name, vnf_interface, metric)
72 # return monitor message response
peustermdfc14602017-01-13 08:22:45 +010073 return str(c), 200, CORS_HEADER
stevenvanrossem73efd192016-06-29 01:44:07 +020074 except Exception as ex:
75 logging.exception("API error.")
peustermdfc14602017-01-13 08:22:45 +010076 return ex.message, 500, CORS_HEADER
stevenvanrossem73efd192016-06-29 01:44:07 +020077
78
79class MonitorFlowAction(Resource):
80 """
81 Monitor the counters of a specific flow
82 :param vnf_name: name of the VNF to be monitored
83 :param vnf_interface: name of the VNF interface to be monitored
84 :param metric: tx_bytes, rx_bytes, tx_packets, rx_packets
85 :param cookie: specific identifier of flows to monitor
86 :return: message string indicating if the monitor action is succesful or not
87 """
88 global net
89
stevenvanrossem9c8a4122016-07-16 03:23:13 +020090 def put(self, vnf_name, vnf_interface=None, metric='tx_packets', cookie=0):
stevenvanrossem73efd192016-06-29 01:44:07 +020091 logging.debug("REST CALL: start monitor VNF interface")
92 try:
93 c = net.monitor_agent.setup_flow(vnf_name, vnf_interface, metric, cookie)
94 # return monitor message response
peustermdfc14602017-01-13 08:22:45 +010095 return str(c), 200, CORS_HEADER
stevenvanrossem73efd192016-06-29 01:44:07 +020096 except Exception as ex:
97 logging.exception("API error.")
peustermdfc14602017-01-13 08:22:45 +010098 return ex.message, 500, CORS_HEADER
stevenvanrossem73efd192016-06-29 01:44:07 +020099
stevenvanrossem9c8a4122016-07-16 03:23:13 +0200100 def delete(self, vnf_name, vnf_interface=None, metric='tx_packets', cookie=0):
stevenvanrossem73efd192016-06-29 01:44:07 +0200101 logging.debug("REST CALL: stop monitor VNF interface")
102 try:
103 c = net.monitor_agent.stop_flow(vnf_name, vnf_interface, metric, cookie)
104 # return monitor message response
peustermdfc14602017-01-13 08:22:45 +0100105 return str(c), 200, CORS_HEADER
stevenvanrossem73efd192016-06-29 01:44:07 +0200106 except Exception as ex:
107 logging.exception("API error.")
peustermdfc14602017-01-13 08:22:45 +0100108 return ex.message, 500, CORS_HEADER