{"id":12904,"date":"2014-04-14T11:02:51","date_gmt":"2014-04-14T05:32:51","guid":{"rendered":"https:\/\/2thenew.xyz\/blog\/?p=12904"},"modified":"2014-04-14T11:02:51","modified_gmt":"2014-04-14T05:32:51","slug":"tag-snapshot-using-backup_monkey","status":"publish","type":"post","link":"https:\/\/2thenew.xyz\/blog\/tag-snapshot-using-backup_monkey\/","title":{"rendered":"Tag Snapshot using Backup_Monkey"},"content":{"rendered":"<div style=\"width: 700px\">\n<p style=\"text-align: justify\">In continuation with my previous article <a title=\"EBS Snapshot using Backup_Monkey\" href=\"https:\/\/2thenew.xyz\/blog\/ebs-snaphost-using-backup_monkey\/\">EBS Snapshot using Backup_Monkey<\/a>, we have discussed one issue associated with BackUp Monkey utility.<\/p>\n<p style=\"text-align: justify\"><em>The issue was that it use&#8217;s &#8220;BACKUP_MONKEY&#8221; prefix and tag the snapshot with this prefix.<\/em><\/p>\n<p style=\"text-align: justify\"><a href=\"\/blog\/wp-ttn-blog\/uploads\/2014\/04\/backup4.png\"><img loading=\"lazy\" decoding=\"async\" class=\"alignnone size-full wp-image-12906\" src=\"\/blog\/wp-ttn-blog\/uploads\/2014\/04\/backup4.png\" alt=\"Blog image\" width=\"600\" height=\"100\" \/><\/a><\/p>\n<p style=\"text-align: justify\">As you can see in the Description, BACKUP_MONKEY prefix is used. So this create&#8217;s a redundancy while finding the exact snapshot, as every snapshot is tagged with this same format. But we want a snapshot with the name same as &#8220;Instance Name&#8221; so that we can identify the snapshot easily. To do so we have to modify the source code.<br \/>\n<code><span class=\"GINGER_SOFTWARE_mark\">backup<\/span>-monkey<\/code> command uses <strong>\/usr\/local\/lib\/python27\/<span class=\"GINGER_SOFTWARE_mark\">dist<\/span>-packages\/backup_monkey\/core<span class=\"GINGER_SOFTWARE_mark\">.<\/span><span class=\"GINGER_SOFTWARE_mark\">py<\/span><\/strong><\/p>\n<p style=\"text-align: justify\"><span class=\"GINGER_SOFTWARE_mark\">File<\/span> to be modified: \/usr\/local\/lib\/python27\/<span class=\"GINGER_SOFTWARE_mark\">dist<\/span>-packages\/backup_monkey\/core<span class=\"GINGER_SOFTWARE_mark\">.<\/span><span class=\"GINGER_SOFTWARE_mark\">py<\/span><\/p>\n<p style=\"text-align: justify\">Locate line number 29 and comment it out<br \/>\n<code><span class=\"GINGER_SOFTWARE_mark\">self<\/span><span class=\"GINGER_SOFTWARE_mark\">.<\/span>_prefix='BACKUP_MONKEY' <\/code><\/p>\n<p style=\"text-align: justify\"><span class=\"GINGER_SOFTWARE_mark\">and<\/span> Replace it with<br \/>\n<code><span class=\"GINGER_SOFTWARE_mark\">self<\/span><span class=\"GINGER_SOFTWARE_mark\">.<\/span>_prefix=self<span class=\"GINGER_SOFTWARE_mark\">.<\/span>_conn<span class=\"GINGER_SOFTWARE_mark\">.<\/span>get_all_instances<span class=\"GINGER_SOFTWARE_mark\">(<\/span>) <\/code><\/p>\n<p style=\"text-align: justify\"><strong><span class=\"GINGER_SOFTWARE_mark\">self<\/span><span class=\"GINGER_SOFTWARE_mark\">.<\/span>conn<span class=\"GINGER_SOFTWARE_mark\">.<\/span>get_all_instances<span class=\"GINGER_SOFTWARE_mark\">(<\/span>) will return all instances Reservation id<\/strong><\/p>\n<p style=\"text-align: justify\">Now, Replace <span class=\"GINGER_SOFTWARE_mark\">original code<\/span> in &#8220;core<span class=\"GINGER_SOFTWARE_mark\">.<\/span><span class=\"GINGER_SOFTWARE_mark\">py<\/span>&#8221; with this following code.<br \/>\n<code><br \/>\n48 i=0<br \/>\n49 for volume in volumes:<br \/>\n50<br \/>\n51 # \u00a0\u00a0\u00a0\u00a0description_parts = [self<span class=\"GINGER_SOFTWARE_mark\">.<\/span>_prefix] \/\/Comment this line<br \/>\n52 \u00a0\u00a0\u00a0\u00a0description_parts=<span class=\"GINGER_SOFTWARE_mark\">[<\/span>self<span class=\"GINGER_SOFTWARE_mark\">.<\/span>_prefix<span class=\"GINGER_SOFTWARE_mark\">[<\/span><span class=\"GINGER_SOFTWARE_mark\">i<\/span>]<span class=\"GINGER_SOFTWARE_mark\">.<\/span>instances<span class=\"GINGER_SOFTWARE_mark\">[<\/span>0]<span class=\"GINGER_SOFTWARE_mark\">.<\/span>tags<span class=\"GINGER_SOFTWARE_mark\">[<\/span>'Name']]<br \/>\n53 \u00a0\u00a0\u00a0\u00a0i=i+1<br \/>\n54 \u00a0\u00a0\u00a0\u00a0description_parts<span class=\"GINGER_SOFTWARE_mark\">.<\/span>append<span class=\"GINGER_SOFTWARE_mark\">(<\/span>volume<span class=\"GINGER_SOFTWARE_mark\">.<\/span>id)<br \/>\n55 \u00a0\u00a0\u00a0\u00a0if volume<span class=\"GINGER_SOFTWARE_mark\">.<\/span>attach_data<span class=\"GINGER_SOFTWARE_mark\">.<\/span>instance_id:<br \/>\n56 \u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0description_parts<span class=\"GINGER_SOFTWARE_mark\">.<\/span>append<span class=\"GINGER_SOFTWARE_mark\">(<\/span>volume<span class=\"GINGER_SOFTWARE_mark\">.<\/span>attach_data<span class=\"GINGER_SOFTWARE_mark\">.<\/span>instance_id)<br \/>\n57 \u00a0\u00a0\u00a0\u00a0if volume.attach_data.device:<br \/>\n58 \u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0description_parts.append(volume.attach_data.device)<br \/>\n59 \u00a0\u00a0\u00a0\u00a0description = ' '<span class=\"GINGER_SOFTWARE_mark\">.<\/span>join<span class=\"GINGER_SOFTWARE_mark\">(<\/span>description_parts)<br \/>\n60 \u00a0\u00a0\u00a0\u00a0log.info('Creating snapshot of %s: %s', volume<span class=\"GINGER_SOFTWARE_mark\">.<\/span>id, description)<br \/>\n61 \u00a0\u00a0\u00a0\u00a0<span class=\"GINGER_SOFTWARE_mark\">volume<\/span><span class=\"GINGER_SOFTWARE_mark\">.<\/span>create_snapshot<span class=\"GINGER_SOFTWARE_mark\">(<\/span>description)<br \/>\n62 \u00a0\u00a0\u00a0\u00a0return True<\/code><\/p>\n<p style=\"text-align: justify\">We added this line<\/p>\n<p style=\"text-align: justify\"><code>description_parts=<span class=\"GINGER_SOFTWARE_mark\">[<\/span>self<span class=\"GINGER_SOFTWARE_mark\">.<\/span>_prefix<span class=\"GINGER_SOFTWARE_mark\">[<\/span><span class=\"GINGER_SOFTWARE_mark\">i<\/span>]<span class=\"GINGER_SOFTWARE_mark\">.<\/span>instances<span class=\"GINGER_SOFTWARE_mark\">[<\/span>0]<span class=\"GINGER_SOFTWARE_mark\">.<\/span>tags<span class=\"GINGER_SOFTWARE_mark\">[<\/span>'Name']] <\/code><\/p>\n<p style=\"text-align: justify\">This is basically extracting the Tag Name associated with the Reservation Id extracted above.<\/p>\n<p style=\"text-align: justify\">Next part is to modify the <strong>remove_old_snapshots<span class=\"GINGER_SOFTWARE_mark\">(<\/span>)<\/strong> section.<\/p>\n<p style=\"text-align: justify\"><span class=\"GINGER_SOFTWARE_mark\">Below code is<\/span> used for removing snapshots with the extracted Tag Name.<br \/>\n<code><br \/>\n73 j=0<br \/>\n74 for snapshot in snapshots:<br \/>\n75 #\u00a0\u00a0\u00a0\u00a0if not snapshot.description.startswith(self._prefix):<br \/>\n76 \u00a0\u00a0\u00a0\u00a0 if not snapshot.description.startswith(self._prefix[j].instances[0].tags['Name']):<br \/>\n77\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 log.debug('Skipping %s as prefix does not match', snapshot<span class=\"GINGER_SOFTWARE_mark\">.<\/span>id)<br \/>\n78\u00a0\u00a0\u00a0\u00a0 continue<br \/>\n79\u00a0\u00a0\u00a0\u00a0 if not snapshot<span class=\"GINGER_SOFTWARE_mark\">.<\/span>status == 'completed':<br \/>\n80\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 log.debug('Skipping %s as it is not a complete snapshot', snapshot<span class=\"GINGER_SOFTWARE_mark\">.<\/span>id)<br \/>\n81\u00a0\u00a0\u00a0\u00a0 continue<br \/>\n82\u00a0\u00a0\u00a0\u00a0 j=j+1<br \/>\n<\/code><\/p>\n<p style=\"text-align: justify\">We are done with the modification. <span class=\"GINGER_SOFTWARE_mark\">Lets<\/span> Test it out.<\/p>\n<p style=\"text-align: justify\">This is my Instance with Tag Name &#8220;Testing Instance&#8221;.<\/p>\n<p style=\"text-align: justify\"><a href=\"\/blog\/wp-ttn-blog\/uploads\/2014\/04\/Screenshot-from-2014-04-07-165702.png\"><img loading=\"lazy\" decoding=\"async\" class=\"alignnone size-full wp-image-12918\" src=\"\/blog\/wp-ttn-blog\/uploads\/2014\/04\/Screenshot-from-2014-04-07-165702.png\" alt=\"Blog image\" width=\"600\" height=\"100\" \/><\/a><\/p>\n<p style=\"text-align: justify\"><span class=\"GINGER_SOFTWARE_mark\">Lets<\/span> run<br \/>\n<code> <strong>$backup-monkey --region us-west-2<\/strong> <\/code><\/p>\n<p style=\"text-align: justify\"><a href=\"\/blog\/wp-ttn-blog\/uploads\/2014\/04\/Screenshot-from-2014-04-07-170608.png\"><img loading=\"lazy\" decoding=\"async\" class=\"alignnone size-full wp-image-12919\" src=\"\/blog\/wp-ttn-blog\/uploads\/2014\/04\/Screenshot-from-2014-04-07-170608.png\" alt=\"Blog image\" width=\"600\" height=\"100\" \/><\/a><\/p>\n<p style=\"text-align: justify\">Now you can see below the difference between the two <span class=\"GINGER_SOFTWARE_mark\">snapshot<\/span>. One with &#8220;BACKUP_MONKEY&#8221; which was the previous one, other with &#8220;Testing Instance&#8221; name<\/p>\n<p style=\"text-align: justify\"><a href=\"\/blog\/wp-ttn-blog\/uploads\/2014\/04\/back5.png\"><img loading=\"lazy\" decoding=\"async\" class=\"alignnone size-full wp-image-12920\" src=\"\/blog\/wp-ttn-blog\/uploads\/2014\/04\/back5.png\" alt=\"Blog image\" width=\"600\" height=\"101\" \/><\/a><\/p>\n<\/div>\n<p style=\"text-align: justify\">\nReferences: <a href=\"https:\/\/github.com\/Answers4AWS\/backup-monkey\">backup-monkey source code<\/a><\/p>\n<p style=\"text-align: justify\">\n","protected":false},"excerpt":{"rendered":"<p>In continuation with my previous article EBS Snapshot using Backup_Monkey, we have discussed one issue associated with BackUp Monkey utility. The issue was that it use&#8217;s &#8220;BACKUP_MONKEY&#8221; prefix and tag the snapshot with this prefix. As you can see in the Description, BACKUP_MONKEY prefix is used. So this create&#8217;s a redundancy while finding the exact [&hellip;]<\/p>\n","protected":false},"author":100,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"iawp_total_views":2,"footnotes":""},"categories":[1],"tags":[573,1358],"class_list":["post-12904","post","type-post","status-publish","format-standard","hentry","category-technology","tag-ebs","tag-python"],"aioseo_notices":[],"aioseo_head":"\n\t\t<!-- All in One SEO 5.0.0.1 - aioseo.com -->\n\t<meta name=\"description\" content=\"In continuation with my previous article EBS Snapshot using Backup_Monkey, we have discussed one issue associated with BackUp Monkey utility. The issue was that it use&#039;s &quot;BACKUP_MONKEY&quot; prefix and tag the snapshot with this prefix. As you can see in the Description, BACKUP_MONKEY prefix is used. So this create&#039;s a redundancy while finding the exact\" \/>\n\t<meta name=\"robots\" content=\"max-image-preview:large\" \/>\n\t<meta name=\"author\" content=\"Vikash Jha\"\/>\n\t<link rel=\"canonical\" href=\"https:\/\/2thenew.xyz\/blog\/tag-snapshot-using-backup_monkey\/\" \/>\n\t<meta name=\"generator\" content=\"All in One SEO (AIOSEO) 5.0.0.1\" \/>\n\t\t<meta property=\"og:locale\" content=\"en_US\" \/>\n\t\t<meta property=\"og:site_name\" content=\"TO THE NEW BLOG\" \/>\n\t\t<meta property=\"og:type\" content=\"blog\" \/>\n\t\t<meta property=\"og:title\" content=\"Tag Snapshot using Backup_Monkey | TO THE NEW Blog\" \/>\n\t\t<meta property=\"og:description\" content=\"In continuation with my previous article EBS Snapshot using Backup_Monkey, we have discussed one issue associated with BackUp Monkey utility. The issue was that it use&#039;s &quot;BACKUP_MONKEY&quot; prefix and tag the snapshot with this prefix. As you can see in the Description, BACKUP_MONKEY prefix is used. So this create&#039;s a redundancy while finding the exact\" \/>\n\t\t<meta property=\"og:url\" content=\"https:\/\/2thenew.xyz\/blog\/tag-snapshot-using-backup_monkey\/\" \/>\n\t\t<meta property=\"og:image\" content=\"https:\/\/2thenew.xyz\/blog\/wp-content\/themes\/ttn\/images\/social-logo.png\" \/>\n\t\t<meta property=\"og:image:secure_url\" content=\"https:\/\/2thenew.xyz\/blog\/wp-content\/themes\/ttn\/images\/social-logo.png\" \/>\n\t\t<meta name=\"twitter:card\" content=\"summary\" \/>\n\t\t<meta name=\"twitter:site\" content=\"@tothenew\" \/>\n\t\t<meta name=\"twitter:title\" content=\"Tag Snapshot using Backup_Monkey | TO THE NEW Blog\" \/>\n\t\t<meta name=\"twitter:description\" content=\"In continuation with my previous article EBS Snapshot using Backup_Monkey, we have discussed one issue associated with BackUp Monkey utility. The issue was that it use&#039;s &quot;BACKUP_MONKEY&quot; prefix and tag the snapshot with this prefix. As you can see in the Description, BACKUP_MONKEY prefix is used. So this create&#039;s a redundancy while finding the exact\" \/>\n\t\t<meta name=\"twitter:image\" content=\"https:\/\/2thenew.xyz\/blog\/wp-content\/themes\/ttn\/images\/social-logo.png\" \/>\n\t\t<script type=\"application\/ld+json\" class=\"aioseo-schema\">\n\t\t\t{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/tag-snapshot-using-backup_monkey\\\/#article\",\"name\":\"Tag Snapshot using Backup_Monkey | TO THE NEW Blog\",\"headline\":\"Tag Snapshot using Backup_Monkey\",\"author\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/author\\\/vikash-jha\\\/#author\"},\"publisher\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/#organization\"},\"image\":{\"@type\":\"ImageObject\",\"url\":\"\\\/blog\\\/wp-ttn-blog\\\/uploads\\\/2014\\\/04\\\/backup4.png\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/tag-snapshot-using-backup_monkey\\\/#articleImage\"},\"datePublished\":\"2014-04-14T11:02:51+05:30\",\"dateModified\":\"2014-04-14T11:02:51+05:30\",\"inLanguage\":\"en-US\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/tag-snapshot-using-backup_monkey\\\/#webpage\"},\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/tag-snapshot-using-backup_monkey\\\/#webpage\"},\"articleSection\":\"Technology, EBS, python\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/tag-snapshot-using-backup_monkey\\\/#breadcrumblist\",\"itemListElement\":[{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog#listItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/www.tothenew.com\\\/blog\",\"nextItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/category\\\/technology\\\/#listItem\",\"name\":\"Technology\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/category\\\/technology\\\/#listItem\",\"position\":2,\"name\":\"Technology\",\"item\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/category\\\/technology\\\/\",\"nextItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/tag-snapshot-using-backup_monkey\\\/#listItem\",\"name\":\"Tag Snapshot using Backup_Monkey\"},\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog#listItem\",\"name\":\"Home\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/tag-snapshot-using-backup_monkey\\\/#listItem\",\"position\":3,\"name\":\"Tag Snapshot using Backup_Monkey\",\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/category\\\/technology\\\/#listItem\",\"name\":\"Technology\"}}]},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/#organization\",\"name\":\"TO THE NEW Blog\",\"url\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/\"},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/author\\\/vikash-jha\\\/#author\",\"url\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/author\\\/vikash-jha\\\/\",\"name\":\"Vikash Jha\",\"image\":{\"@type\":\"ImageObject\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/tag-snapshot-using-backup_monkey\\\/#authorImage\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/fa67f119919550cc9af23ac9542eb0ef48d4e69a6ad310fb29f55390d4662b36?s=96&d=mm&r=g\",\"width\":96,\"height\":96,\"caption\":\"Vikash Jha\"}},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/tag-snapshot-using-backup_monkey\\\/#webpage\",\"url\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/tag-snapshot-using-backup_monkey\\\/\",\"name\":\"Tag Snapshot using Backup_Monkey | TO THE NEW Blog\",\"description\":\"In continuation with my previous article EBS Snapshot using Backup_Monkey, we have discussed one issue associated with BackUp Monkey utility. The issue was that it use's \\\"BACKUP_MONKEY\\\" prefix and tag the snapshot with this prefix. As you can see in the Description, BACKUP_MONKEY prefix is used. So this create's a redundancy while finding the exact\",\"inLanguage\":\"en-US\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/#website\"},\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/tag-snapshot-using-backup_monkey\\\/#breadcrumblist\"},\"author\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/author\\\/vikash-jha\\\/#author\"},\"creator\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/author\\\/vikash-jha\\\/#author\"},\"datePublished\":\"2014-04-14T11:02:51+05:30\",\"dateModified\":\"2014-04-14T11:02:51+05:30\"},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/#website\",\"url\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/\",\"name\":\"TO THE NEW Blog\",\"inLanguage\":\"en-US\",\"publisher\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/#organization\"}}]}\n\t\t<\/script>\n\t\t<!-- All in One SEO -->\n\n","aioseo_head_json":{"title":"Tag Snapshot using Backup_Monkey | TO THE NEW Blog","description":"In continuation with my previous article EBS Snapshot using Backup_Monkey, we have discussed one issue associated with BackUp Monkey utility. The issue was that it use's \"BACKUP_MONKEY\" prefix and tag the snapshot with this prefix. As you can see in the Description, BACKUP_MONKEY prefix is used. So this create's a redundancy while finding the exact","canonical_url":"https:\/\/2thenew.xyz\/blog\/tag-snapshot-using-backup_monkey\/","robots":"max-image-preview:large","keywords":"","webmasterTools":{"miscellaneous":""},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/2thenew.xyz\/blog\/tag-snapshot-using-backup_monkey\/#article","name":"Tag Snapshot using Backup_Monkey | TO THE NEW Blog","headline":"Tag Snapshot using Backup_Monkey","author":{"@id":"https:\/\/2thenew.xyz\/blog\/author\/vikash-jha\/#author"},"publisher":{"@id":"https:\/\/2thenew.xyz\/blog\/#organization"},"image":{"@type":"ImageObject","url":"\/blog\/wp-ttn-blog\/uploads\/2014\/04\/backup4.png","@id":"https:\/\/2thenew.xyz\/blog\/tag-snapshot-using-backup_monkey\/#articleImage"},"datePublished":"2014-04-14T11:02:51+05:30","dateModified":"2014-04-14T11:02:51+05:30","inLanguage":"en-US","mainEntityOfPage":{"@id":"https:\/\/2thenew.xyz\/blog\/tag-snapshot-using-backup_monkey\/#webpage"},"isPartOf":{"@id":"https:\/\/2thenew.xyz\/blog\/tag-snapshot-using-backup_monkey\/#webpage"},"articleSection":"Technology, EBS, python"},{"@type":"BreadcrumbList","@id":"https:\/\/2thenew.xyz\/blog\/tag-snapshot-using-backup_monkey\/#breadcrumblist","itemListElement":[{"@type":"ListItem","@id":"https:\/\/2thenew.xyz\/blog#listItem","position":1,"name":"Home","item":"https:\/\/2thenew.xyz\/blog","nextItem":{"@type":"ListItem","@id":"https:\/\/2thenew.xyz\/blog\/category\/technology\/#listItem","name":"Technology"}},{"@type":"ListItem","@id":"https:\/\/2thenew.xyz\/blog\/category\/technology\/#listItem","position":2,"name":"Technology","item":"https:\/\/2thenew.xyz\/blog\/category\/technology\/","nextItem":{"@type":"ListItem","@id":"https:\/\/2thenew.xyz\/blog\/tag-snapshot-using-backup_monkey\/#listItem","name":"Tag Snapshot using Backup_Monkey"},"previousItem":{"@type":"ListItem","@id":"https:\/\/2thenew.xyz\/blog#listItem","name":"Home"}},{"@type":"ListItem","@id":"https:\/\/2thenew.xyz\/blog\/tag-snapshot-using-backup_monkey\/#listItem","position":3,"name":"Tag Snapshot using Backup_Monkey","previousItem":{"@type":"ListItem","@id":"https:\/\/2thenew.xyz\/blog\/category\/technology\/#listItem","name":"Technology"}}]},{"@type":"Organization","@id":"https:\/\/2thenew.xyz\/blog\/#organization","name":"TO THE NEW Blog","url":"https:\/\/2thenew.xyz\/blog\/"},{"@type":"Person","@id":"https:\/\/2thenew.xyz\/blog\/author\/vikash-jha\/#author","url":"https:\/\/2thenew.xyz\/blog\/author\/vikash-jha\/","name":"Vikash Jha","image":{"@type":"ImageObject","@id":"https:\/\/2thenew.xyz\/blog\/tag-snapshot-using-backup_monkey\/#authorImage","url":"https:\/\/secure.gravatar.com\/avatar\/fa67f119919550cc9af23ac9542eb0ef48d4e69a6ad310fb29f55390d4662b36?s=96&d=mm&r=g","width":96,"height":96,"caption":"Vikash Jha"}},{"@type":"WebPage","@id":"https:\/\/2thenew.xyz\/blog\/tag-snapshot-using-backup_monkey\/#webpage","url":"https:\/\/2thenew.xyz\/blog\/tag-snapshot-using-backup_monkey\/","name":"Tag Snapshot using Backup_Monkey | TO THE NEW Blog","description":"In continuation with my previous article EBS Snapshot using Backup_Monkey, we have discussed one issue associated with BackUp Monkey utility. The issue was that it use's \"BACKUP_MONKEY\" prefix and tag the snapshot with this prefix. As you can see in the Description, BACKUP_MONKEY prefix is used. So this create's a redundancy while finding the exact","inLanguage":"en-US","isPartOf":{"@id":"https:\/\/2thenew.xyz\/blog\/#website"},"breadcrumb":{"@id":"https:\/\/2thenew.xyz\/blog\/tag-snapshot-using-backup_monkey\/#breadcrumblist"},"author":{"@id":"https:\/\/2thenew.xyz\/blog\/author\/vikash-jha\/#author"},"creator":{"@id":"https:\/\/2thenew.xyz\/blog\/author\/vikash-jha\/#author"},"datePublished":"2014-04-14T11:02:51+05:30","dateModified":"2014-04-14T11:02:51+05:30"},{"@type":"WebSite","@id":"https:\/\/2thenew.xyz\/blog\/#website","url":"https:\/\/2thenew.xyz\/blog\/","name":"TO THE NEW Blog","inLanguage":"en-US","publisher":{"@id":"https:\/\/2thenew.xyz\/blog\/#organization"}}]},"og:locale":"en_US","og:site_name":"TO THE NEW BLOG","og:type":"blog","og:title":"Tag Snapshot using Backup_Monkey | TO THE NEW Blog","og:description":"In continuation with my previous article EBS Snapshot using Backup_Monkey, we have discussed one issue associated with BackUp Monkey utility. The issue was that it use's &quot;BACKUP_MONKEY&quot; prefix and tag the snapshot with this prefix. As you can see in the Description, BACKUP_MONKEY prefix is used. So this create's a redundancy while finding the exact","og:url":"https:\/\/2thenew.xyz\/blog\/tag-snapshot-using-backup_monkey\/","og:image":"https:\/\/2thenew.xyz\/blog\/wp-content\/themes\/ttn\/images\/social-logo.png","og:image:secure_url":"https:\/\/2thenew.xyz\/blog\/wp-content\/themes\/ttn\/images\/social-logo.png","twitter:card":"summary","twitter:site":"@tothenew","twitter:title":"Tag Snapshot using Backup_Monkey | TO THE NEW Blog","twitter:description":"In continuation with my previous article EBS Snapshot using Backup_Monkey, we have discussed one issue associated with BackUp Monkey utility. The issue was that it use's &quot;BACKUP_MONKEY&quot; prefix and tag the snapshot with this prefix. As you can see in the Description, BACKUP_MONKEY prefix is used. So this create's a redundancy while finding the exact","twitter:image":"https:\/\/2thenew.xyz\/blog\/wp-content\/themes\/ttn\/images\/social-logo.png"},"aioseo_meta_data":{"post_id":"12904","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":"Article","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,"limit_modified_date":false,"created":"2021-04-29 12:59:38","updated":"2024-02-29 08:42:25","focus_keyword":null,"additional_keywords":null,"truseo_locale":null,"ai":null,"breadcrumb_settings":null,"seo_analyzer_scan_date":null},"aioseo_breadcrumb":"<div class=\"aioseo-breadcrumbs\"><span class=\"aioseo-breadcrumb\">\n\t\t\t<a href=\"https:\/\/2thenew.xyz\/blog\" 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=\"https:\/\/2thenew.xyz\/blog\/category\/technology\/\" title=\"Technology\">Technology<\/a>\n\t\t<\/span><span class=\"aioseo-breadcrumb-separator\">&raquo;<\/span><span class=\"aioseo-breadcrumb\">\n\t\t\tTag Snapshot using Backup_Monkey\n\t\t<\/span><\/div>","aioseo_breadcrumb_json":[{"label":"Home","link":"https:\/\/2thenew.xyz\/blog"},{"label":"Technology","link":"https:\/\/2thenew.xyz\/blog\/category\/technology\/"},{"label":"Tag Snapshot using Backup_Monkey","link":"https:\/\/2thenew.xyz\/blog\/tag-snapshot-using-backup_monkey\/"}],"_links":{"self":[{"href":"https:\/\/2thenew.xyz\/blog\/wp-json\/wp\/v2\/posts\/12904","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/2thenew.xyz\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/2thenew.xyz\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/2thenew.xyz\/blog\/wp-json\/wp\/v2\/users\/100"}],"replies":[{"embeddable":true,"href":"https:\/\/2thenew.xyz\/blog\/wp-json\/wp\/v2\/comments?post=12904"}],"version-history":[{"count":0,"href":"https:\/\/2thenew.xyz\/blog\/wp-json\/wp\/v2\/posts\/12904\/revisions"}],"wp:attachment":[{"href":"https:\/\/2thenew.xyz\/blog\/wp-json\/wp\/v2\/media?parent=12904"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/2thenew.xyz\/blog\/wp-json\/wp\/v2\/categories?post=12904"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/2thenew.xyz\/blog\/wp-json\/wp\/v2\/tags?post=12904"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}