Log Workspaces is a powerful tool for analyzing and monitoring financial transactions and system performance. This feature enables you to use SQL queries and visualizations to gain valuable insights into your operations and make data-driven decisions to improve performance and efficiency.
Benefits
Using Log Workspaces in the finance industry offers several benefits:
Real-time monitoring: Track financial transactions and system performance in real time
Issue identification: Quickly identify and diagnose technical and business-related issues
Performance analysis: Analyze trends and patterns to optimize processes
Reporting and auditing: Generate reports for compliance and auditing purposes
This guide demonstrates how to use Log Workspaces with an example focusing on credit card details and bill payment processing.
Understanding the data
The example in this guide focuses on two key functions within the finance industry:
Credit Card Details: Processing and managing credit card transactions.
Bill Payment: Processing bill payments.
For each function, the following metrics are tracked:
Total Count: The total number of requests
Success: The number of successful requests
Business Failed: The number of requests that failed due to business-related issues
Technical Failed: The number of requests that failed due to technical issues
TechFail %: The percentage of technical failures
Bringing in your data source and building your queries
Create a workspace and add a data source. In this example, credit cards and bill payments each have three data source cells, each filtering to the logs that are relevant to the analysis. For instructions on how to create a workspace and bring in your data source, see Log Workspaces.
Data source cells for credit card transaction monitoring, showing query filters and parameters to isolate relevant financial log data.
Data source cells for bill payment monitoring, showing query filters and parameters to isolate relevant financial log data.
With the data from your credit card and bill payment data sources, you can create an Analysis cell using SQL to calculate and compare key metrics for both processes. This analysis helps you track success rates, identify failure patterns, and monitor performance trends.
SQL query Analysis cell displaying key metrics for credit card and bill payment transactions, highlighting success rates and failure percentages for financial monitoring
SQL query analysis
Query purpose and structure
This query uses a UNION to combine key metrics for two financial processes (Credit Card Details and Bill Payment) into a single comparative view, making it easier to analyze performance across both functions.
The SQL for Bill Payment calculates metrics for bill payment processing by:
Counting total requests from the bill_totalrequest data source
Counting successful requests from the bill_successfulrequest data source
Counting business failures from the bill_businessunsuccessfulrequest data source
Calculating technical failures by subtracting successful and business failures from total
Computing the percentage of technical failures
Query output
The query from the Analysis cell populates a table, allowing for easy comparison of each function’s performance. By analyzing this data, you can identify areas for improvement, such as reducing technical failures or resolving business process issues.
The following is a sample of what you might see from running the SQL analysis:
Function
Success
Business Failed
Technical Failed
Total
TechFail %
Bill Payment
1
0
0
2
0
CreditCard Details
0
1
1
2
50
Visualizing the data
Finally, paint a clear picture by visualizing your data. Log Workspaces offers several visualization options, including:
Tables
Toplists
Timeseries
Treemaps
Pie charts
Scatterplots
Filter your datasets by status, environment, and other variables to focus on specific aspects of your data. Financial institutions gain valuable insights through these visualizations. Use them to identify trends in transaction processing, troubleshoot issues across payment systems, make data-driven decisions to improve system reliability, and enhance customer experience by reducing technical failures.
For more information, see Log Workspaces - Visualization cell. These visualization capabilities provide a powerful way to transform raw transaction data into actionable intelligence for your financial operations.