Component | Events that write to the Windows Event Log | Description |
Identity | Log.WriteEntry("Venafi LDAP Identity: certificate from {server}:{portNum} is un-trusted locally; subject: {certificate.Subject}", UntrustedHostCertificate, Severity.Critical); | Certificate used for authentication to LDAP Server is not in local TrustStore |
Identity | EventLog.WriteEntry("Venafi Director", id_drivers_load_errors, EventLogEntryType.Error); | Identity driver not loading on initialization of framework (services startup) |
Encryption Driver | EventLog.WriteEntry("Venafi Director", Error, EventLogEntryType.Error); | Encryption Driver failure (DPAPI or HSM) |
Encryption Driver | EventLog.WriteEntry("Venafi Director", Error, EventLogEntryType.Error); | No suitable encryption driver license found during load |
Encryption Driver | EventLog.WriteEntry("Venafi Director", "Encryption key '{driver_key}' is valid.", EventLogEntryType.Information); | If the encryption key is valid (HSM, DPAPI) |
Encryption Driver | EventLog.WriteEntry("Venafi Director", "Encryption key '{driverKey}' is not valid.", EventLogEntryType.Error); | If the encryption key is not valid |
Encryption Driver | EventLog.WriteEntry("Venafi Director", "Encryption driver {driver name} (DN: {driverDN}) failed to initialize", EventLogEntryType.Error); | If encryption driver fails to initialize |
Log Server | Log.WriteEntry("Failed to connect to the Log Server: '{log.server}:{log.port}', using local caching server", 0x00160000, Severity.Info); | Can't talk to the log server on any address, going to the local cache |
Log Server | Log.WriteEntry("Failed to connect to the Log Server: '{log.server}:{log.port}', with error: {errorString}", 0x00160000, Severity.Error); | Something rather unexpected happened |
Encryption Driver | EventLog.WriteEntry("Venafi Director", "A process has been shutdown because the encryption driver {driverName} key {keyName} is unavailable. {ErrorString}", EventLogEntryType.Error); | Tried to decrypt from the secret store and the encryption driver is unavailable (offline) |
MS SQL | Log.WriteEntry("LogMsSQL Expire error {conn.Error}", 0xFFFF0001, Severity.Critical); | Log SQL driver is in place and it fails to log the expire command (for log retention) |
MS SQL | Log.WriteEntry("LogMsSQL Expire open error {conn.Error}", 0xFFFF0001, Severity.Critical); | Attempting to execute the expiration command but failed to open the connection to run the command |
MS SQL | Log.WriteEntry("LogMsSQL has invalid table name: {table}", 0xFFFF0001, Severity.Error); | The log SQL channel has an invalid table name (Table: field in the specific SQL channel) |
MS SQL | Log.WriteEntry("LogMsSQL Open error {error}", 0xFFFF0001, Severity.Critical); | Initialization of an SQL channel fails to open (connect) |
MS SQL | Log.WriteEntry("LogMsSQL ProcessEvent Error:{Error}", 0xFFFF0001, Severity.Critical); | Trying to write an event to the log channel table and the write fails |
Oracle | Log.WriteEntry("LogOracle Expire error {error}", 0xFFFF0001, Severity.Critical); | Log SQL driver is in place and it fails to log the expire command (for log retention) |
Oracle | Log.WriteEntry("LogOracle Expire open error {Error}", 0xFFFF0001, Severity.Critical); | Attempting to execute the expiration command but failed to open the connection to run the command |
Oracle | Log.WriteEntry("LogOracle has invalid table name: {table}"), 0xFFFF0001, Severity.Error); | The log SQL channel has an invalid table name (Table: field in the specific SQL channel) |
Oracle | Log.WriteEntry("LogOracle Open error {error}", 0xFFFF0001, Severity.Critical); | Initialization of an SQL channel fails to open (connect) |
Oracle | Log.WriteEntry("LogOracle ProcessEvent Error: {Error}"), 0xFFFF0001, Severity.Critical); | Trying to write an event to the log channel table and the write fails |
Log Server | Log.WriteEntry("An error occurred communicating with the client '{socket.RemoteEndPoint}', the client protocol version '{client_version}' was greater than the supported protocol version '{LogProtocolVersion}'.", 0x0010000, Severity.Error); | Client to log server version mismatch |
Log Server | Log.WriteEntry("An error occurred communicating with the client '{socket.RemoteEndPoint}', the client sent an unknown command '{command}' to the server.", 0x0010000, Severity.Error); | Client to log server command sent is not understood |
Log Server | Log.WriteEntry("An error occurred accepting a connection from the client '{socket.RemoteEndPoint}'. Error: {error}", 0x0010000, Severity.Error); | Client to log server in communication error after communication is started and before it completes |
Log Server | Log.WriteEntry("An error occurred authenticating the connection from the client '{socket.RemoteEndPoint}'. Error: {error}", 0x0010000, Severity.Error); | Client to log server authentication fails |
Log Server | Log.WriteEntry("Diskspace fell below '{minimum_free_space}'MB, suspending cache logging.") 0x0010000, Severity.Error); | Sending data to local log cache suspended due to insufficient disk space |
Log Server | Log.WriteEntry("Resuming cache logging, diskspace no longer below '{minimum_free_space}'MB, suspending cache logging.", 0x0010000, Severity.Info); | Sending data to local log cache resumed because disk space longer insufficient |
Log Server | Log.WriteEntry("Log cache file appears corrupt, discarding the data", 0x0010000, Severity.Critical); | Discarding data sent to local log cache because log file is corrupt |
Log Server | Log.WriteEntry("An error occurred accepting a connection from the client. Error: {Message}, Error Code: {ErrorCode}", 0x0010000, Severity.Error); | Client to log server communication error |
Log Server | Log.WriteEntry("An error occurred accepting a connection from the client. Error: {error}", 0x0010000, Severity.Error); | Client to log server communication error |
Log Server | EventLog.WriteEntry("An error was encountered with the following exception:\n" + ex.Message + "\nStacktrace:\n" + ex.StackTrace, EventLogEntryType.Error,); | Any errors occurring in channels or notification engine (part of the log server) |
Log Server | EventLog.WriteEntry("An error was encountered with the following nested exception:\n " + ex.Message + "\n,Inner Message: \n" + ex.InnerException.Message + "\nStacktrace:\n" + ex.StackTrace + "\nInner Stacktrace:\n" + ex.InnerException.StackTrace, EventLogEntryType.Error); | Any errors occurring in channels or notification engine (part of the log server) |
Log Server | EventLog.WriteEntry(error, EventLogEntryType.Error, 3, 1); | If log channels or notification channels fail to load |
Log Server | EventLog.WriteEntry("Framework failed to initialize: " + EventLogEntryType.Error); | Framework fails to initialize starting the log server service |
Log Server | base.EventLog.WriteEntry("Framework to initialize: " + EventLogEntryType.Error); | Framework fails to initialize starting the log server service |
Log Server | EventLog.WriteEntry("An error was encountered with the following exception:\n" + Message + "\nStacktrace:\n" + StackTrace, EventLogEntryType.Error); | Framework fails to initialize starting the log server service |
Log Server | EventLog.WriteEntry("An error was encountered with the following nested exception:\n " + Message + "\n,Inner Message: \n" + InnerException.Message + "\nStacktrace:\n" + StackTrace + "\nInner Stacktrace:\n" + InnerException.StackTrace); | Framework fails to initialize starting the log server service |
Director Framework | Log.WriteEntry(String.Format("Fatal Exception '{Message}' was encountered {StackTrace}"), FatalSystemException, Severity.Alert); | Fatal error occurring in Director framework (failed service) |
Director Framework | Log.WriteEntry(String.Format("Exception '{Message}' was encountered {StackTrace}"), FatalSystemException, Severity.Alert); | Error occurred in the framework, non fatal (not a service crash) |
VED Service | EventLog.WriteEntry(ex.Message, EventLogEntryType.Error); | VED service start, and something failed to load |
Nightly trigger | Log.WriteEntry(String.Format("Exception '{Message}' was encountered while running trigger items, Stack: {StackTrace}"), FatalSystemException, Severity.Alert); | Nightly trigger, handles possible errors involved |
SCEP | EventLog.WriteEntry("Venafi Network Device Enrollment", "Startup failure; error:" + Message + "\r\nStack:" + StackTrace); | SCEP service (web site) not able to initialize |
Venafi Control Center (DCC) | Log.WriteEntry("Venafi Encryption Director 3rd-party trust for assembly {assembly_file} with ID {token} was added", 0x00160000, Severity.Notice); | 3rd-party trust added |
Venafi Control Center (DCC) | Log.WriteEntry("Venafi Encryption Director 3rd-party trust for assembly {assembly_file} with ID {token} was removed", 0x00160000, Severity.Notice); | 3rd-party trust removed |
AJ | EventLog.WriteEntry(Global.ApplicationName, "Required certificate with hash " + command.MustHaveHash + " is already installed (" + Subject + ")"); | Desired certificate is already installed |
AJ | EventLog.WriteEntry(Global.ApplicationName, "Requesting certificate with hash " + command.MustHaveHash); | certificate is being requested |
AJ | EventLog.WriteEntry(Global.ApplicationName, "Null certificate data was received"); | Certificate not found |
AJ | EventLog.WriteEntry(Global.ApplicationName, "Installing received certificate for hash " + certificate.Thumbprint + "; Subject: " + certificate.Subject); | Installing certificate |
AJ | EventLog.WriteEntry(Global.ApplicationName, "Encountered exception when processing certificate command; Message: " + ex.Message + "\r\nStack: " + ex.StackTrace); | Error encountered during certificate retrieval or installation |
AJ | EventLog.WriteEntry(Global.ApplicationName, "Reporting discovered certificates"); | Discovered certificates |
AJ | EventLog.WriteEntry(Global.ApplicationName, "Failed to report discovered certificates"); | Error encountered while reporting discovered certificates |
AJ | EventLog.WriteEntry(Global.ApplicationName, "Failed to open store " + store_name); | Error encountered while adding certificates to the certificate store |
AJ | EventLog.WriteEntry(Global.ApplicationName, "Encountered exception when processing certificate discovery command; Message: " + ex.Message + "\r\nStack: " + ex.StackTrace); | Error encountered while processing certificate discovery |
AJ | EventLog.WriteEntry(Global.ApplicationName, "Encountered exception when trying to get user principal; Message: " + ex.Message + "\r\nStack: " + ex.StackTrace); | Error encountered while getting user principal |
AJ | EventLog.WriteEntry("SimpleService.TimeChanged", "Time changed; it is now " + currentTime) | Logs time change event |
AJ | EventLog.WriteEntry("SimpleService.TimeChanged", "Time changed; it is now " + currentTime) | Logs time change event |
AJ | EventLog.WriteEntry(Global.ApplicationName, "Check-in server is " + server_url); | Initialization notice with check-in server URL |
AJ | EventLog.WriteEntry(Global.ApplicationName, "Failed to get session requirements" + server_url); | Initialization notice with check-in server URL |
AJ | EventLog.WriteEntry(Global.ApplicationName, "Failed to authenticate to server " + server_url); | Agent failed to Authenticate |
AJ | EventLog.WriteEntry(Global.ApplicationName, "Check-in to server " + server_url + " started"); | Agent check-in started |
AJ | EventLog.WriteEntry(Global.ApplicationName, "Check-in to server " + server_url + " failed: No REST response"); | Agent check-in failed |
AJ | EventLog.WriteEntry(Global.ApplicationName, "Check-in to server " + server_url + " failed: " + rest_response.ErrorMessage); | Agent check-in failed |
AJ | EventLog.WriteEntry(Global.ApplicationName, "Check-in to server " + server_url + " failed with status code " + rest_response.StatusCode.ToString() + "(" + rest_response.Content + ")"); | Agent check-in failed |
AJ | EventLog.WriteEntry(Global.ApplicationName, "Check-in to server " + server_url + " failed with result-code " + checkin.Result.ToString()); | Agent check-in failed |
AJ | EventLog.WriteEntry(Global.ApplicationName, "Check-in to server " + server_url + " found " + checkin.Work.Count.ToString() + " work items"); | Agent check-in success |
AJ | EventLog.WriteEntry(Global.ApplicationName, "Handling Certificate work item"); | Agent work progress |
AJ | EventLog.WriteEntry(Global.ApplicationName, "Certificate work item requested retry in " + try_again.ToString() + " seconds"); | Agent work progress |
AJ | EventLog.WriteEntry(Global.ApplicationName, "Handling Certificate Discovery work item"); | Agent work progress |
AJ | EventLog.WriteEntry(Global.ApplicationName, "Handling Client Settings work item"); | Agent work progress |
AJ | EventLog.WriteEntry(Global.ApplicationName, "Check-in to server " + server_url + " complete"); | Agent work progress |
AJ | EventLog.WriteEntry(Global.ApplicationName, "Next scheduled check-in time:" + wakeup_time.ToString()); | Agent activity note |
AJ | EventLog.WriteEntry(Global.ApplicationName, "Checking in with server"); | Agent activity note |
AJ | EventLog.WriteEntry(Global.ApplicationName, "Changing the check-in URL from " + Global.Server.ServerURL + " to " + command.ServerURL); | Agent activity note |
AJ | EventLog.WriteEntry(Global.ApplicationName, "Changing the check-in interval from " + checkin_interval + " to " + command.CheckInInterval); | Agent activity note |
AJ | EventLog.WriteEntry("Venafi AJ", "Running in user mode"); | Agent activity note |
AJ | EventLog.WriteEntry(Global.ApplicationName, "Starting Timer thread"); | Agent activity note |
AJ | EventLog.WriteEntry("Venafi AJ", "Exiting"); | Agent activity note |
AJ | EventLog.WriteEntry("Venafi AJ Service", "Starting"); | Agent activity note |
AJ | EventLog.WriteEntry("Venafi AJ Service", "Stopping"); | Agent activity note |
Follow
Comments