{"id":7815,"date":"2025-11-29T06:42:46","date_gmt":"2025-11-29T05:42:46","guid":{"rendered":"https:\/\/web-dev-weissblau.de\/microconsult\/?p=7815"},"modified":"2026-02-13T14:58:21","modified_gmt":"2026-02-13T13:58:21","slug":"how-to-measure-rtos-performance","status":"publish","type":"post","link":"https:\/\/www.microconsult.de\/en\/how-to-measure-rtos-performance\/","title":{"rendered":"How to Measure RTOS Performance"},"content":{"rendered":"<h2>And how to read data sheets<\/h2>\n<p>Author: Colin Walls, Mentor Graphics<\/p>\n<h3>Beitrag &#8211; Embedded Software Engineering Kongress 2017<\/h3>\n<h2>Why Make Measurements?<\/h2>\n<p>Desktop or laptop computers are extremely powerful and amazingly low cost. This means that developers of software for desktop systems assume that there is infinite CPU power, so they worry very little about the speed of their code. They also assume that indefinite amounts of memory are available, so they do not worry about code size either.<\/p>\n<p>Embedded systems are different. Typically, there is enough CPU power to do the job, but only\u00a0<em>just<\/em>\u00a0enough \u2013 there is no excess. Memory size is limited. It is not normally unreasonably small, but there is unlikely to be any possibility of adding more. Power consumption is usually an issue and the software \u2013 its size and efficiency \u2013 can have a significant bearing on the number of Watts burned by the embedded device. It is clear that, with an embedded system, it is vital that the RTOS has the smallest possible impact on memory footprint and makes very efficient use of the CPU.<\/p>\n<h2>RTOS Metrics<\/h2>\n<p>There are three areas of interest if you are looking at the performance and usage characteristics of an RTOS:<\/p>\n<ol>\n<li>Memory \u2013 how much ROM and RAM does the kernel need and how is this affected by options and configuration.<\/li>\n<li>Latency, which is broadly the delay between something happening and the response to that occurrence. This is a particular minefield of terminology and misinformation, but there are two essential latencies to consider: interrupt response and task scheduling.<\/li>\n<li>Performance of kernel services. How long does it take to perform specific actions?<\/li>\n<\/ol>\n<p>Each of these measurements will be addressed in turn.<\/p>\n<p>A key problem is that there is no real standardization. One possibility would be the Embedded Microprocessor Benchmark Consortium, but that is not widely adopted and, anyway, it is more oriented towards CPU benchmarking<\/p>\n<h2>RTOS Metrics &#8211; Memory Footprint<\/h2>\n<p>As all embedded systems have some limitations on available memory, the requirements of an RTOS, on a given CPU, need to be understood. An OS will use both ROM and RAM.<\/p>\n<p>ROM, which is normally flash memory, is used to store the kernel code, along with the code for the runtime library and any middleware components. This code \u2013 or parts of it \u2013 may be copied to RAM on boot up, as this can offer improved performance. There is also likely to be some read only data. If the kernel is statically configured, this data will include extensive information about kernel objects. However, nowadays, most kernels are dynamically configured.<\/p>\n<p>RAM space will be used for kernel data structures, including some or all of the kernel object information, again depending upon whether the kernel is statically or dynamically configured. There will also be some global variables.<br \/>\nIf code is copied from flash to RAM, that space must also be accounted for.<\/p>\n<p><strong>Dependencies:<\/strong><\/p>\n<p>The CPU architecture is key. The number of instructions can vary drastically from one processor to another, so looking at size figures for one specific CPU gives no indication of what the size might be like for a different CPU or even another device in the same family.<\/p>\n<p>Embedded compilers generally have a large number of optimization settings. These can be used to reduce code size, but that will most likely affect performance. Optimizations affect ROM footprint, but also RAM if the code is copied. Data size can also be affected by optimization, as data structures can be packed or unpacked. Again both ROM and RAM can be affected. Packing data has an adverse effect on performance.<\/p>\n<p>Most RTOS products have a number of optional components. Obviously, the choice of those components will have a very significant effect upon memory footprint.<br \/>\nMost RTOS kernels are scalable, which means that, all being well, only the code to support required functionality is included in the memory image. For some RTOSes, scalability only applies to the kernel. For others, scalability is extended to the rest of the middleware.<\/p>\n<p>Different people have different ideas about what scalability means. Fine grain scalability means that only the core of the RTOS [the scheduler etc.] and the code for the service calls that are actually used are included in the final memory image. There should be no redundant code.<\/p>\n<p><strong>Measurement:<\/strong><\/p>\n<p>Although an RTOS vendor may provide or publish memory usage information, you may wish to make measurements yourself in order to ensure that they are representative of the type of application that you are designing.<\/p>\n<p>These measurements are not difficult. Normally the map file, generated by the linker, gives the necessary memory utilization data. Different linkers produce different kinds of map files with varying amounts of information included in a variety of formats. Possibilities extend from a mass of hex numbers through to an interactive HTML document and everything in between.<br \/>\nThere are some specialized tools that extract memory usage information from executable files. An example is\u00a0<em>objdump<\/em>.<\/p>\n<p><strong>Importance:<\/strong><\/p>\n<p>The importance of RTOS memory footprint must be understood, as its implications may be non-obvious.<\/p>\n<p>As mentioned earlier, memory is always an issue with embedded systems, but the detailed priorities vary from one system to another.<br \/>\nA small system may only have limited on-chip memory and, of course, the application code must be accommodated. Hence, the RTOS must be as small as possible.<\/p>\n<p>A bigger system may not have such a pressure on total memory space. System performance is more likely to be the priority. This means that the peak performance is required from the RTOS, so placing it into on-chip memory or locking it into cache may be attractive. Both of these options are most feasible if the kernel size is minimized.<br \/>\nIf the system copies code from flash to RAM, it is particularly important to understand the memory space requirements.<\/p>\n<h2>RTOS Metrics &#8211; Interrupt Latency<\/h2>\n<p>The time related performance measurements are probably of most concern to developers using an RTOS.<\/p>\n<p>A key characteristic of a real time system is its timely response to external events. An embedded system is typically notified of an event by means of an interrupt, so the delay between the interrupt occurring and the response to that interrupt \u2013 the interrupt latency \u2013 is critical.<br \/>\nUnfortunately, there are two definitions, at least, of the term \u201cinterrupt latency\u201d:<\/p>\n<p><strong>System<\/strong>: the total delay between the interrupt signal being asserted and the start of the interrupt service routine execution.<\/p>\n<p><strong>OS<\/strong>: the time between the CPU interrupt sequence starting and the initiation of the ISR. This is really the operating system overhead, but many people refer to it as the latency. This means that some vendors claim zero interrupt latency<\/p>\n<p>The two definitions are illustrated in this diagram (see\u00a0<a title=\"How to Measure RTOS Performance (PDF)\" href=\"https:\/\/www.microconsult.de\/wp-content\/uploads\/2025\/12\/fachinfo_ese_echtzeit_how_to_measure_rtos_performance_mentor_graphics_walls.pdf\" target=\"_blank\" rel=\"noopener\">PDF\u00a0<\/a>file).<\/p>\n<p><strong>Measurement:<\/strong><\/p>\n<p>Interrupt response is the sum of two distinct times:\u00a0<strong>\u01ae<sub>IL<\/sub>\u00a0=\u00a0<\/strong><strong>\u01ae<sub>H<\/sub>\u00a0+\u00a0<\/strong><strong>\u01ae<sub>OS<\/sub><\/strong><\/p>\n<p>where:<\/p>\n<p><strong>\u01ae<sub>H<\/sub><\/strong>\u00a0is the hardware dependent time, which depends on the interrupt controller on the board as well as the type of the interrupt<\/p>\n<p><strong>\u01ae<sub>OS<\/sub><\/strong>\u00a0is the OS induced overhead<\/p>\n<p>Ideally, quoted figures should include the best and worst case scenarios. The worst case is when the kernel disables interrupts.<\/p>\n<p>To measure a time interval, like interrupt latency, with any accuracy, requires a suitable instrument. The best tool to use is an oscilloscope. One approach is to use one pin on a GPIO interface to generate the interrupt. This pin can be monitored on the \u2018scope. At the start of the interrupt service routine, another pin, which is also being monitored, is toggled. The interval between the two signals may be easily read from the instrument.<\/p>\n<p><strong>Importance:<\/strong><\/p>\n<p>Many embedded systems are real time and it is those applications, along with fault tolerant systems, where knowledge of interrupt latency is important.<\/p>\n<p>If the requirement is to maximize bandwidth on a particular interface, the latency on that specific interrupt needs to be measured. To give an idea of numbers, the majority of systems exhibit no problems, even if they are subjected to interrupt latencies of tens of microseconds<\/p>\n<h2>RTOS Metrics &#8211; Scheduling Latency<\/h2>\n<p>A key part of the functionality of an RTOS is its ability to support a multi-threading execution environment. Being real time, the efficiency at which threads or tasks are scheduled is of some importance. The scheduler is at the core of an RTOS, so it is reasonable that a user might be interested in its performance. It is hard to get a clear picture, as there is a wide variation in the techniques employed to make measurements and in the interpretation of the results.<\/p>\n<p>There are really two separate measurements to consider:<\/p>\n<ul>\n<li>the context switch time<\/li>\n<li>the time overhead that the RTOS introduces when scheduling a task<\/li>\n<\/ul>\n<p>The context switch latency is the time it takes for the context switch to complete.<\/p>\n<p>In this diagram (see\u00a0<a title=\"How to Measure RTOS Performance (PDF)\" href=\"https:\/\/www.microconsult.de\/wp-content\/uploads\/2025\/12\/fachinfo_ese_echtzeit_how_to_measure_rtos_performance_mentor_graphics_walls.pdf\" target=\"_blank\" rel=\"noopener\">PDF\u00a0<\/a>file), we are looking at the elapsed time between the last instruction from Task A being executed and the first instruction from Task B. It is unlikely to make any difference whether Task B has been run before and was paused or it is being run for the first time. The other scenario is when the RTOS is idling and an external event causes the RTOS to schedule a task. In this case, the overhead is the elapsed time before the required task is actually running, as shown in this diagram (see\u00a0<a title=\"How to Measure RTOS Performance (PDF)\" href=\"https:\/\/www.microconsult.de\/wp-content\/uploads\/2025\/12\/fachinfo_ese_echtzeit_how_to_measure_rtos_performance_mentor_graphics_walls.pdf\" target=\"_blank\" rel=\"noopener\">PDF\u00a0<\/a>file):<\/p>\n<p><strong>Measurement:<\/strong><\/p>\n<p>The scheduling latency is the maximum of two times:\u00a0<strong>\u01ae<sub>SL<\/sub>\u00a0= MAX(<\/strong><strong>\u01ae<sub>SO<\/sub>,\u00a0<\/strong><strong>\u01ae<sub>CS<\/sub>)<\/strong><\/p>\n<p>where:<\/p>\n<p><strong>\u01ae<sub>SO<\/sub><\/strong>\u00a0is the scheduling overhead; the end of the ISR to the start of task schedule<\/p>\n<p><strong>\u01ae<sub>CS<\/sub><\/strong>\u00a0is the time taken to save and restore thread context<\/p>\n<p>Measurements may be made in a similar way to the interrupt latency timings.<\/p>\n<p><strong>Importance:<\/strong><\/p>\n<p>Developers who are working on time critical or fault tolerant systems are likely to be interested in scheduling latency. Much the same as interrupt latency, but remember they are quite different measurements and must both be considered individually.<\/p>\n<h2>RTOS Metrics &#8211; Timing Kernel Services<\/h2>\n<p>An RTOS is likely to have a great many API calls, probably numbering into the hundreds.<\/p>\n<p>To assess timing, it is not useful to try to analyze every single call. It makes more sense to focus solely on the frequently used services.<\/p>\n<p>For most RTOSes, there are four key categories of service call:<\/p>\n<ul>\n<li>Threading services<\/li>\n<li>Synchronization services<\/li>\n<li>Inter-process communication services<\/li>\n<li>Memory services<\/li>\n<\/ul>\n<h2 class=\"FirstParagraph\">Conclusions<\/h2>\n<p>All RTOS vendors provide performance data for their products, some of which is more comprehensive than others. This information may be very useful, but can also be misleading if interpreted incorrectly. It is important to understand the techniques used to make measurements and the terminology used to describe the results. There are also trade-offs \u2013 generally size against speed \u2013 and these, too, need to be thoroughly understood.\u00a0 Without this understanding, a fair comparison is not possible.<\/p>\n<p>If timing is critical to your application, it is strongly recommend that you perform your own measurements. This enables you to be sure that the hardware and software environment is correct and that the figures are directly relevant to your application.<\/p>\n<p><a title=\"How to Measure RTOS Performance (PDF)\" href=\"https:\/\/www.microconsult.de\/wp-content\/uploads\/2025\/12\/fachinfo_ese_echtzeit_how_to_measure_rtos_performance_mentor_graphics_walls.pdf\" target=\"_blank\" rel=\"noopener\"><strong>Beitrag als PDF-Datei downloaden<\/strong><\/a><\/p>\n<hr \/>\n<h2>Echtzeit &#8211; MicroConsult Trainings &amp; Coachings<\/h2>\n<p><strong>Wollen Sie sich auf den aktuellen Stand der Technik bringen?<\/strong><\/p>\n<p>Dann informieren Sie sich\u00a0<a title=\"Alle Trainings und Termine\" href=\"https:\/\/www.microconsult.de\/686-0-Alle-Trainings-und-Termine.html?cat=1036\" target=\"_blank\" rel=\"noopener\"><strong>hier<\/strong>\u00a0<\/a>zu Schulungen\/ Seminaren\/ Trainings\/ Workshops und individuellen Coachings von MircoConsult zum Thema Embedded- und Echtzeit-Softwareentwicklung.<\/p>\n<p><strong>Training &amp; Coaching zu den weiteren Themen unseren Portfolios finden Sie\u00a0<a title=\"Training &amp; Beratung - alle Themen\" href=\"https:\/\/www.microconsult.de\/training-beratung\/\" target=\"_blank\" rel=\"noopener\">hier<\/a>.<\/strong><\/p>\n<hr \/>\n<h2>Echtzeit &#8211; Fachwissen<\/h2>\n<p>Wertvolles Fachwissen zum Thema Embedded- und Echtzeit-Softwareentwicklung steht\u00a0<a title=\"Embedded- und Echtzeit-Softwareentwicklung\" href=\"https:\/\/www.microconsult.de\/embedded-und-echtzeit-softwareentwicklung\/\" target=\"_blank\" rel=\"noopener\"><strong>hier<\/strong>\u00a0<\/a>f\u00fcr Sie zum kostenfreien Download bereit.<\/p>\n<p><a title=\"Embedded- und Echtzeit-Softwareentwicklung\" href=\"https:\/\/www.microconsult.de\/embedded-und-echtzeit-softwareentwicklung\/\" target=\"_blank\" rel=\"noopener\"><strong>Zu den Fachinformationen<\/strong><\/a><\/p>\n<p><strong>Fachwissen zu weiteren Themen unseren Portfolios finden Sie <a title=\"Fachinformationen\" href=\"https:\/\/www.microconsult.de\/fachwissen\/\" target=\"_blank\" rel=\"noopener\">hier<\/a>.<\/strong><\/p>\n","protected":false},"excerpt":{"rendered":"<p>And how to read data sheets Author: Colin Walls, Mentor Graphics Beitrag &#8211; Embedded Software Engineering Kongress 2017 Why Make Measurements? Desktop or laptop computers are extremely powerful and amazingly low cost. This means that developers of software for desktop systems assume that there is infinite CPU power, so they worry very little about the [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"_et_pb_use_builder":"","_et_pb_old_content":"","_et_gb_content_width":"","inline_featured_image":false,"footnotes":""},"categories":[],"tags":[],"class_list":["post-7815","post","type-post","status-publish","format-standard","hentry"],"acf":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.9 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>How to Measure RTOS Performance - MicroConsult Academy GmbH<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/www.microconsult.de\/en\/how-to-measure-rtos-performance\/\" \/>\n<meta property=\"og:locale\" content=\"en_GB\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How to Measure RTOS Performance - MicroConsult Academy GmbH\" \/>\n<meta property=\"og:description\" content=\"And how to read data sheets Author: Colin Walls, Mentor Graphics Beitrag &#8211; Embedded Software Engineering Kongress 2017 Why Make Measurements? Desktop or laptop computers are extremely powerful and amazingly low cost. This means that developers of software for desktop systems assume that there is infinite CPU power, so they worry very little about the [&hellip;]\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.microconsult.de\/en\/how-to-measure-rtos-performance\/\" \/>\n<meta property=\"og:site_name\" content=\"MicroConsult Academy GmbH\" \/>\n<meta property=\"article:published_time\" content=\"2025-11-29T05:42:46+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2026-02-13T13:58:21+00:00\" \/>\n<meta name=\"author\" content=\"weissblau media\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"weissblau media\" \/>\n\t<meta name=\"twitter:label2\" content=\"Estimated reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"11 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/www.microconsult.de\\\/how-to-measure-rtos-performance\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.microconsult.de\\\/how-to-measure-rtos-performance\\\/\"},\"author\":{\"name\":\"weissblau media\",\"@id\":\"https:\\\/\\\/www.microconsult.de\\\/#\\\/schema\\\/person\\\/b6d4c4ae959b068fbe8d9416ed019a0a\"},\"headline\":\"How to Measure RTOS Performance\",\"datePublished\":\"2025-11-29T05:42:46+00:00\",\"dateModified\":\"2026-02-13T13:58:21+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.microconsult.de\\\/how-to-measure-rtos-performance\\\/\"},\"wordCount\":1911,\"commentCount\":0,\"inLanguage\":\"en-GB\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/www.microconsult.de\\\/how-to-measure-rtos-performance\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.microconsult.de\\\/how-to-measure-rtos-performance\\\/\",\"url\":\"https:\\\/\\\/www.microconsult.de\\\/how-to-measure-rtos-performance\\\/\",\"name\":\"How to Measure RTOS Performance - MicroConsult Academy GmbH\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.microconsult.de\\\/#website\"},\"datePublished\":\"2025-11-29T05:42:46+00:00\",\"dateModified\":\"2026-02-13T13:58:21+00:00\",\"author\":{\"@id\":\"https:\\\/\\\/www.microconsult.de\\\/#\\\/schema\\\/person\\\/b6d4c4ae959b068fbe8d9416ed019a0a\"},\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.microconsult.de\\\/how-to-measure-rtos-performance\\\/#breadcrumb\"},\"inLanguage\":\"en-GB\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/www.microconsult.de\\\/how-to-measure-rtos-performance\\\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.microconsult.de\\\/how-to-measure-rtos-performance\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/www.microconsult.de\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How to Measure RTOS Performance\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/www.microconsult.de\\\/#website\",\"url\":\"https:\\\/\\\/www.microconsult.de\\\/\",\"name\":\"MicroConsult Academy GmbH\",\"description\":\"Professionelle Schulungen, Beratung und Projektunterst\u00fctzung\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/www.microconsult.de\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-GB\"},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/www.microconsult.de\\\/#\\\/schema\\\/person\\\/b6d4c4ae959b068fbe8d9416ed019a0a\",\"name\":\"weissblau media\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-GB\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/bbb409da4970da9446f6c49465d453cb8a0dae301e4d4f465b5c4e62408daa2e?s=96&d=mm&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/bbb409da4970da9446f6c49465d453cb8a0dae301e4d4f465b5c4e62408daa2e?s=96&d=mm&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/bbb409da4970da9446f6c49465d453cb8a0dae301e4d4f465b5c4e62408daa2e?s=96&d=mm&r=g\",\"caption\":\"weissblau media\"},\"sameAs\":[\"https:\\\/\\\/www.microconsult.de\"]}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"How to Measure RTOS Performance - MicroConsult Academy GmbH","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/www.microconsult.de\/en\/how-to-measure-rtos-performance\/","og_locale":"en_GB","og_type":"article","og_title":"How to Measure RTOS Performance - MicroConsult Academy GmbH","og_description":"And how to read data sheets Author: Colin Walls, Mentor Graphics Beitrag &#8211; Embedded Software Engineering Kongress 2017 Why Make Measurements? Desktop or laptop computers are extremely powerful and amazingly low cost. This means that developers of software for desktop systems assume that there is infinite CPU power, so they worry very little about the [&hellip;]","og_url":"https:\/\/www.microconsult.de\/en\/how-to-measure-rtos-performance\/","og_site_name":"MicroConsult Academy GmbH","article_published_time":"2025-11-29T05:42:46+00:00","article_modified_time":"2026-02-13T13:58:21+00:00","author":"weissblau media","twitter_card":"summary_large_image","twitter_misc":{"Written by":"weissblau media","Estimated reading time":"11 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.microconsult.de\/how-to-measure-rtos-performance\/#article","isPartOf":{"@id":"https:\/\/www.microconsult.de\/how-to-measure-rtos-performance\/"},"author":{"name":"weissblau media","@id":"https:\/\/www.microconsult.de\/#\/schema\/person\/b6d4c4ae959b068fbe8d9416ed019a0a"},"headline":"How to Measure RTOS Performance","datePublished":"2025-11-29T05:42:46+00:00","dateModified":"2026-02-13T13:58:21+00:00","mainEntityOfPage":{"@id":"https:\/\/www.microconsult.de\/how-to-measure-rtos-performance\/"},"wordCount":1911,"commentCount":0,"inLanguage":"en-GB","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.microconsult.de\/how-to-measure-rtos-performance\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.microconsult.de\/how-to-measure-rtos-performance\/","url":"https:\/\/www.microconsult.de\/how-to-measure-rtos-performance\/","name":"How to Measure RTOS Performance - MicroConsult Academy GmbH","isPartOf":{"@id":"https:\/\/www.microconsult.de\/#website"},"datePublished":"2025-11-29T05:42:46+00:00","dateModified":"2026-02-13T13:58:21+00:00","author":{"@id":"https:\/\/www.microconsult.de\/#\/schema\/person\/b6d4c4ae959b068fbe8d9416ed019a0a"},"breadcrumb":{"@id":"https:\/\/www.microconsult.de\/how-to-measure-rtos-performance\/#breadcrumb"},"inLanguage":"en-GB","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.microconsult.de\/how-to-measure-rtos-performance\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/www.microconsult.de\/how-to-measure-rtos-performance\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.microconsult.de\/"},{"@type":"ListItem","position":2,"name":"How to Measure RTOS Performance"}]},{"@type":"WebSite","@id":"https:\/\/www.microconsult.de\/#website","url":"https:\/\/www.microconsult.de\/","name":"MicroConsult Academy GmbH","description":"Professional training, consulting and project support","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.microconsult.de\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-GB"},{"@type":"Person","@id":"https:\/\/www.microconsult.de\/#\/schema\/person\/b6d4c4ae959b068fbe8d9416ed019a0a","name":"weissblau media","image":{"@type":"ImageObject","inLanguage":"en-GB","@id":"https:\/\/secure.gravatar.com\/avatar\/bbb409da4970da9446f6c49465d453cb8a0dae301e4d4f465b5c4e62408daa2e?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/bbb409da4970da9446f6c49465d453cb8a0dae301e4d4f465b5c4e62408daa2e?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/bbb409da4970da9446f6c49465d453cb8a0dae301e4d4f465b5c4e62408daa2e?s=96&d=mm&r=g","caption":"weissblau media"},"sameAs":["https:\/\/www.microconsult.de"]}]}},"post_mailing_queue_ids":[],"_links":{"self":[{"href":"https:\/\/www.microconsult.de\/en\/wp-json\/wp\/v2\/posts\/7815","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.microconsult.de\/en\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.microconsult.de\/en\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.microconsult.de\/en\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/www.microconsult.de\/en\/wp-json\/wp\/v2\/comments?post=7815"}],"version-history":[{"count":7,"href":"https:\/\/www.microconsult.de\/en\/wp-json\/wp\/v2\/posts\/7815\/revisions"}],"predecessor-version":[{"id":11739,"href":"https:\/\/www.microconsult.de\/en\/wp-json\/wp\/v2\/posts\/7815\/revisions\/11739"}],"wp:attachment":[{"href":"https:\/\/www.microconsult.de\/en\/wp-json\/wp\/v2\/media?parent=7815"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.microconsult.de\/en\/wp-json\/wp\/v2\/categories?post=7815"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.microconsult.de\/en\/wp-json\/wp\/v2\/tags?post=7815"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}