Пример #1
0
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))
Пример #2
0
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))
Пример #3
0
    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')
Пример #4
0
 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')
Пример #5
0
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)
Пример #6
0
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)