{"id":52849,"date":"2019-11-18T00:00:00","date_gmt":"2019-11-17T21:00:00","guid":{"rendered":"https:\/\/prohoster.info\/blog\/blog_prohoster\/kak-protestirovat-proizvoditelnost-serverov-podborka-iz-neskolkih-open-source-benchmarkov"},"modified":"2020-02-18T14:00:39","modified_gmt":"2020-02-18T11:00:39","slug":"kak-protestirovat-proizvoditelnost-serverov-podborka-iz-neskolkih-open-source-benchmarkov","status":"publish","type":"post","link":"https:\/\/prohoster.info\/en\/blog\/administrirovanie\/kak-protestirovat-proizvoditelnost-serverov-podborka-iz-neskolkih-open-source-benchmarkov","title":{"rendered":"How to test server performance: a collection of several open source benchmarks","gt_translate_keys":[{"key":"rendered","format":"text"}]},"content":{"rendered":"<p>We continue our series of materials dedicated to server performance testing. Today, we'll discuss a couple of time-tested benchmarks that are still supported and updated \u2014 NetPerf, HardInfo, and ApacheBench.<\/p>\n<p><noindex><a rel=\"nofollow\" href=\"https:\/\/habr.com\/ru\/company\/1cloud\/blog\/476126\/\"><img decoding=\"async\" alt=\"How to test server performance: a collection of several open source benchmarks\" src=\"\/wp-content\/uploads\/2019\/11\/4e370306b03819d50578c721b54b1fbb.jpg\" style=\"display:block;margin: 0 auto;\" \/><\/a><\/noindex><noindex><a rel=\"nofollow\" name=\"habracut\"><\/a><\/noindex><br \/>\n<i>Photo - <noindex><a rel=\"nofollow\" href=\"https:\/\/www.flickr.com\/photos\/pbalcer\/11344696695\/\">Peter Balcerzak<\/a><\/noindex> \u2014 CC BY-SA<\/i><\/p>\n<h2><noindex><a rel=\"nofollow\" href=\"https:\/\/github.com\/HewlettPackard\/netperf\">NetPerf<\/a><\/noindex><\/h2>\n<p>\nThis is a tool for measuring network throughput. It was developed by engineers from Hewlett-Packard. The tool <noindex><a rel=\"nofollow\" href=\"https:\/\/www.linuxlinks.com\/netperf\/\">includes<\/a><\/noindex> has two executable files: netserver and netclient. To perform a test, they need to be launched on different machines. By default, netperf uses port 12865, but it can be replaced with the flag -p. The utility works with TCP and UDP over BSD Sockets, DLPI, Unix Domain Sockets, and IPv6.<\/p>\n<p>Today, netperf is part of the benchmarking toolkit <noindex><a rel=\"nofollow\" href=\"https:\/\/flent.org\/\">Flent<\/a><\/noindex>. It is also used by quite a large number of IT companies, <noindex><a rel=\"nofollow\" href=\"https:\/\/blog.openshift.com\/troubleshooting-openshift-network-performance-with-a-netperf-daemonset\/\">for example, Red Hat<\/a><\/noindex>. Here is how the netperf service is described in one example for evaluating OpenShift performance:<\/p>\n<pre><code class=\"xml\">apiVersion: v1\nkind: Service\nmetadata:\n  labels:\n    app-name: netperf\n  name: netperf\n  namespace: your_project\nspec:\n  ports:\n  - port: 12865\n    protocol: TCP\n    targetPort: 12865\n  selector:\n    app-name: netperf\n  sessionAffinity: ClientIP\n  type: ClusterIP\n<\/code><\/pre>\n<p>\nThe official repository states that netperf is distributed under a special Hewlett-Packard license. However, the utility's author, Rick Jones, claims that it is crafted in the best open-source traditions. It is also worth noting that updates for netperf have recently been released rather infrequently. This may be related to the product's maturity.<\/p>\n<p>Netperf has analogs \u2014 for example, <noindex><a rel=\"nofollow\" href=\"https:\/\/sourceforge.net\/projects\/iperf2\/\">iperf2<\/a><\/noindex> and <noindex><a rel=\"nofollow\" href=\"https:\/\/software.es.net\/iperf\/\">iperf3<\/a><\/noindex>. They also allow testing of network throughput. Development of iperf3 began after the iperf2 repository fell into decline. The new version was written from scratch and is not compatible with the previous implementation, although it contains some of its code. Interestingly, after the release of iperf3, work on iperf2 resumed. As a result, the two tools <noindex><a rel=\"nofollow\" href=\"https:\/\/richardimaoka.github.io\/blog\/network-benchmark-tools\/\">have<\/a><\/noindex> similar, yet at the same time different functionalities. For instance, iperf2 is multi-threaded, while iperf3 is <noindex><a rel=\"nofollow\" href=\"https:\/\/software.es.net\/iperf\/faq.html\">working<\/a><\/noindex> single-threaded.<\/p>\n<h2><noindex><a rel=\"nofollow\" href=\"https:\/\/github.com\/lpereira\/hardinfo\">Hardinfo<\/a><\/noindex><\/h2>\n<p>\nThis is a utility for gathering information about hardware and the operating system. It displays data regarding the operation of devices on: PCI, ISA PnP, USB, IDE, SCSI, as well as serial and parallel ports. However, it can also be used as a benchmark and monitoring tool.<\/p>\n<p>HardInfo offers several tests. For example, CPU Blowfish evaluates processor performance using cryptographic algorithms of block symmetric encryption. There are <noindex><a rel=\"nofollow\" href=\"http:\/\/groups.csail.mit.edu\/cag\/raw\/benchmark\/suites\/nqueens\/README.html\">CPU N-Queens<\/a><\/noindex> \u2014 a combinatorial test. The system solves the chess problem of placing N queens on an N x N board. It arranges the pieces so that none can attack each other. Notably, there is also FPU FFT \u2014 a test for fast computation of the discrete Fourier transform and FPU Raytracing \u2014 calculating ray tracing for rendering 3D scenes.<\/p>\n<p>The results of most tests are given in seconds, and accordingly, the lower the time, the better. All reports are displayed in HTML and txt formats.<\/p>\n<blockquote><p>Initially, the utility was developed as part of the <noindex><a rel=\"nofollow\" href=\"https:\/\/ru.wikipedia.org\/wiki\/BerliOS\">BerliOS<\/a><\/noindex>project. It included a hosting platform for open-source applications (such as <noindex><a rel=\"nofollow\" href=\"https:\/\/ru.wikipedia.org\/wiki\/SourceForge.net\">SourceForge<\/a><\/noindex>) and several databases for documentation and profiles of open-source developers. BerliOS was closed in 2014 due to lack of funding. Today, HardInfo is being developed by enthusiasts <noindex><a rel=\"nofollow\" href=\"https:\/\/github.com\/lpereira\/hardinfo\">in a separate repository.<\/a><\/noindex> on GitHub.<\/p><\/blockquote>\n<p>\nIt is worth noting that the system sometimes has bugs. There are known instances of a <noindex><a rel=\"nofollow\" href=\"https:\/\/bugs.debian.org\/cgi-bin\/bugreport.cgi?bug=853749\">segmentation fault<\/a><\/noindex>, issues with <noindex><a rel=\"nofollow\" href=\"https:\/\/bugs.debian.org\/cgi-bin\/bugreport.cgi?bug=638951\">USB device display<\/a><\/noindex> and several <noindex><a rel=\"nofollow\" href=\"https:\/\/bugs.debian.org\/cgi-bin\/pkgreport.cgi?pkg=hardinfo;dist=unstable\">options. They are not your prisoners, no matter how much you might want that. They are your guests. Python is still a very popular programming language, but, damn it, Python 3(000) has created such a mess within its communities and among its users that the consequences have been stuck for fifteen years.<\/a><\/noindex>.<\/p>\n<h2><noindex><a rel=\"nofollow\" href=\"http:\/\/httpd.apache.org\/docs\/2.2\/programs\/ab.html\">ApacheBench<\/a><\/noindex><\/h2>\n<p>\nA tool for load testing HTTP servers. ApacheBench (AB) was developed to test Apache but can work on any other server. The tool is pre-installed on many Linux distributions.<\/p>\n<p><img decoding=\"async\" alt=\"How to test server performance: a collection of several open source benchmarks\" src=\"\/wp-content\/uploads\/2019\/11\/f9c51d6083801b00ed81ebc28249cd26.jpg\" style=\"display:block;margin: 0 auto;\" \/><br \/>\n<i>Photo - <noindex><a rel=\"nofollow\" href=\"https:\/\/unsplash.com\/photos\/_YO7f0XmUt4\">Victor Freitas<\/a><\/noindex> - Unsplash<\/i><\/p>\n<p>The utility 'bombards' servers with a large number of requests. To run it, you need to enter the following command:<\/p>\n<pre><code class=\"bash\">ab -n 100 -c 10 http:\/\/www.example.com\/<\/code><\/pre>\n<p>\nThis will send one hundred GET requests (a maximum of ten will be sent simultaneously) to the test resource. The output will show the average request processing time, total amount of data transferred, throughput, and number of errors.<\/p>\n<blockquote><p>Today, a large community has formed around the utility. Fresh <noindex><a rel=\"nofollow\" href=\"https:\/\/www.youtube.com\/watch?v=W7jYCFvTmeQ\">guides<\/a><\/noindex> on how to configure and use ApacheBench regularly appear online.<\/p><\/blockquote>\n<p>\nIt should be noted that AB has an alternative \u2014 <noindex><a rel=\"nofollow\" href=\"https:\/\/github.com\/apache\/jmeter\">Apache jMeter<\/a><\/noindex>, but with greater capabilities. For example, it allows generating requests from multiple computers, managing the process from one of them. The program also implements mechanisms for authorizing virtual users and supports custom sessions. Many IT companies use this tool, <noindex><a rel=\"nofollow\" href=\"https:\/\/enlyft.com\/tech\/products\/apache-jmeter\">including<\/a><\/noindex> cloud providers, for example, <noindex><a rel=\"nofollow\" href=\"https:\/\/en.wikipedia.org\/wiki\/Qualys\">Qualys<\/a><\/noindex>.<\/p>\n<p><img decoding=\"async\" alt=\"How to test server performance: a collection of several open source benchmarks\" src=\"\/wp-content\/uploads\/2019\/11\/71c6a09af074cfee50c39d47c7a56675.jpg\" style=\"display:block;margin: 0 auto;\" \/>At 1cloud, we provide the service <noindex><a rel=\"nofollow\" href=\"https:\/\/1cloud.ru\/services\/private-cloud?utm_source=habrahabr&amp;utm_medium=cpm&amp;utm_campaign=bench_6&amp;utm_content=site\">\u2018Private Cloud\u2019<\/a><\/noindex>. This is the rental of virtual infrastructure with the possibility of rapid customization of the environment.\u00a0<noindex><a rel=\"nofollow\" href=\"https:\/\/1cloud.ru\/services\/vps-vds?utm_source=habrahabr&amp;utm_medium=cpm&amp;utm_campaign=bench_6&amp;utm_content=site\">of virtual servers<\/a><\/noindex>.<br \/>\n <img decoding=\"async\" alt=\"How to test server performance: a collection of several open source benchmarks\" src=\"\/wp-content\/uploads\/2019\/11\/f894d53f2eb831b252f2d1c26de11e91.jpg\" style=\"display:block;margin: 0 auto;\" \/>Our cloud <noindex><a rel=\"nofollow\" href=\"https:\/\/1cloud.ru\/infrastructure\/hardware?utm_source=habrahabr&amp;utm_medium=cpm&amp;utm_campaign=bench_6&amp;utm_content=site\">is built on hardware<\/a><\/noindex> from Cisco, Dell, NetApp. The equipment is housed in several data centers: DataSpace (Moscow), SDN\/Xelent (St. Petersburg), Ahost (Alma-Ata).<\/p>\n<p>Source: <a content=\"nofollow\" rel=\"nofollow\" href=\"https:\/\/habr.com\/ru\/company\/1cloud\/blog\/476126\/\">habr.com<\/a><\/p>","protected":false,"gt_translate_keys":[{"key":"rendered","format":"html"}]},"excerpt":{"rendered":"<p>\u041f\u0440\u043e\u0434\u043e\u043b\u0436\u0430\u0435\u043c \u043d\u0430\u0448\u0443 \u0441\u0435\u0440\u0438\u044e \u043c\u0430\u0442\u0435\u0440\u0438\u0430\u043b\u043e\u0432, \u043f\u043e\u0441\u0432\u044f\u0449\u0435\u043d\u043d\u0443\u044e \u0442\u0435\u0441\u0442\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u044e \u043f\u0440\u043e\u0438\u0437\u0432\u043e\u0434\u0438\u0442\u0435\u043b\u044c\u043d\u043e\u0441\u0442\u0438 \u0441\u0435\u0440\u0432\u0435\u0440\u043e\u0432. \u0421\u0435\u0433\u043e\u0434\u043d\u044f \u043f\u043e\u0433\u043e\u0432\u043e\u0440\u0438\u043c \u043e \u043f\u0430\u0440\u0435 \u043f\u0440\u043e\u0432\u0435\u0440\u0435\u043d\u043d\u044b\u0445 \u0432\u0440\u0435\u043c\u0435\u043d\u0435\u043c \u0431\u0435\u043d\u0447\u043c\u0430\u0440\u043a\u0430\u0445, \u043a\u043e\u0442\u043e\u0440\u044b\u0435 \u0434\u043e \u0441\u0438\u0445 \u043f\u043e\u0440 \u043f\u043e\u0434\u0434\u0435\u0440\u0436\u0438\u0432\u0430\u044e\u0442 \u0438 \u043e\u0431\u043d\u043e\u0432\u043b\u044f\u044e\u0442 \u2014 NetPerf, HardInfo \u0438 ApacheBench. \u0424\u043e\u0442\u043e \u2014 Peter Balcerzak \u2014 CC BY-SA NetPerf \u042d\u0442\u043e \u2014 \u0438\u043d\u0441\u0442\u0440\u0443\u043c\u0435\u043d\u0442 \u0434\u043b\u044f \u043e\u0446\u0435\u043d\u043a\u0438 \u043f\u0440\u043e\u043f\u0443\u0441\u043a\u043d\u043e\u0439 \u0441\u043f\u043e\u0441\u043e\u0431\u043d\u043e\u0441\u0442\u0438 \u0441\u0435\u0442\u0438. \u0415\u0433\u043e \u0440\u0430\u0437\u0440\u0430\u0431\u043e\u0442\u0430\u043b\u0438 \u0438\u043d\u0436\u0435\u043d\u0435\u0440\u044b \u0438\u0437 Hewlett-Packard. \u0418\u043d\u0441\u0442\u0440\u0443\u043c\u0435\u043d\u0442 \u0432\u043a\u043b\u044e\u0447\u0430\u0435\u0442 \u0434\u0432\u0430 \u0438\u0441\u043f\u043e\u043b\u043d\u044f\u0435\u043c\u044b\u0445 \u0444\u0430\u0439\u043b\u0430: netserver \u0438 [&hellip;]<\/p>\n","protected":false,"gt_translate_keys":[{"key":"rendered","format":"html"}]},"author":1,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[688],"tags":[],"class_list":["post-52849","post","type-post","status-publish","format-standard","hentry","category-administrirovanie"],"aioseo_notices":[],"aioseo_head":"\n\t\t<!-- All in One SEO 5.0.1.1 - aioseo.com -->\n\t<meta name=\"description\" content=\"\u041f\u0440\u043e\u0434\u043e\u043b\u0436\u0430\u0435\u043c \u043d\u0430\u0448\u0443 \u0441\u0435\u0440\u0438\u044e \u043c\u0430\u0442\u0435\u0440\u0438\u0430\u043b\u043e\u0432, \u043f\u043e\u0441\u0432\u044f\u0449\u0435\u043d\u043d\u0443\u044e \u0442\u0435\u0441\u0442\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u044e \u043f\u0440\u043e\u0438\u0437\u0432\u043e\u0434\u0438\u0442\u0435\u043b\u044c\u043d\u043e\u0441\u0442\u0438 \u0441\u0435\u0440\u0432\u0435\u0440\u043e\u0432.\" \/>\n\t<meta name=\"robots\" content=\"max-image-preview:large\" \/>\n\t<meta name=\"author\" content=\"Yuri Gagarin\"\/>\n\t<link rel=\"canonical\" href=\"https:\/\/prohoster.info\/en\/blog\/administrirovanie\/kak-protestirovat-proizvoditelnost-serverov-podborka-iz-neskolkih-open-source-benchmarkov\" \/>\n\t<meta name=\"generator\" content=\"All in One SEO (AIOSEO) 5.0.1.1\" \/>\n\t\t<meta property=\"og:locale\" content=\"en_US\" \/>\n\t\t<meta property=\"og:site_name\" content=\"ProHoster | \u041a\u0443\u043f\u0438\u0442\u044c \u043d\u0430\u0434\u0435\u0436\u043d\u044b\u0439 \u0445\u043e\u0441\u0442\u0438\u043d\u0433 \u0434\u043b\u044f \u0441\u0430\u0439\u0442\u043e\u0432 \u0441 \u0437\u0430\u0449\u0438\u0442\u043e\u0439 \u043e\u0442 DDoS, VPS VDS \u0441\u0435\u0440\u0432\u0435\u0440\u044b\" \/>\n\t\t<meta property=\"og:type\" content=\"article\" \/>\n\t\t<meta property=\"og:title\" content=\"\ud83e\udd47\u041a\u0430\u043a \u043f\u0440\u043e\u0442\u0435\u0441\u0442\u0438\u0440\u043e\u0432\u0430\u0442\u044c \u043f\u0440\u043e\u0438\u0437\u0432\u043e\u0434\u0438\u0442\u0435\u043b\u044c\u043d\u043e\u0441\u0442\u044c \u0441\u0435\u0440\u0432\u0435\u0440\u043e\u0432: \u043f\u043e\u0434\u0431\u043e\u0440\u043a\u0430 \u0438\u0437 \u043d\u0435\u0441\u043a\u043e\u043b\u044c\u043a\u0438\u0445 open source \u0431\u0435\u043d\u0447\u043c\u0430\u0440\u043a\u043e\u0432 | ProHoster\" \/>\n\t\t<meta property=\"og:description\" content=\"\u041f\u0440\u043e\u0434\u043e\u043b\u0436\u0430\u0435\u043c \u043d\u0430\u0448\u0443 \u0441\u0435\u0440\u0438\u044e \u043c\u0430\u0442\u0435\u0440\u0438\u0430\u043b\u043e\u0432, \u043f\u043e\u0441\u0432\u044f\u0449\u0435\u043d\u043d\u0443\u044e \u0442\u0435\u0441\u0442\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u044e \u043f\u0440\u043e\u0438\u0437\u0432\u043e\u0434\u0438\u0442\u0435\u043b\u044c\u043d\u043e\u0441\u0442\u0438 \u0441\u0435\u0440\u0432\u0435\u0440\u043e\u0432.\" \/>\n\t\t<meta property=\"og:url\" content=\"https:\/\/prohoster.info\/en\/blog\/administrirovanie\/kak-protestirovat-proizvoditelnost-serverov-podborka-iz-neskolkih-open-source-benchmarkov\" \/>\n\t\t<meta property=\"og:image\" content=\"https:\/\/prohoster.info\/wp-content\/uploads\/2021\/11\/logo-350.jpg\" \/>\n\t\t<meta property=\"og:image:secure_url\" content=\"https:\/\/prohoster.info\/wp-content\/uploads\/2021\/11\/logo-350.jpg\" \/>\n\t\t<meta property=\"og:image:width\" content=\"350\" \/>\n\t\t<meta property=\"og:image:height\" content=\"350\" \/>\n\t\t<meta property=\"article:published_time\" content=\"2019-11-17T21:00:00+00:00\" \/>\n\t\t<meta property=\"article:modified_time\" content=\"2020-02-18T11:00:39+00:00\" \/>\n\t\t<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/prohoster\" \/>\n\t\t<meta property=\"article:author\" content=\"https:\/\/www.facebook.com\/prohoster\" \/>\n\t\t<!-- All in One SEO -->\n\n","aioseo_head_json":{"title":"\ud83e\udd47How to Test Server Performance: A Collection of Several Open Source Benchmarks | ProHoster","description":"We continue our series of materials dedicated to server performance testing.","canonical_url":"https:\/\/prohoster.info\/en\/blog\/administrirovanie\/kak-protestirovat-proizvoditelnost-serverov-podborka-iz-neskolkih-open-source-benchmarkov","robots":"max-image-preview:large","keywords":"","webmasterTools":{"miscellaneous":""},"schema":null,"og:locale":"en_US","og:site_name":"ProHoster | \u041a\u0443\u043f\u0438\u0442\u044c \u043d\u0430\u0434\u0435\u0436\u043d\u044b\u0439 \u0445\u043e\u0441\u0442\u0438\u043d\u0433 \u0434\u043b\u044f \u0441\u0430\u0439\u0442\u043e\u0432 \u0441 \u0437\u0430\u0449\u0438\u0442\u043e\u0439 \u043e\u0442 DDoS, VPS VDS \u0441\u0435\u0440\u0432\u0435\u0440\u044b","og:type":"article","og:title":"\ud83e\udd47\u041a\u0430\u043a \u043f\u0440\u043e\u0442\u0435\u0441\u0442\u0438\u0440\u043e\u0432\u0430\u0442\u044c \u043f\u0440\u043e\u0438\u0437\u0432\u043e\u0434\u0438\u0442\u0435\u043b\u044c\u043d\u043e\u0441\u0442\u044c \u0441\u0435\u0440\u0432\u0435\u0440\u043e\u0432: \u043f\u043e\u0434\u0431\u043e\u0440\u043a\u0430 \u0438\u0437 \u043d\u0435\u0441\u043a\u043e\u043b\u044c\u043a\u0438\u0445 open source \u0431\u0435\u043d\u0447\u043c\u0430\u0440\u043a\u043e\u0432 | ProHoster","og:description":"\u041f\u0440\u043e\u0434\u043e\u043b\u0436\u0430\u0435\u043c \u043d\u0430\u0448\u0443 \u0441\u0435\u0440\u0438\u044e \u043c\u0430\u0442\u0435\u0440\u0438\u0430\u043b\u043e\u0432, \u043f\u043e\u0441\u0432\u044f\u0449\u0435\u043d\u043d\u0443\u044e \u0442\u0435\u0441\u0442\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u044e \u043f\u0440\u043e\u0438\u0437\u0432\u043e\u0434\u0438\u0442\u0435\u043b\u044c\u043d\u043e\u0441\u0442\u0438 \u0441\u0435\u0440\u0432\u0435\u0440\u043e\u0432.","og:url":"https:\/\/prohoster.info\/en\/blog\/administrirovanie\/kak-protestirovat-proizvoditelnost-serverov-podborka-iz-neskolkih-open-source-benchmarkov","og:image":"https:\/\/prohoster.info\/wp-content\/uploads\/2021\/11\/logo-350.jpg","og:image:secure_url":"https:\/\/prohoster.info\/wp-content\/uploads\/2021\/11\/logo-350.jpg","og:image:width":350,"og:image:height":350,"article:published_time":"2019-11-17T21:00:00+00:00","article:modified_time":"2020-02-18T11:00:39+00:00","article:publisher":"https:\/\/www.facebook.com\/prohoster","article:author":"https:\/\/www.facebook.com\/prohoster"},"aioseo_meta_data":{"post_id":"52849","title":null,"description":null,"keywords":null,"keyphrases":null,"primary_term":null,"canonical_url":null,"og_title":null,"og_description":null,"og_object_type":"default","og_image_type":"default","og_image_url":null,"og_image_width":null,"og_image_height":null,"og_image_custom_url":null,"og_image_custom_fields":null,"og_video":null,"og_custom_url":null,"og_article_section":null,"og_article_tags":null,"twitter_use_og":false,"twitter_card":"default","twitter_image_type":"default","twitter_image_url":null,"twitter_image_custom_url":null,"twitter_image_custom_fields":null,"twitter_title":null,"twitter_description":null,"schema":{"blockGraphs":[],"customGraphs":[],"default":{"data":{"Article":[],"Course":[],"Dataset":[],"FAQPage":[],"Movie":[],"Person":[],"Product":[],"ProductReview":[],"Car":[],"Recipe":[],"Service":[],"SoftwareApplication":[],"WebPage":[]},"graphName":"","isEnabled":true},"graphs":[]},"schema_type":null,"schema_type_options":null,"pillar_content":false,"robots_default":true,"robots_noindex":false,"robots_noarchive":false,"robots_nosnippet":false,"robots_nofollow":false,"robots_noimageindex":false,"robots_noodp":false,"robots_notranslate":false,"robots_max_snippet":null,"robots_max_videopreview":null,"robots_max_imagepreview":"large","priority":null,"frequency":null,"local_seo":null,"seo_analyzer_scan_date":"2026-01-24 05:09:25","breadcrumb_settings":null,"limit_modified_date":false,"reviewed_by":null,"ai":null,"created":"2021-02-28 20:36:35","updated":"2026-01-24 05:09:25","focus_keyword":null,"additional_keywords":null,"truseo_locale":null},"gt_translate_keys":[{"key":"link","format":"url"}],"_links":{"self":[{"href":"https:\/\/prohoster.info\/en\/wp-json\/wp\/v2\/posts\/52849","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/prohoster.info\/en\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/prohoster.info\/en\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/prohoster.info\/en\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/prohoster.info\/en\/wp-json\/wp\/v2\/comments?post=52849"}],"version-history":[{"count":0,"href":"https:\/\/prohoster.info\/en\/wp-json\/wp\/v2\/posts\/52849\/revisions"}],"wp:attachment":[{"href":"https:\/\/prohoster.info\/en\/wp-json\/wp\/v2\/media?parent=52849"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/prohoster.info\/en\/wp-json\/wp\/v2\/categories?post=52849"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/prohoster.info\/en\/wp-json\/wp\/v2\/tags?post=52849"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}