def createEvent(apiHost, apiKey, fingerprintFields, title, organizationID, source={ 'ref': platform.node(), 'type': 'host' }, severity=Event.INFO, sender={ 'ref': platform.node(), 'type': 'host' }, properties=None, status=Event.OK, tags=None, message=None, createdAt=None, receivedAt=None, eventId=None): c = EventConnection(apiKey=apiKey, organizationID=organizationID, apiHost=apiHost) e = Event(source, fingerprintFields, title, organizationID, severity, sender, properties, status, tags, message, createdAt, receivedAt, eventId) print(c.createEvent(e))
def createEvent(apiHost, apiKey, fingerprintFields, title, organizationID, source = {'ref': platform.node(),'type': 'host'}, severity=Event.INFO, sender={'ref': platform.node(),'type': 'host'}, properties=None, status=Event.OK, tags=None, message=None, createdAt=None, receivedAt=None, eventId=None): c = EventConnection(apiKey=apiKey,organizationID=organizationID,apiHost=apiHost) e = Event(source, fingerprintFields, title, organizationID, severity, sender, properties, status, tags, message, createdAt, receivedAt, eventId) print(c.createEvent(e))
def testCreateEvent(self): # Create our Boundary Event Connection connection = EventConnection(self.apiKey, self.organizationID) event = Event.getDefaultEvent() #Send an event to the Boundary Server using the Boundary REST API eventID = connection.createEvent(event) self.assertIsNotNone(eventID, 'Check for returned event ID')
def testCreateEvent(self): # Create our Boundary Event Connection connection = EventConnection(self.apiKey, self.organizationID) event = Event.getDefaultEvent() #Send an event to the Boundary Server using the Boundary REST API eventID = connection.createEvent(event) self.assertIsNotNone(eventID,'Check for returned event ID')
def main(): k = 'ARI0PzUzWYUo7GG1OxiHmABTpr9' o = '3ehRi7uZeeaTN12dErF5XOnRXjC' connection = EventConnection(apiKey=k,organizationID=o) event = Event.getDefaultEvent() event.message = 'Hello World' event.title = 'Boundary Object Oriented Event API' eventId = connection.createEvent(event) print('event id: ' + str(eventId)) newEvent = connection.getEvent(eventId) print('event: ' + newEvent)
def main(): k = 'ARI0PzUzWYUo7GG1OxiHmABTpr9' o = '3ehRi7uZeeaTN12dErF5XOnRXjC' connection = EventConnection(apiKey=k, organizationID=o) event = Event.getDefaultEvent() event.message = 'Hello World' event.title = 'Boundary Object Oriented Event API' eventId = connection.createEvent(event) print('event id: ' + str(eventId)) newEvent = connection.getEvent(eventId) print('event: ' + newEvent)
def testGetEvent(self): connection = EventConnection(self.apiKey, self.organizationID) event = connection.getEvent(213299714) print('event_type {0}, event: {1}'.format(type(event), event))
def testGetEvent(self): connection = EventConnection(self.apiKey, self.organizationID) event = connection.getEvent(213299714) print('event_type {0}, event: {1}'.format(type(event),event))
def getEvent(apiHost, apiKey, eventId): c = EventConnection(apiKey=apiKey, apiHost=apiHost) event = c.getEvent(eventId) return event
def getEvent(apiHost,apiKey,eventId): c = EventConnection(apiKey=apiKey,apiHost=apiHost) event = c.getEvent(eventId) return event