What is Error Budget?

An error budget is the agreed-upon amount of unreliability downtime, or failure a system can experience within a specific period before users are noticeably impacted or targets are broken.  It is a core concept in Site Reliability Engineering (SRE) used to balance the speed of shipping new features with system stability. 📊 How It Works…

Read More
PHP CURL on Proxy Server

How to use CURL with Proxy

This post will be demonstrating how to use curl with proxy in PHP and Linux command line. What is additional parameter we need to pass while using curl via proxy. So I am starting with proxy configuration in PHP curl. 1) PHP curl with proxy $url = ‘http://localhost/path/to/file.php’; $proxy = ‘127.0.0.2:3128’; $ch = curl_init(); curl_setopt($ch,…

Read More

Install Elasticsearch using Repositories

Install Elasticsearch using Repositories You can easily install Elasticsearch using APT and YUM repository – Install Elasticsearch Using APT repository – Install Elasticsearch Using Yum repository Install Elasticsearch 5.0 on Debian: Step 1: Download and Install Elasticsearch Public signin key wget -qO – https://artifacts.elastic.co/GPG-KEY-elasticsearch | sudo apt-key add – Step 2: Installation using APT Repository…

Read More

How to Install Maven on Linux

This article will help you to install Maven on Linux Operating System. What is Apache Maven? Apache Maven is a software project management and comprehension tool. Based on the concept of a project object model (POM), Maven can manage a project’s build, reporting and documentation from a central piece of information. Prerequisites:  Maven 3.3 requires…

Read More
Verified by MonsterInsights