Author: Neha Singh

aws

How to use EventBridge with API destination

Reading Time: 5 minutes Hello folks!!! In this article,we will learn how we can use EventBridge with API destination. First let us know what API destination is. With API destination features, eventbridge can integrate with services outside of aws by using rest API calls. API destinations are the third-party targets outside of aws that you can invoke with http request. Eventbridge invokes endpoints and delivers the event as a Continue Reading

aws

How to create an EventBridge application in python

Reading Time: 3 minutes Hello Readers!!! In this article, we will see how we can create an eventbridge application in python. First we will see create a python application that will send custom events to eventBridge. Then if rule matches, target will be invoked which would be lambda function in our case. And lambda will prints the event details in the cloud watch. Create an eventbridge project : 1.First Continue Reading

aws

How to create record in route 53 using boto3

Reading Time: 3 minutes Hello Readers!!! In this artical, we will see how we can create a record in route 53 using boto3. So, first we will see what route 53 is. Route 53 is a highly available and scalable DNS web service.It gives businesses and developers a cost-effective way to route end users to internet applications by translating the domain names into IP addresses. we need route 53 Continue Reading

How to setup Django Development Environment

Reading Time: 3 minutes Hello Readers!!! In this blog, we will see how to setup django development environment. But, at first we will see what is django and how we can install it. Django is a free and open-source web framework built with python and a framework is basically a collection of modules pre-written codes help with a particular task. Steps to install and set up development environment Step Continue Reading

aws

How to store ssh key from secret manager

Reading Time: 3 minutes Hello readers! In this blog we will see how to store ssh key from secret manager. Secret manager is a service that makes easy for customers to manage the life cycle of all of their secrets. It allows customers to easily rotate secrets without impacting applications or employees.It enables customer to tightly control who can do what with their secrets.This service ensure that all secrets Continue Reading

How to install splunk universal forwarder

Reading Time: 3 minutes Hello Readers! In this blog we will see how to install splunk universal forwarder. But first let us know what splunk universal forwarder is? In short, we call splunk universal forwarder, as splunk uf. It is a separate software package and is free to download where a license is not required. Steps to install: 1. First we have to download the software. Open your web browser Continue Reading

Classic Splunk Dashboard vs Splunk Dashboard App

Reading Time: 3 minutes Hello Readers! In this blog, we will see the difference between the Classic Splunk and Splunk Dashboard App. So first let us know, what dashboard is? It is are views that are make of panels. Panels can contain modules such as search boxes, fields, charts, tables, and lists. They are usually connect to reports after we create a search visualization or save a report. There Continue Reading

coding script

How to install splunk on Ubuntu

Reading Time: 3 minutes Hello Readers! In this blog we will see how to install splunk on Ubuntu operating system. Steps to install: 1. First we have to download the software. Open your web browser and search for it. Click the link to download https://www.splunk.com. 2. It will redirect us to the splunk, click on free Splunk. 3. You will redirect to the page below.You have to sign in, Continue Reading

gray laptop computer showing html codes in shallow focus photography

Introduction to Splunk

Reading Time: 3 minutes Hi everyone! In this blog, we will see the introduction to Splunk. But before explaining what is Splunk let us first know “why Splunk”? We use Splunk to accelerate digitalization, to ensure business resilience, and to meet the data opportunity of today and tomorrow. It is the only platform that allows you to investigate, monitor, analyze and act with any structure, any source, any time Continue Reading

aws

How to create IAM role for AWS lambda function

Reading Time: 3 minutes Hello everyone !!! Today in this blog we will see how we can create IAM role for AWS lambda function. But first let us know what IAM role is. IAM stands for Identity Access Management. It is a service from AWS by which we can permissions to different users who are using the same AWS account that you have created. Steps to create IAM role Continue Reading

SQS

How to create and delete queue from AWS SQS

Reading Time: 8 minutes Hello everyone! Today in this blog we will see how we can create a queue and how you can insert and delete a message from the queue and we will also see how we can delete a queue from AWS SQS. So first let us see what is SQS? It is a fully manage message queueing service that allow users to separate and scale the Continue Reading

How to create lambda function in AWS?

Reading Time: 3 minutes Introduction: In this blog, I will show you how to create lambda function. But first we will see what is lambda function.Lambda is a server light service on AWS where you can only pay for what you are going to use in terms of compute usage and so there is no charge when your code is not running.Lambda function is a small anonymous function. It Continue Reading

docker

How to connect two container from different compose files

Reading Time: 3 minutes Working with Docker containers allows us to create encapsulate applications that are independent of the host machine and contain all the necessary libraries and dependencies. Docker-compose is often use to configure and manage containers. When several containers are build in a docker-compose file, they are automatically connect to a common network and can communicate with each other.  In most cases, each project will have its own Continue Reading