| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | removed dead/experimental file system related code | Stefan Boberg | 2023-01-24 | 4 | -428/+0 |
| | | |||||
| * | Moved experimental/frontend.* to frontend/frontend.* | Martin Ridgers | 2022-03-15 | 2 | -143/+0 |
| | | |||||
| * | Merged main. | Per Larsson | 2021-12-14 | 3 | -12/+21 |
| |\ | |||||
| | * | Fixed use of undefined preprocessor macro | Martin Ridgers | 2021-11-17 | 1 | -1/+2 |
| | | | |||||
| | * | if-def'd out Windows specific features | Martin Ridgers | 2021-10-29 | 2 | -0/+8 |
| | | | |||||
| | * | GCC doesn't like whitespace after a \ in a raw string literal | Martin Ridgers | 2021-10-29 | 1 | -1/+1 |
| |/ | |||||
| * | Merge branch 'main' of https://github.com/EpicGames/zen into main | Stefan Boberg | 2021-10-20 | 1 | -1/+1 |
| |\ | |||||
| | * | Format fix. | Per Larsson | 2021-10-20 | 1 | -1/+1 |
| | | | |||||
| * | | Added ZEN_THIRD_PARTY_INCLUDES_START to prevent compilation issues | Stefan Boberg | 2021-10-20 | 1 | -0/+2 |
| |/ | |||||
| * | zencore: Enabled MSC warning 4668 to get warnings when preprocessor macros ↵ | Stefan Boberg | 2021-10-15 | 1 | -0/+3 |
| | | | | | | | | | are used without an explicit definition Also fixed up various code to compile with this, by using ZEN_THIRD_PARTY_INCLUDES_START/ZEN_THIRD_PARTY_INCLUDES_END macros Removed prewindows.h/postwindows.h since they are no longer to be used due to the above | ||||
| * | stats: Implemented new stats endpoint | Stefan Boberg | 2021-10-04 | 1 | -1/+1 |
| | | | | | | | | | Stats are exposed under /stats/{id}, so for example structured cache stats are exposed under /stats/z$ The separate endpoint makes it easier to separate request handling to ensure stats/status endpoints still respond if the regular request queue is somehow saturated or otherwise not behaving There is also a /status endpoint which is similar and is targeted towards lightweight health monitoring | ||||
| * | Added simple stats HTML dashboard with route /dashboard. | Per Larsson | 2021-10-01 | 2 | -0/+143 |
| | | |||||
| * | timer: cleaned up Stopwatch, removed GetCpuTimerValue | Stefan Boberg | 2021-09-29 | 1 | -1/+1 |
| | | |||||
| * | Removed WindowsException from public headers | Stefan Boberg | 2021-09-17 | 1 | -5/+5 |
| | | |||||
| * | Changed logging implementation | Stefan Boberg | 2021-09-15 | 1 | -8/+8 |
| | | | | | | | * Code should no longer directly `#include spdlog/spdlog.h`, instead use `#include <zencore/logging.h>` * Instead of explicit calls to `spdlog::info(...)` and such please use the logging macros defined in `zencore/logging.h`. I.e `ZEN_INFO`, `ZEN_DEBUG`, `ZEN_TRACE`, `ZEN_ERROR`, `ZEN_CRITITCAL` * The macros will pick up the "most local" logger via a `Log()` call to retrieve a logger instance. To override the default logger in a class please implement your own `Log()` function | ||||
| * | Changed direct includes of spdlog/spdlog.h into zencore/logging.h to make it ↵ | Stefan Boberg | 2021-09-15 | 1 | -2/+1 |
| | | | | | easier to tweak implementation | ||||
| * | Fixed a number of unreferenced variable warnings | Stefan Boberg | 2021-09-09 | 1 | -0/+1 |
| | | |||||
| * | Cleaned up exception handling | Stefan Boberg | 2021-05-21 | 1 | -1/+4 |
| | | | | | We now use std::system_error where possible to report Win32 system errors. We still have WindowsException for general HRESULT based errors but we should phase it out where possible | ||||
| * | Adding zenservice code | Stefan Boberg | 2021-05-11 | 4 | -0/+411 |