Monitors: Log Queries

From the Log Queries screen you can set up monitors for your Saved Log Searches. Below will give you some tips on configuring and implementing log query monitors. Add a New Monitor You can find the Log Queries link under the Monitoring tab. Once there select “Add New” to set up a new Log Query. Configure Monitor Settings If you have already …

Errors and Logs: Configure NLog

You can get started logging with the NLog appender with minimal changes to your project. You essentially just add a few DLLs to your project and then add some configuration details to your .config file specifying an additional (or replacement) log appender. The appender is available via Nuget in Visual Studio and additional documentation can be found on our Github …

Errors and Logs: Configure Elmah

You can get started logging your Errors using an Elmah appender with minimal changes to your project. You essentially just add a few DLLs to your project and then add some configuration details to your .config file specifying an additional (or replacement) appender. Getting Started Using NuGet If you’re using NuGet from Visual Studio, you can find and integrate the …

Errors and Logs: Configure log4j

Downloads and Includes The stackify-log-log4j12 project is open source and hosted on GitHub here. Maven artifacts are available in the central Maven repository within a few hours after a new release. https://search.maven.org/#search%7Cga%7C1%7CStackify The group id is com.stackify. The artifact id is stackify-log-log4j12. Substitute the version number you wish to use in the dependency snippet below. <dependency> <groupId>com.stackify</groupId> <artifactId>stackify-log-log4j12</artifactId> <version>INSERT_LATEST_MAVEN_CENTRAL_VERSION</version> </dependency> …

Errors and Logs: Configure Logback

Downloads and Includes The stackify-log-logback project is open source and hosted on GitHub here. Maven artifacts are available in the central Maven repository within a few hours after a new release. https://search.maven.org/#search%7Cga%7C1%7CStackify The group id is com.stackify. The artifact id is stackify-log-logback. Substitute the version number you wish to use in the dependency snippet below. <dependency> <groupId>com.stackify</groupId> <artifactId>stackify-log-logback</artifactId> <version>1.1.3</version> </dependency> …