{"id":361,"date":"2016-07-25T09:31:03","date_gmt":"2016-07-25T09:31:03","guid":{"rendered":"http:\/\/172.16.10.10:8080\/?p=361"},"modified":"2016-07-25T17:18:02","modified_gmt":"2016-07-25T17:18:02","slug":"find-your-vm-with-top-iops","status":"publish","type":"post","link":"http:\/\/vblog.hochsticher.de\/?p=361","title":{"rendered":"Find your VM with Top IOPS"},"content":{"rendered":"<p>How do you indentify\u00a0VMs that generates the most IOPS? With the vSphere Client?<\/p>\n<p>No, we do it in PowerCLI \ud83d\ude09<\/p>\n<p><!--more--><\/p>\n<p>I found a very good <a href=\"http:\/\/www.lucd.info\/2011\/04\/22\/get-the-maximum-iops\/\">script<\/a> from <a href=\"http:\/\/www.lucd.info\">LucD<\/a> and created a function around.<\/p>\n<pre class=\"font-size:10 line-height:12 lang:ps decode:true  \">function Get-VMMaxIO\r\n{\r\n  &lt;#\r\n      .SYNOPSIS\r\n      Get your VMs with max. IOPS \r\n      .DESCRIPTION\r\n      Get your VMs with max. IOPS (read &amp; write Avg.)\r\n      You could work with the parameters vHost,Cluster or DataCenter to determine the ESXi Hosts. (default = all Hosts)\r\n      With the parameter minutes, you could change the period of time (default = 1)\r\n      With the parameter top, you could change the number of VMs listed  (default = 10)\r\n      .EXAMPLE\r\n      Get-VMMaxIO\r\n\r\n      Get-VMMaxIO -vHost myHost01\r\n      Get-VMMaxIO -Cluster myClusterA\r\n      Get-VMMaxIO -DataCenter myDataCenterA\r\n\r\n      Get-VMMaxIO -vHost * -minutes 10 -top 15\r\n\r\n      .Sample Output\r\n      PS C:\\Users\\myUser&gt; Get-VMMaxIO -Cluster * -minutes 1 -top 5\r\n\r\n      VM   Datastore         IOPSMax\r\n      --   ---------         -------\r\n      myVM01 MyDataStore01   18,75\r\n      myVM02 MyDataStore02    6,85\r\n      myVM03 MyDataStore01     5,8\r\n      myVM09 MyDataStore04     3,4\r\n      myVM15 MyDataStore04     3,2\r\n      \r\n  #&gt;\r\n  [CmdletBinding()]\r\n  param\r\n  (\r\n   \r\n    [Parameter(Mandatory=$false, Position=0)]\r\n    [System.String]\r\n    $vHost = \"\",\r\n    \r\n    [Parameter(Mandatory=$false, Position=1)]\r\n    [System.String]\r\n    $Cluster = \"\",\r\n    \r\n    [Parameter(Mandatory=$false, Position=2)]\r\n    [System.String]\r\n    $DataCenter = \"\",\r\n  \r\n    [Parameter(Mandatory=$false, Position=3)]\r\n    [System.String]\r\n    $top = '10',\r\n    \r\n    [Parameter(Mandatory=$false, Position=4)]\r\n    [System.String]\r\n    $minutes = '5'\r\n  )\r\n  \r\n  \r\n  #Check which Variable is filled\r\n  if([string]::IsNullOrEmpty($vHost)) {            \r\n    #Write-Host \"Given string is NULL or EMPTY\"\r\n    \r\n  } else {            \r\n    #Write-Host \"Set vobject\" \r\n    $vobject = (Get-VMHost $vHost)  | Sort-Object -Property Name              \r\n  }\r\n  \r\n  if([string]::IsNullOrEmpty($Cluster)) {            \r\n    #Write-Host \"Given string is NULL or EMPTY\"  \r\n  } else {            \r\n    #Write-Host \"Set vobject\" \r\n    $vobject = (Get-Cluster $Cluster| Get-VMHost)  | Sort-Object -Property Name            \r\n  }\r\n  \r\n  if([string]::IsNullOrEmpty($DataCenter)) {            \r\n    #Write-Host \"Given string is NULL or EMPTY\"\r\n    \r\n  } else {            \r\n    #Write-Host \"Set vobject\"\r\n    $vobject = (Get-DataCenter $DataCenter| Get-VMHost)  | Sort-Object -Property Parent,Name              \r\n  }\r\n  \r\n  \r\n  \r\n  \r\n  \r\n  \r\n  $metrics = 'disk.numberwrite.summation','disk.numberread.summation'\r\n  $start = (Get-Date).AddMinutes(-$minutes)\r\n  $report = @()\r\n  \r\n  $vms = ($vobject |Get-VM) | where {$_.PowerState -eq 'PoweredOn'}\r\n  $stats = Get-Stat -Realtime -Stat $metrics -Entity $vms -Start $start\r\n  $interval = $stats[0].IntervalSecs\r\n  \r\n  $lunTab = @{}\r\n  foreach($ds in (Get-Datastore -VM $vms | where {$_.Type -eq 'VMFS'})){\r\n    $ds.ExtensionData.Info.Vmfs.Extent | %{\r\n      $lunTab[$_.DiskName] = $ds.Name\r\n    }\r\n  }\r\n  \r\n  $report = $stats | Group-Object -Property {$_.Entity.Name},Instance | %{\r\n    New-Object PSObject -Property @{\r\n      VM = $_.Values[0]\r\n      Disk = $_.Values[1]\r\n      IOPSMax = ($_.Group | `\r\n        Group-Object -Property Timestamp | `\r\n        %{$_.Group[0].Value + $_.Group[1].Value} | `\r\n      Measure-Object -Maximum).Maximum \/ $interval\r\n      Datastore = $lunTab[$_.Values[1]]\r\n    }\r\n  }\r\n  \r\n  $report | Sort-Object IOPSMax -Descending | select VM, Datastore, IOPSMax -First $top\r\n}\r\n<\/pre>\n<p>&nbsp;<\/p>\n","protected":false},"excerpt":{"rendered":"<p>How do you indentify\u00a0VMs that generates the most IOPS? With the vSphere Client? No, we do it in PowerCLI \ud83d\ude09<\/p>\n","protected":false},"author":1,"featured_media":363,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"ngg_post_thumbnail":0,"footnotes":""},"categories":[4,5,7],"tags":[],"class_list":["post-361","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-powercli","category-reports","category-vsphere"],"aioseo_notices":[],"aioseo_head":"\n\t\t<!-- All in One SEO 4.9.8 - aioseo.com -->\n\t<meta name=\"description\" content=\"How do you indentify VMs that generates the most IOPS? With the vSphere Client? No, we do it in PowerCLI ;-) I found a very good script from LucD and created a function around. function Get-VMMaxIO {\" \/>\n\t<meta name=\"robots\" content=\"max-image-preview:large\" \/>\n\t<meta name=\"author\" content=\"Christoph Hochsticher\"\/>\n\t<meta name=\"google-site-verification\" content=\"lo0g577VbySpy05Melx7kVchEKh4qiUJhEtBpOiRLg8\" \/>\n\t<link rel=\"canonical\" href=\"http:\/\/vblog.hochsticher.de\/?p=361\" \/>\n\t<meta name=\"generator\" content=\"All in One SEO (AIOSEO) 4.9.8\" \/>\n\t\t<meta property=\"og:locale\" content=\"en_US\" \/>\n\t\t<meta property=\"og:site_name\" content=\"Chris - vBlog - Blog about Virtualization\" \/>\n\t\t<meta property=\"og:type\" content=\"article\" \/>\n\t\t<meta property=\"og:title\" content=\"Find your VM with Top IOPS - Chris - vBlog\" \/>\n\t\t<meta property=\"og:description\" content=\"How do you indentify VMs that generates the most IOPS? With the vSphere Client? No, we do it in PowerCLI ;-) I found a very good script from LucD and created a function around. function Get-VMMaxIO {\" \/>\n\t\t<meta property=\"og:url\" content=\"http:\/\/vblog.hochsticher.de\/?p=361\" \/>\n\t\t<meta property=\"article:published_time\" content=\"2016-07-25T09:31:03+00:00\" \/>\n\t\t<meta property=\"article:modified_time\" content=\"2016-07-25T17:18:02+00:00\" \/>\n\t\t<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n\t\t<meta name=\"twitter:title\" content=\"Find your VM with Top IOPS - Chris - vBlog\" \/>\n\t\t<meta name=\"twitter:description\" content=\"How do you indentify VMs that generates the most IOPS? With the vSphere Client? No, we do it in PowerCLI ;-) I found a very good script from LucD and created a function around. function Get-VMMaxIO {\" \/>\n\t\t<script type=\"application\/ld+json\" class=\"aioseo-schema\">\n\t\t\t{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"BlogPosting\",\"@id\":\"http:\\\/\\\/vblog.hochsticher.de\\\/?p=361#blogposting\",\"name\":\"Find your VM with Top IOPS - Chris - vBlog\",\"headline\":\"Find your VM with Top IOPS\",\"author\":{\"@id\":\"http:\\\/\\\/vblog.hochsticher.de\\\/?author=1#author\"},\"publisher\":{\"@id\":\"http:\\\/\\\/vblog.hochsticher.de\\\/#person\"},\"image\":{\"@type\":\"ImageObject\",\"url\":\"http:\\\/\\\/vblog.hochsticher.de\\\/wp-content\\\/uploads\\\/2016\\\/07\\\/COLOURBOX3958091.jpg?wsr\",\"width\":3000,\"height\":3000,\"caption\":\"Top ten under the magnifier isolated on white\"},\"datePublished\":\"2016-07-25T09:31:03+02:00\",\"dateModified\":\"2016-07-25T17:18:02+02:00\",\"inLanguage\":\"en-US\",\"mainEntityOfPage\":{\"@id\":\"http:\\\/\\\/vblog.hochsticher.de\\\/?p=361#webpage\"},\"isPartOf\":{\"@id\":\"http:\\\/\\\/vblog.hochsticher.de\\\/?p=361#webpage\"},\"articleSection\":\"PowerCLI, Reports, vSphere\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"http:\\\/\\\/vblog.hochsticher.de\\\/?p=361#breadcrumblist\",\"itemListElement\":[{\"@type\":\"ListItem\",\"@id\":\"http:\\\/\\\/vblog.hochsticher.de#listItem\",\"position\":1,\"name\":\"Home\",\"item\":\"http:\\\/\\\/vblog.hochsticher.de\",\"nextItem\":{\"@type\":\"ListItem\",\"@id\":\"http:\\\/\\\/vblog.hochsticher.de\\\/?cat=4#listItem\",\"name\":\"PowerCLI\"}},{\"@type\":\"ListItem\",\"@id\":\"http:\\\/\\\/vblog.hochsticher.de\\\/?cat=4#listItem\",\"position\":2,\"name\":\"PowerCLI\",\"item\":\"http:\\\/\\\/vblog.hochsticher.de\\\/?cat=4\",\"nextItem\":{\"@type\":\"ListItem\",\"@id\":\"http:\\\/\\\/vblog.hochsticher.de\\\/?p=361#listItem\",\"name\":\"Find your VM with Top IOPS\"},\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"http:\\\/\\\/vblog.hochsticher.de#listItem\",\"name\":\"Home\"}},{\"@type\":\"ListItem\",\"@id\":\"http:\\\/\\\/vblog.hochsticher.de\\\/?p=361#listItem\",\"position\":3,\"name\":\"Find your VM with Top IOPS\",\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"http:\\\/\\\/vblog.hochsticher.de\\\/?cat=4#listItem\",\"name\":\"PowerCLI\"}}]},{\"@type\":\"Person\",\"@id\":\"http:\\\/\\\/vblog.hochsticher.de\\\/?author=1#author\",\"url\":\"http:\\\/\\\/vblog.hochsticher.de\\\/?author=1\",\"name\":\"Christoph Hochsticher\",\"image\":{\"@type\":\"ImageObject\",\"@id\":\"http:\\\/\\\/vblog.hochsticher.de\\\/?p=361#authorImage\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/d87fe995d7081d178014a72c729204792aff213f894bac1d28d0e0cc956c1171?s=96&d=mm&r=g\",\"width\":96,\"height\":96,\"caption\":\"Christoph Hochsticher\"}},{\"@type\":\"WebPage\",\"@id\":\"http:\\\/\\\/vblog.hochsticher.de\\\/?p=361#webpage\",\"url\":\"http:\\\/\\\/vblog.hochsticher.de\\\/?p=361\",\"name\":\"Find your VM with Top IOPS - Chris - vBlog\",\"description\":\"How do you indentify VMs that generates the most IOPS? With the vSphere Client? No, we do it in PowerCLI ;-) I found a very good script from LucD and created a function around. function Get-VMMaxIO {\",\"inLanguage\":\"en-US\",\"isPartOf\":{\"@id\":\"http:\\\/\\\/vblog.hochsticher.de\\\/#website\"},\"breadcrumb\":{\"@id\":\"http:\\\/\\\/vblog.hochsticher.de\\\/?p=361#breadcrumblist\"},\"author\":{\"@id\":\"http:\\\/\\\/vblog.hochsticher.de\\\/?author=1#author\"},\"creator\":{\"@id\":\"http:\\\/\\\/vblog.hochsticher.de\\\/?author=1#author\"},\"image\":{\"@type\":\"ImageObject\",\"url\":\"http:\\\/\\\/vblog.hochsticher.de\\\/wp-content\\\/uploads\\\/2016\\\/07\\\/COLOURBOX3958091.jpg?wsr\",\"@id\":\"http:\\\/\\\/vblog.hochsticher.de\\\/?p=361\\\/#mainImage\",\"width\":3000,\"height\":3000,\"caption\":\"Top ten under the magnifier isolated on white\"},\"primaryImageOfPage\":{\"@id\":\"http:\\\/\\\/vblog.hochsticher.de\\\/?p=361#mainImage\"},\"datePublished\":\"2016-07-25T09:31:03+02:00\",\"dateModified\":\"2016-07-25T17:18:02+02:00\"},{\"@type\":\"WebSite\",\"@id\":\"http:\\\/\\\/vblog.hochsticher.de\\\/#website\",\"url\":\"http:\\\/\\\/vblog.hochsticher.de\\\/\",\"name\":\"Chris - vBlog\",\"description\":\"Blog about Virtualization\",\"inLanguage\":\"en-US\",\"publisher\":{\"@id\":\"http:\\\/\\\/vblog.hochsticher.de\\\/#person\"}}]}\n\t\t<\/script>\n\t\t<!-- All in One SEO -->\n\n","aioseo_head_json":{"title":"Find your VM with Top IOPS - Chris - vBlog","description":"How do you indentify VMs that generates the most IOPS? With the vSphere Client? No, we do it in PowerCLI ;-) I found a very good script from LucD and created a function around. function Get-VMMaxIO {","canonical_url":"http:\/\/vblog.hochsticher.de\/?p=361","robots":"max-image-preview:large","keywords":"","webmasterTools":{"google-site-verification":"lo0g577VbySpy05Melx7kVchEKh4qiUJhEtBpOiRLg8","miscellaneous":""},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"BlogPosting","@id":"http:\/\/vblog.hochsticher.de\/?p=361#blogposting","name":"Find your VM with Top IOPS - Chris - vBlog","headline":"Find your VM with Top IOPS","author":{"@id":"http:\/\/vblog.hochsticher.de\/?author=1#author"},"publisher":{"@id":"http:\/\/vblog.hochsticher.de\/#person"},"image":{"@type":"ImageObject","url":"http:\/\/vblog.hochsticher.de\/wp-content\/uploads\/2016\/07\/COLOURBOX3958091.jpg?wsr","width":3000,"height":3000,"caption":"Top ten under the magnifier isolated on white"},"datePublished":"2016-07-25T09:31:03+02:00","dateModified":"2016-07-25T17:18:02+02:00","inLanguage":"en-US","mainEntityOfPage":{"@id":"http:\/\/vblog.hochsticher.de\/?p=361#webpage"},"isPartOf":{"@id":"http:\/\/vblog.hochsticher.de\/?p=361#webpage"},"articleSection":"PowerCLI, Reports, vSphere"},{"@type":"BreadcrumbList","@id":"http:\/\/vblog.hochsticher.de\/?p=361#breadcrumblist","itemListElement":[{"@type":"ListItem","@id":"http:\/\/vblog.hochsticher.de#listItem","position":1,"name":"Home","item":"http:\/\/vblog.hochsticher.de","nextItem":{"@type":"ListItem","@id":"http:\/\/vblog.hochsticher.de\/?cat=4#listItem","name":"PowerCLI"}},{"@type":"ListItem","@id":"http:\/\/vblog.hochsticher.de\/?cat=4#listItem","position":2,"name":"PowerCLI","item":"http:\/\/vblog.hochsticher.de\/?cat=4","nextItem":{"@type":"ListItem","@id":"http:\/\/vblog.hochsticher.de\/?p=361#listItem","name":"Find your VM with Top IOPS"},"previousItem":{"@type":"ListItem","@id":"http:\/\/vblog.hochsticher.de#listItem","name":"Home"}},{"@type":"ListItem","@id":"http:\/\/vblog.hochsticher.de\/?p=361#listItem","position":3,"name":"Find your VM with Top IOPS","previousItem":{"@type":"ListItem","@id":"http:\/\/vblog.hochsticher.de\/?cat=4#listItem","name":"PowerCLI"}}]},{"@type":"Person","@id":"http:\/\/vblog.hochsticher.de\/?author=1#author","url":"http:\/\/vblog.hochsticher.de\/?author=1","name":"Christoph Hochsticher","image":{"@type":"ImageObject","@id":"http:\/\/vblog.hochsticher.de\/?p=361#authorImage","url":"https:\/\/secure.gravatar.com\/avatar\/d87fe995d7081d178014a72c729204792aff213f894bac1d28d0e0cc956c1171?s=96&d=mm&r=g","width":96,"height":96,"caption":"Christoph Hochsticher"}},{"@type":"WebPage","@id":"http:\/\/vblog.hochsticher.de\/?p=361#webpage","url":"http:\/\/vblog.hochsticher.de\/?p=361","name":"Find your VM with Top IOPS - Chris - vBlog","description":"How do you indentify VMs that generates the most IOPS? With the vSphere Client? No, we do it in PowerCLI ;-) I found a very good script from LucD and created a function around. function Get-VMMaxIO {","inLanguage":"en-US","isPartOf":{"@id":"http:\/\/vblog.hochsticher.de\/#website"},"breadcrumb":{"@id":"http:\/\/vblog.hochsticher.de\/?p=361#breadcrumblist"},"author":{"@id":"http:\/\/vblog.hochsticher.de\/?author=1#author"},"creator":{"@id":"http:\/\/vblog.hochsticher.de\/?author=1#author"},"image":{"@type":"ImageObject","url":"http:\/\/vblog.hochsticher.de\/wp-content\/uploads\/2016\/07\/COLOURBOX3958091.jpg?wsr","@id":"http:\/\/vblog.hochsticher.de\/?p=361\/#mainImage","width":3000,"height":3000,"caption":"Top ten under the magnifier isolated on white"},"primaryImageOfPage":{"@id":"http:\/\/vblog.hochsticher.de\/?p=361#mainImage"},"datePublished":"2016-07-25T09:31:03+02:00","dateModified":"2016-07-25T17:18:02+02:00"},{"@type":"WebSite","@id":"http:\/\/vblog.hochsticher.de\/#website","url":"http:\/\/vblog.hochsticher.de\/","name":"Chris - vBlog","description":"Blog about Virtualization","inLanguage":"en-US","publisher":{"@id":"http:\/\/vblog.hochsticher.de\/#person"}}]},"og:locale":"en_US","og:site_name":"Chris - vBlog - Blog about Virtualization","og:type":"article","og:title":"Find your VM with Top IOPS - Chris - vBlog","og:description":"How do you indentify VMs that generates the most IOPS? With the vSphere Client? No, we do it in PowerCLI ;-) I found a very good script from LucD and created a function around. function Get-VMMaxIO {","og:url":"http:\/\/vblog.hochsticher.de\/?p=361","article:published_time":"2016-07-25T09:31:03+00:00","article:modified_time":"2016-07-25T17:18:02+00:00","twitter:card":"summary_large_image","twitter:title":"Find your VM with Top IOPS - Chris - vBlog","twitter:description":"How do you indentify VMs that generates the most IOPS? With the vSphere Client? No, we do it in PowerCLI ;-) I found a very good script from LucD and created a function around. function Get-VMMaxIO {"},"aioseo_meta_data":{"post_id":"361","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":"default","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,"breadcrumb_settings":null,"limit_modified_date":false,"ai":null,"created":"2023-03-16 21:35:58","updated":"2025-06-03 20:33:12","seo_analyzer_scan_date":null},"aioseo_breadcrumb":"<div class=\"aioseo-breadcrumbs\"><span class=\"aioseo-breadcrumb\">\n\t\t\t<a href=\"http:\/\/vblog.hochsticher.de\" title=\"Home\">Home<\/a>\n\t\t<\/span><span class=\"aioseo-breadcrumb-separator\">&raquo;<\/span><span class=\"aioseo-breadcrumb\">\n\t\t\t<a href=\"http:\/\/vblog.hochsticher.de\/?cat=4\" title=\"PowerCLI\">PowerCLI<\/a>\n\t\t<\/span><span class=\"aioseo-breadcrumb-separator\">&raquo;<\/span><span class=\"aioseo-breadcrumb\">\n\t\t\tFind your VM with Top IOPS\n\t\t<\/span><\/div>","aioseo_breadcrumb_json":[{"label":"Home","link":"http:\/\/vblog.hochsticher.de"},{"label":"PowerCLI","link":"http:\/\/vblog.hochsticher.de\/?cat=4"},{"label":"Find your VM with Top IOPS","link":"http:\/\/vblog.hochsticher.de\/?p=361"}],"_links":{"self":[{"href":"http:\/\/vblog.hochsticher.de\/index.php?rest_route=\/wp\/v2\/posts\/361","targetHints":{"allow":["GET"]}}],"collection":[{"href":"http:\/\/vblog.hochsticher.de\/index.php?rest_route=\/wp\/v2\/posts"}],"about":[{"href":"http:\/\/vblog.hochsticher.de\/index.php?rest_route=\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"http:\/\/vblog.hochsticher.de\/index.php?rest_route=\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"http:\/\/vblog.hochsticher.de\/index.php?rest_route=%2Fwp%2Fv2%2Fcomments&post=361"}],"version-history":[{"count":6,"href":"http:\/\/vblog.hochsticher.de\/index.php?rest_route=\/wp\/v2\/posts\/361\/revisions"}],"predecessor-version":[{"id":366,"href":"http:\/\/vblog.hochsticher.de\/index.php?rest_route=\/wp\/v2\/posts\/361\/revisions\/366"}],"wp:featuredmedia":[{"embeddable":true,"href":"http:\/\/vblog.hochsticher.de\/index.php?rest_route=\/wp\/v2\/media\/363"}],"wp:attachment":[{"href":"http:\/\/vblog.hochsticher.de\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=361"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"http:\/\/vblog.hochsticher.de\/index.php?rest_route=%2Fwp%2Fv2%2Fcategories&post=361"},{"taxonomy":"post_tag","embeddable":true,"href":"http:\/\/vblog.hochsticher.de\/index.php?rest_route=%2Fwp%2Fv2%2Ftags&post=361"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}