summaryrefslogtreecommitdiff
path: root/common/elapi/elapi_sink.h
AgeCommit message (Collapse)AuthorFilesLines
2010-02-12Remove ELAPI from the SSSD repositoryStephen Gallagher1-58/+0
ELAPI now lives in its own project at https://fedorahosted.org/ELAPI
2009-09-08ELAPI Laying foundation for the async processingDmitri Pal1-5/+0
A relatively small patch aligning headers and a small portion of code for upcoming implementation of the async event processing. Cleanup of the test config file.
2009-09-08ELAPI Adding file provider and CSV formatDmitri Pal1-1/+5
This patch creates the infrastructure for logging of the event from the top of the interface to the bottom. It is a start. A lot of functionality is left aside. The attempt of this patch is pass event from caller of the ELAPI interface via targets to sinks then to providers and do serialization creating entity that is ready to be written to a file. It also implements more specific provider related configuration parameters. Also it addresses couple suggestions that were brought up against previous patch. ELAPI Correcting issues This patch addresses the issues found during the review of the previous patches and addresses ticket #166.
2009-09-08ELAPI sinks and providersDmitri Pal1-29/+10
This patch drills down to the next level of ELAPI functionality. I adds the creation and loading of the sinks. It also implements a skeleton for the first low level provider which will be capable of writing to a file. The configuration ini file is extended to define new configuration parameters and their meanings.
2009-08-12ELAPI Next round of functionality - logging part of the interfaceDmitri Pal1-0/+78
a) Added the main logging interface which allows creating dispatcher and logging messages or events. Can't actully log anything yet since the sinks are stubbed out. b) Made default template be a part of the default dispatcher. c) Updated UNIT test. d) Some of the calls are stubbed out but they are there to indicate where next round of work will be.