コード例 #1
0
ファイル: notify.py プロジェクト: pombreda/agenthub
 def notify(self, method, path, body):
     path = self.join(path)
     rest = Rest(self.host, self.port, self.auth)
     status = rest.request(method, path, body)
     log.info('notified(%s): %s:%d %s:%s', status[0], self.host, self.port,
              method, path)
     return status
コード例 #2
0
#
# Copyright (c) 2011 Red Hat, Inc.
#
# This software is licensed to you under the GNU Lesser General Public
# License as published by the Free Software Foundation; either version
# 2 of the License (LGPLv2) or (at your option) any later version.
# There is NO WARRANTY for this software, express or implied,
# including the implied warranties of MERCHANTABILITY,
# NON-INFRINGEMENT, or FITNESS FOR A PARTICULAR PURPOSE. You should
# have received a copy of LGPLv2 along with this software; if not, see
# http://www.gnu.org/licenses/old-licenses/lgpl-2.0.txt.
#
# Jeff Ortel <*****@*****.**>
#

from agenthub.rest import Rest

rest = Rest()
rest.get('/agenthub/ping/')