{"id":42610,"date":"2016-11-30T10:16:44","date_gmt":"2016-11-30T04:46:44","guid":{"rendered":"https:\/\/tothenewco.pro\/blog\/?p=42610"},"modified":"2016-11-30T11:37:00","modified_gmt":"2016-11-30T06:07:00","slug":"how-to-set-up-log-io","status":"publish","type":"post","link":"https:\/\/tothenewco.pro\/blog\/how-to-set-up-log-io\/","title":{"rendered":"How to set up Log.io?"},"content":{"rendered":"<p>Logs are very useful as it monitors and provides important information about the program such as activities, executions, real-time data etc.<\/p>\n<p>Log.io is a <a title=\"devops consulting\" href=\"https:\/\/tothenewco.pro\/devops-chef-puppet-docker\" target=\"_blank\">log management tool<\/a> that monitors the system and provides real-time information on the system logs. It is a simple and effective application built on top of <strong><a title=\"Node.js Consulting\" href=\"https:\/\/tothenewco.pro\/mean-node-js-development-consulting\" target=\"_blank\">Node.js<\/a>\u00a0<\/strong>and<strong> Socket.io<\/strong>. Log.io is not used to store, archive or index log messages, or provide information on the historical or aggregate analysis.<\/p>\n<p><img loading=\"lazy\" decoding=\"async\" class=\"size-full wp-image-42714 aligncenter\" src=\"\/blog\/wp-ttn-blog\/uploads\/2016\/11\/logio-banner.png\" alt=\"logio-banner\" width=\"520\" height=\"422\" srcset=\"https:\/\/tothenewco.pro\/blog\/wp-content\/uploads\/2016\/11\/logio-banner.png 520w, https:\/\/tothenewco.pro\/blog\/wp-content\/uploads\/2016\/11\/logio-banner-300x243.png 300w\" sizes=\"auto, (max-width: 520px) 100vw, 520px\" \/><br \/>\nNow, let&#8217;s install Log.io and see how it works. Before the installation, let&#8217;s first understand the architecture of Log.io<\/p>\n<p><img loading=\"lazy\" decoding=\"async\" class=\"aligncenter wp-image-42717 size-full\" src=\"\/blog\/wp-ttn-blog\/uploads\/2016\/11\/logio-architecture.png\" alt=\"logio-architecture\" width=\"462\" height=\"244\" srcset=\"https:\/\/tothenewco.pro\/blog\/wp-content\/uploads\/2016\/11\/logio-architecture.png 462w, https:\/\/tothenewco.pro\/blog\/wp-content\/uploads\/2016\/11\/logio-architecture-300x158.png 300w\" sizes=\"auto, (max-width: 462px) 100vw, 462px\" \/><\/p>\n<p><strong>Harvesters<\/strong>\u00a0monitors the log files and look for new changes, \u00a0sends messages about the new log files to the <strong>server<\/strong>, which are then broadcasted to the\u00a0<strong>web browsers<\/strong>. Log messages are tagged with a stream, node, and log level information based on user configuration.<\/p>\n<p>Log.io has no persistence layer i.e. file changes are informed via inotify, and log messages flow from harvester to server to web\u00a0browser via TCP and Socket.io, respectively.<\/p>\n<p><strong>Steps to install and getting started with Log.io<\/strong><\/p>\n<ol>\n<li>Install latest version of<strong>\u00a0<a title=\" Node.js development services\" href=\"https:\/\/tothenewco.pro\/mean-node-js-development-consulting\" target=\"_blank\">Node.js<\/a><\/strong>\n<p>[js]<br \/>\n\tsudo add-apt-repository ppa:chris-lea\/node<br \/>\n\tsudo apt-get update<br \/>\n\tsudo apt-get install nodejs<br \/>\n[\/js]<\/p>\n<\/li>\n<li>Install<strong> rpm<\/strong>\n<p>[js]<br \/>\ncurl -sL https:\/\/deb.nodesource.com\/setup_6.x | sudo -E bash &#8211;<br \/>\n[\/js]<\/p>\n<\/li>\n<li>Installing <strong>Log.io<\/strong>\n<p>[js]<br \/>\n\tsudo npm config set unsafe-perm true<br \/>\n\tsudo npm install -g &#8211;prefix=\/usr\/local log.io<br \/>\n[\/js]<\/p>\n<\/li>\n<li>All the files will be stored inside \/usr\/local\/lib\/node_modules\/log.io<\/li>\n<li>Now going inside ~\/.log.io directory\n<ul>\n<li>3 new conf. files would be present\n<ul>\n<li><strong>harvester.conf\u00a0<\/strong>configuring server name and log files path\n<p>[js]<br \/>\n    exports.config = {<br \/>\n  \t\t\tnodeName: &quot;application_server&quot;,<br \/>\n  \t\t\tlogStreams: {<br \/>\n    \t\t\t\tsyslogs: [&quot;\/var\/log\/syslog&quot;]<br \/>\n  \t\t\t\t},<br \/>\n  \t\t\tserver: {<br \/>\n    \t\t\t\thost: &#8216;0.0.0.0&#8217;,<br \/>\n    \t\t\t\tport: 28777<br \/>\n  \t\t\t\t}<br \/>\n\t\t}<br \/>\n    [\/js]<\/p>\n<\/li>\n<li><strong>log_server.conf<\/strong>\n<p>[js]<br \/>\n      exports.config = {<br \/>\n  \t\t\thost: &#8216;0.0.0.0&#8217;, \/\/Listens to every machine<br \/>\n  \t\t\tport: 28777<br \/>\n\t\t}<br \/>\n      [\/js]<\/p>\n<\/li>\n<li><strong>web_server.conf<\/strong>\n<p>[js]<br \/>\n    exports.config = {<br \/>\n        host: &#8216;0.0.0.0&#8217;,<br \/>\n        port: 28778,<\/p>\n<p>        \/*<br \/>\n        \/\/ Enable HTTP Basic Authentication<br \/>\n        auth: {<br \/>\n          user: &quot;admin&quot;,<br \/>\n          pass: &quot;1234&quot;<br \/>\n        },<br \/>\n        *\/<\/p>\n<p>        \/*<br \/>\n        \/\/ Enable HTTPS\/SSL<br \/>\n        ssl: {<br \/>\n          key: &#8216;\/path\/to\/privatekey.pem&#8217;,<br \/>\n          cert: &#8216;\/path\/to\/certificate.pem&#8217;<br \/>\n        },<br \/>\n        *\/<\/p>\n<p>        \/*<br \/>\n        \/\/ Restrict access to websocket (socket.io)<br \/>\n        \/\/ Uses socket.io &#8216;origins&#8217; syntax<br \/>\n        restrictSocket: &#8216;*:*&#8217;,<br \/>\n        *\/<\/p>\n<p>        \/*<br \/>\n        \/\/ Restrict access to http server (express)<br \/>\n        restrictHTTP: [<br \/>\n          &quot;192.168.29.39&quot;,<br \/>\n          &quot;10.0.*&quot;<br \/>\n        ]<br \/>\n        *\/<br \/>\n      }<br \/>\n    [\/js]<\/p>\n<\/li>\n<\/ul>\n<\/li>\n<\/ul>\n<\/li>\n<li>Now we can start <strong>log.io-server and log.io-harvester<\/strong>\n<p>[js]<br \/>\nnohup\u00a0log.io-server &amp;<br \/>\nnohup\u00a0log.io-harvester &amp;<br \/>\n[\/js]<\/p>\n<\/li>\n<li>Now our log.io-server will run on 28778 and can be accessed by browsing<strong><strong> localhost:28778<\/strong><\/strong><strong><strong><img loading=\"lazy\" decoding=\"async\" class=\"alignnone size-full wp-image-42728\" src=\"\/blog\/wp-ttn-blog\/uploads\/2016\/11\/logio-example.png\" alt=\"logio example\" width=\"1301\" height=\"654\" srcset=\"https:\/\/tothenewco.pro\/blog\/wp-content\/uploads\/2016\/11\/logio-example.png 1301w, https:\/\/tothenewco.pro\/blog\/wp-content\/uploads\/2016\/11\/logio-example-300x150.png 300w, https:\/\/tothenewco.pro\/blog\/wp-content\/uploads\/2016\/11\/logio-example-1024x514.png 1024w, https:\/\/tothenewco.pro\/blog\/wp-content\/uploads\/2016\/11\/logio-example-624x313.png 624w\" sizes=\"auto, (max-width: 1301px) 100vw, 1301px\" \/><\/strong><\/strong>The above steps\u00a0will help you to set-up a\u00a0colorful logging dashboard for real-time current logs within 5 minutes.<\/li>\n<\/ol>\n<p>Here is another blog about using <a title=\"amazon devops\" href=\"https:\/\/tothenewco.pro\/blog\/amazon-elasticsearch-for-centralized-log-management\/\" target=\"_blank\">Amazon Elasticsearch with Amazon Cloudwatch to setup centralized logs<\/a>, which can be done by using Amazon ElasticSearch and CloudWatch services.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Logs are very useful as it monitors and provides important information about the program such as activities, executions, real-time data etc. Log.io is a log management tool that monitors the system and provides real-time information on the system logs. It is a simple and effective application built on top of Node.js\u00a0and Socket.io. Log.io is not [&hellip;]<\/p>\n","protected":false},"author":919,"featured_media":0,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"iawp_total_views":50,"footnotes":""},"categories":[1174,2348,1185,1],"tags":[4246,1892,4261,4247,288,1782,1124,4245,4258],"class_list":["post-42610","post","type-post","status-publish","format-standard","hentry","category-aws-2","category-devops-technology","category-node-js-2","category-technology","tag-current-logs","tag-devops","tag-harvesters","tag-log-io","tag-logging","tag-logs","tag-node-js","tag-real-time-logs","tag-socket-io"],"aioseo_notices":[],"aioseo_head":"\n\t\t<!-- All in One SEO 5.0.0.1 - aioseo.com -->\n\t<meta name=\"description\" content=\"Log.io is a log managment tool that keeps a track of your system and provides real-time log monitoring in your browser\" \/>\n\t<meta name=\"robots\" content=\"max-image-preview:large\" \/>\n\t<meta name=\"author\" content=\"Anup Yadav\"\/>\n\t<link rel=\"canonical\" href=\"https:\/\/tothenewco.pro\/blog\/how-to-set-up-log-io\/\" \/>\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=\"How to set up Log.io? | TO THE NEW Blog\" \/>\n\t\t<meta property=\"og:description\" content=\"Log.io is a log managment tool that keeps a track of your system and provides real-time log monitoring in your browser\" \/>\n\t\t<meta property=\"og:url\" content=\"https:\/\/tothenewco.pro\/blog\/how-to-set-up-log-io\/\" \/>\n\t\t<meta property=\"og:image\" content=\"https:\/\/tothenewco.pro\/blog\/wp-content\/themes\/ttn\/images\/social-logo.png\" \/>\n\t\t<meta property=\"og:image:secure_url\" content=\"https:\/\/tothenewco.pro\/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=\"How to set up Log.io? | TO THE NEW Blog\" \/>\n\t\t<meta name=\"twitter:description\" content=\"Log.io is a log managment tool that keeps a track of your system and provides real-time log monitoring in your browser\" \/>\n\t\t<meta name=\"twitter:image\" content=\"https:\/\/tothenewco.pro\/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\\\/how-to-set-up-log-io\\\/#article\",\"name\":\"How to set up Log.io? | TO THE NEW Blog\",\"headline\":\"How to set up Log.io?\",\"author\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/author\\\/anup-yadav\\\/#author\"},\"publisher\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/#organization\"},\"image\":{\"@type\":\"ImageObject\",\"url\":\"\\\/blog\\\/wp-ttn-blog\\\/uploads\\\/2016\\\/11\\\/logio-banner.png\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/how-to-set-up-log-io\\\/#articleImage\"},\"datePublished\":\"2016-11-30T10:16:44+05:30\",\"dateModified\":\"2016-11-30T11:37:00+05:30\",\"inLanguage\":\"en-US\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/how-to-set-up-log-io\\\/#webpage\"},\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/how-to-set-up-log-io\\\/#webpage\"},\"articleSection\":\"AWS, DevOps, Node.js, Technology, current logs, devops, Harvesters, log.io, logging, Logs, node.js, real-time logs, socket.io\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/how-to-set-up-log-io\\\/#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\\\/how-to-set-up-log-io\\\/#listItem\",\"name\":\"How to set up Log.io?\"},\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog#listItem\",\"name\":\"Home\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/how-to-set-up-log-io\\\/#listItem\",\"position\":3,\"name\":\"How to set up Log.io?\",\"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\\\/anup-yadav\\\/#author\",\"url\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/author\\\/anup-yadav\\\/\",\"name\":\"Anup Yadav\",\"image\":{\"@type\":\"ImageObject\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/how-to-set-up-log-io\\\/#authorImage\",\"url\":\"https:\\\/\\\/newersworld-sf-static.tothenew.net\\\/prod\\\/profilePicFolder\\\/d9863cea-6470-4cd7-9d4e-3815482898df_anup.yadav@tothenew.com.jpg\",\"width\":96,\"height\":96,\"caption\":\"Anup Yadav\"}},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/how-to-set-up-log-io\\\/#webpage\",\"url\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/how-to-set-up-log-io\\\/\",\"name\":\"How to set up Log.io? | TO THE NEW Blog\",\"description\":\"Log.io is a log managment tool that keeps a track of your system and provides real-time log monitoring in your browser\",\"inLanguage\":\"en-US\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/#website\"},\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/how-to-set-up-log-io\\\/#breadcrumblist\"},\"author\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/author\\\/anup-yadav\\\/#author\"},\"creator\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/author\\\/anup-yadav\\\/#author\"},\"datePublished\":\"2016-11-30T10:16:44+05:30\",\"dateModified\":\"2016-11-30T11:37:00+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":"How to set up Log.io? | TO THE NEW Blog","description":"Log.io is a log managment tool that keeps a track of your system and provides real-time log monitoring in your browser","canonical_url":"https:\/\/tothenewco.pro\/blog\/how-to-set-up-log-io\/","robots":"max-image-preview:large","keywords":"","webmasterTools":{"miscellaneous":""},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/tothenewco.pro\/blog\/how-to-set-up-log-io\/#article","name":"How to set up Log.io? | TO THE NEW Blog","headline":"How to set up Log.io?","author":{"@id":"https:\/\/tothenewco.pro\/blog\/author\/anup-yadav\/#author"},"publisher":{"@id":"https:\/\/tothenewco.pro\/blog\/#organization"},"image":{"@type":"ImageObject","url":"\/blog\/wp-ttn-blog\/uploads\/2016\/11\/logio-banner.png","@id":"https:\/\/tothenewco.pro\/blog\/how-to-set-up-log-io\/#articleImage"},"datePublished":"2016-11-30T10:16:44+05:30","dateModified":"2016-11-30T11:37:00+05:30","inLanguage":"en-US","mainEntityOfPage":{"@id":"https:\/\/tothenewco.pro\/blog\/how-to-set-up-log-io\/#webpage"},"isPartOf":{"@id":"https:\/\/tothenewco.pro\/blog\/how-to-set-up-log-io\/#webpage"},"articleSection":"AWS, DevOps, Node.js, Technology, current logs, devops, Harvesters, log.io, logging, Logs, node.js, real-time logs, socket.io"},{"@type":"BreadcrumbList","@id":"https:\/\/tothenewco.pro\/blog\/how-to-set-up-log-io\/#breadcrumblist","itemListElement":[{"@type":"ListItem","@id":"https:\/\/tothenewco.pro\/blog#listItem","position":1,"name":"Home","item":"https:\/\/tothenewco.pro\/blog","nextItem":{"@type":"ListItem","@id":"https:\/\/tothenewco.pro\/blog\/category\/technology\/#listItem","name":"Technology"}},{"@type":"ListItem","@id":"https:\/\/tothenewco.pro\/blog\/category\/technology\/#listItem","position":2,"name":"Technology","item":"https:\/\/tothenewco.pro\/blog\/category\/technology\/","nextItem":{"@type":"ListItem","@id":"https:\/\/tothenewco.pro\/blog\/how-to-set-up-log-io\/#listItem","name":"How to set up Log.io?"},"previousItem":{"@type":"ListItem","@id":"https:\/\/tothenewco.pro\/blog#listItem","name":"Home"}},{"@type":"ListItem","@id":"https:\/\/tothenewco.pro\/blog\/how-to-set-up-log-io\/#listItem","position":3,"name":"How to set up Log.io?","previousItem":{"@type":"ListItem","@id":"https:\/\/tothenewco.pro\/blog\/category\/technology\/#listItem","name":"Technology"}}]},{"@type":"Organization","@id":"https:\/\/tothenewco.pro\/blog\/#organization","name":"TO THE NEW Blog","url":"https:\/\/tothenewco.pro\/blog\/"},{"@type":"Person","@id":"https:\/\/tothenewco.pro\/blog\/author\/anup-yadav\/#author","url":"https:\/\/tothenewco.pro\/blog\/author\/anup-yadav\/","name":"Anup Yadav","image":{"@type":"ImageObject","@id":"https:\/\/tothenewco.pro\/blog\/how-to-set-up-log-io\/#authorImage","url":"https:\/\/newersworld-sf-static.tothenew.net\/prod\/profilePicFolder\/d9863cea-6470-4cd7-9d4e-3815482898df_anup.yadav@tothenew.com.jpg","width":96,"height":96,"caption":"Anup Yadav"}},{"@type":"WebPage","@id":"https:\/\/tothenewco.pro\/blog\/how-to-set-up-log-io\/#webpage","url":"https:\/\/tothenewco.pro\/blog\/how-to-set-up-log-io\/","name":"How to set up Log.io? | TO THE NEW Blog","description":"Log.io is a log managment tool that keeps a track of your system and provides real-time log monitoring in your browser","inLanguage":"en-US","isPartOf":{"@id":"https:\/\/tothenewco.pro\/blog\/#website"},"breadcrumb":{"@id":"https:\/\/tothenewco.pro\/blog\/how-to-set-up-log-io\/#breadcrumblist"},"author":{"@id":"https:\/\/tothenewco.pro\/blog\/author\/anup-yadav\/#author"},"creator":{"@id":"https:\/\/tothenewco.pro\/blog\/author\/anup-yadav\/#author"},"datePublished":"2016-11-30T10:16:44+05:30","dateModified":"2016-11-30T11:37:00+05:30"},{"@type":"WebSite","@id":"https:\/\/tothenewco.pro\/blog\/#website","url":"https:\/\/tothenewco.pro\/blog\/","name":"TO THE NEW Blog","inLanguage":"en-US","publisher":{"@id":"https:\/\/tothenewco.pro\/blog\/#organization"}}]},"og:locale":"en_US","og:site_name":"TO THE NEW BLOG","og:type":"blog","og:title":"How to set up Log.io? | TO THE NEW Blog","og:description":"Log.io is a log managment tool that keeps a track of your system and provides real-time log monitoring in your browser","og:url":"https:\/\/tothenewco.pro\/blog\/how-to-set-up-log-io\/","og:image":"https:\/\/tothenewco.pro\/blog\/wp-content\/themes\/ttn\/images\/social-logo.png","og:image:secure_url":"https:\/\/tothenewco.pro\/blog\/wp-content\/themes\/ttn\/images\/social-logo.png","twitter:card":"summary","twitter:site":"@tothenew","twitter:title":"How to set up Log.io? | TO THE NEW Blog","twitter:description":"Log.io is a log managment tool that keeps a track of your system and provides real-time log monitoring in your browser","twitter:image":"https:\/\/tothenewco.pro\/blog\/wp-content\/themes\/ttn\/images\/social-logo.png"},"aioseo_meta_data":{"post_id":"42610","title":null,"description":"Log.io is a log managment tool that keeps a track of your system and provides real-time log monitoring in your browser","keywords":null,"keyphrases":null,"primary_term":null,"canonical_url":null,"og_title":"","og_description":"","og_object_type":"blog","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":"","og_custom_url":null,"og_article_section":"","og_article_tags":"","twitter_use_og":false,"twitter_card":"summary","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 13:50:12","updated":"2024-02-29 08:53:55","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:\/\/tothenewco.pro\/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:\/\/tothenewco.pro\/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\tHow to set up Log.io?\n\t\t<\/span><\/div>","aioseo_breadcrumb_json":[{"label":"Home","link":"https:\/\/tothenewco.pro\/blog"},{"label":"Technology","link":"https:\/\/tothenewco.pro\/blog\/category\/technology\/"},{"label":"How to set up Log.io?","link":"https:\/\/tothenewco.pro\/blog\/how-to-set-up-log-io\/"}],"_links":{"self":[{"href":"https:\/\/tothenewco.pro\/blog\/wp-json\/wp\/v2\/posts\/42610","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/tothenewco.pro\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/tothenewco.pro\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/tothenewco.pro\/blog\/wp-json\/wp\/v2\/users\/919"}],"replies":[{"embeddable":true,"href":"https:\/\/tothenewco.pro\/blog\/wp-json\/wp\/v2\/comments?post=42610"}],"version-history":[{"count":0,"href":"https:\/\/tothenewco.pro\/blog\/wp-json\/wp\/v2\/posts\/42610\/revisions"}],"wp:attachment":[{"href":"https:\/\/tothenewco.pro\/blog\/wp-json\/wp\/v2\/media?parent=42610"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/tothenewco.pro\/blog\/wp-json\/wp\/v2\/categories?post=42610"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/tothenewco.pro\/blog\/wp-json\/wp\/v2\/tags?post=42610"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}