Advanced Search
Search Results
116 total results found
Get Balance Report In Graphql
This query returns a balance report for selected portfolios on a given date. GraphQL Query query GetBalanceReport { balance_report( input: { report_date: "2024-05-01" report_currency: "USD" pricing_policy: "com.finmars.standa...
Get Portfolio History in Graphql
This query returns historical NAV values for portfolios. GraphQL Query query GetPortfolioHistoryList { portfolio_history( pagination: { limit: 20 offset: 0 } filters: { } ) { id date nav portfol...
Get Profit & Loss (PNL) Report in Graphql
This query returns a pnl report for selected portfolios on a given date. GraphQL Query query GetPLReport { pl_report( input: { report_date: "2024-05-01" pricing_policy: "com.finmars.standard-pricing:standard" portfolios: ["...
Get Performance Report in Graphql
This query returns performance metrics for one or more portfolio registers. GraphQL Query query GetPerformanceReport { performance_report( input: { end_date: "2024-05-01" registers: ["CH-BND-20394857"] } ) { begin_nav ...
Get Transaction Report in Graphql
This query returns calculated transaction report rows for a given date range. GraphQL Query query GetTransactionReport { transaction_report( input: { begin_date: "2018-01-01" end_date: "2025-05-01" } ) { items { ...
FM-KED-000 Getting Started
The Finmars Known Error Database is a curated registry of recurring and well-understood operational issues observed in Finmars environments, together with documented recovery procedures and practical guidance. Its purpose is not to list every possible failu...
FM-KED-001 — VM Disk Space Exhaustion
Severity: S2 — HighRecovery Class: A — Quick FixCovered by Monthly Support: Yes Description Disk space on a virtual machine reaches critical levels, leading to degraded system behavior, application instability, or failed background operations. This issue ...
FM-KED-002 — PostgreSQL Table and Index Bloat (Missing or Ineffective VACUUM)
Severity: S2 — HighRecovery Class: B — Standard RecoveryCovered by Monthly Support: Yes Description PostgreSQL database performance degrades over time due to table and index bloat caused by insufficient or ineffective VACUUM operations. This issue manifes...
FM-KED-003 — Network Connectivity Loss on Virtual Machine
Severity: S1 — CriticalRecovery Class: B — Standard RecoveryCovered by Monthly Support: Yes (diagnostics only) Description A virtual machine becomes partially or fully unreachable due to loss of network connectivity. This may affect administrative access, ...
FM-KED-004 — Backup Failure Due to Excessive Backup Size
Severity: S1 — CriticalRecovery Class: B — Standard RecoveryCovered by Monthly Support: Yes Description Automatic daily backups fail because the generated database dump exceeds available disk capacity on the backup worker or application node. This conditi...
FM-KED-005 — SSL/TLS Certificate Expiration
Severity: S1 — CriticalRecovery Class: B — Standard RecoveryCovered by Monthly Support: Yes Description SSL/TLS certificates used by Finmars services expire, causing secure connections to fail and rendering applications inaccessible over HTTPS. This issue...
FM-KED-006 — Kubernetes Cluster Certificate Expiration
Severity: S1 — CriticalRecovery Class: B — Standard RecoveryCovered by Monthly Support: Yes Description Internal Kubernetes certificates expire, leading to partial or complete cluster malfunction. This may affect control plane communication, node registrat...
FM-KED-007 — 502 Bad Gateway Error (Application Unreachable)
Severity: S1 — CriticalRecovery Class: B — Standard RecoveryCovered by Monthly Support: Yes (known causes only) Description Nginx returns a 502 Bad Gateway error because the Django application backend becomes unreachable. In the majority of observed cases...
FM-KED-008 — HTTP 500 Internal Server Error (Application Error)
Severity: S2 — HighRecovery Class: D — ExploratoryCovered by Monthly Support: No (fix requires product change) Description The application returns an HTTP 500 Internal Server Error, indicating an unhandled exception or logic failure inside the Finmars appl...
FM-KED-009 — Missing Data in Reports
Severity: S3 — MediumRecovery Class: A — Quick FixCovered by Monthly Support: Yes Description Reports return incomplete results or missing values because required Prices and/or FX Rates are not available for the requested reporting date. This is not an ap...
Get Price History Check
This query returns a price history check report on a given date. GraphQL Query query GetPriceHistoryCheck { price_history_check( input: { report_date: "2024-05-01" pricing_policy: "com.finmars.standard-pricing:standard" } ...