Skip to main content

Posts

Showing posts from 2019

Splunk : queries

1.SPL Keywords  By |  As  | over  | where |  or | 2.Command chaining index ="AirBNB" | where Price > 40 index="AirBnB" Neighborhood Queens "Property Type"= Apartment |  where  Price >70 or Price =65 ________________________________________________________________ 3.SPL Filtering and Modifying  Field Search Rename Fields : Add/Subtract fields that we want to show in our search index="AirBnB Neighborhood =Queens "Property Type"= Apartment | field -bed index="AirBnB Neighborhood =Queens "Property Type"= Apartment | field +bed,price search  : searches for raw text index="AirBnB Neighborhood =Queens "Property Type"= Apartment | search large rename : rename a field for raw text index="AirBnB Neighborhood =Queens "Property Type"= Apartment | search large | rename Price as Cost ___________________________________________________...

Understanding JMX, Spring JMX

What is JMX ? Provides an architecture to manage resources dynamically at runtime. JMX is used mostly in enterprise applications to make system configurable or to get the state of application   At any point of time .Because the JMX technology is dynamic ,you can use it to monitor and manage resources as they are created, installed and implemented .You can also use the JMX technology to monitor And manage the JVM. What can you do with  JMX ? Manage resourses Manage JVM What are components of  MX ? The JMX technology can be divided into three levels, as follows: Instrumentation JMX agent - Mbean Server Remote management Instrumentation To manage resources using the JMX technology, you must first instrument the resources in the Java programming language. You use Java objects known as  MBeans  to implement the access to the resources' instrumentation. MBeans must follow the design patterns and interfaces defined ...

ESRI-latest

What is ArcGIS Online? ArcGIS Online  is a  cloud-based mapping and analysis solution.  Use it to  Make maps,  Analyze data, and to share and collaborate.  Get access to workflow-specific apps, maps and data from around the globe, and tools for being mobile in the field. Your data and maps are stored in a secure and private infrastructure and can be configured to meet your mapping a requirements. https://doc.arcgis.com/en/arcgis-online/reference/what-is-agol.htm 1.Get started with Maps? Choose base maps maps,  Add layers Change Styles Configure popups  Save Map 2.Get started with Scenes? Choose global or local scene Switch basemap Add layers  Configure Content Capture slides Save scene https://doc.arcgis.com/en/arcgis-online/get-started/get-started-with-scenes.htm http://bhuvan.nrsc.gov.in/gis/thematic/index.php 3.Get started with apps Pick type of  app Build Map ,Scenes,Groups...

SPRING SECURITY

     < parent >          < groupId >org.springframework.boot</ groupId >          < artifactId >spring-boot-starter-parent</ artifactId >          < version >1.4.3.RELEASE</ version >      </ parent >        <!-- Add typical dependencies for a web application -->          <!-- Adds Tomcat and Spring MVC, along others, jackson-databind included transitively -->          < dependency >              < groupId >org.springframework.boot</ groupId >              < artifactId >spring-boot-starter-web</ artifactId > ...