Merge "removed vFW vLB extra executables"
[demo.git] / vnfs / VES5.0 / evel / evel-library / code / evel_training / 10-raise-syslog / hello_evel_world.c
1 #include <stdio.h>
2 #include <stdlib.h>
3 #include <unistd.h>
4
5 #include "evel.h"
6
7 /*****************************************************************************/
8 /* Local prototypes.                                                         */
9 /*****************************************************************************/
10 static void demo_syslog(void);
11
12 int main(int argc, char ** argv)
13 {
14   EVEL_ERR_CODES evel_rc = EVEL_SUCCESS;
15   EVENT_HEADER * heartbeat = NULL;
16
17   printf("\nHello AT&T Vendor Event world!\n");
18   fflush(stdout);
19
20   if (argc != 5)
21   {
22     fprintf(stderr,
23             "Usage: %s <FQDN>|<IP address> <port> "
24             "<username> <password>\n", argv[0]);
25     exit(-1);
26   }
27
28   /***************************************************************************/
29   /* Initialize                                                              */
30   /***************************************************************************/
31   if (evel_initialize(argv[1],                      /* FQDN                  */
32                       atoi(argv[2]),                /* Port                  */
33                       NULL,                         /* optional path         */
34                       NULL,                         /* optional topic        */
35                       0,                            /* HTTPS?                */
36                       argv[3],                      /* Username              */
37                       argv[4],                      /* Password              */
38                       EVEL_SOURCE_VIRTUAL_MACHINE,  /* Source type           */
39                       "EVEL training demo",         /* Role                  */
40                       0))                           /* Verbosity             */
41   {
42     fprintf(stderr, "\nFailed to initialize the EVEL library!!!\n");
43     exit(-1);
44   }
45   else
46   {
47     printf("\nInitialization completed\n");
48   }
49
50   /***************************************************************************/
51   /* Send a heartbeat just to show we're alive!                              */
52   /***************************************************************************/
53   heartbeat = evel_new_heartbeat();
54   if (heartbeat != NULL)
55   {
56     evel_rc = evel_post_event(heartbeat);
57     if (evel_rc != EVEL_SUCCESS)
58     {
59       printf("Post failed %d (%s)", evel_rc, evel_error_string());
60     }
61   }
62   else
63   {
64     printf("New heartbeat failed");
65   }
66
67   /***************************************************************************/
68   /* Raise a syslog                                                          */
69   /***************************************************************************/
70   demo_syslog();
71
72   /***************************************************************************/
73   /* Terminate                                                               */
74   /***************************************************************************/
75   sleep(1);
76   evel_terminate();
77   printf("Terminated\n");
78
79   return 0;
80 }
81
82 /**************************************************************************//**
83  * Create and send a syslog event.
84  *****************************************************************************/
85 void demo_syslog(void)
86 {
87   EVENT_SYSLOG * syslog = NULL;
88   EVEL_ERR_CODES evel_rc = EVEL_SUCCESS;
89
90   syslog = evel_new_syslog(EVEL_SOURCE_VIRTUAL_MACHINE,
91                            "EVEL library message",
92                            "EVEL");
93   if (syslog != NULL)
94   {
95     evel_syslog_event_source_host_set(syslog, "Virtual host");
96     evel_syslog_facility_set(syslog, EVEL_SYSLOG_FACILITY_LOCAL0);
97     evel_syslog_proc_set(syslog, "vnf_process");
98     evel_syslog_proc_id_set(syslog, 1423);
99     evel_syslog_version_set(syslog, 1);
100     evel_syslog_addl_filter_set(syslog, "Name1=Value1|Name2=Value2|Name3=Value3");
101     evel_rc = evel_post_event((EVENT_HEADER *)syslog);
102     if (evel_rc == EVEL_SUCCESS)
103     {
104       printf("Post OK!\n");
105     }
106     else
107     {
108       printf("Post Failed %d (%s)\n", evel_rc, evel_error_string());
109     }
110   }
111   else
112   {
113     printf("Failed to create event (%s)\n", evel_error_string());
114   }
115
116   printf("   Processed Syslog\n");
117 }