UrbanPro
true
Anurag Sharma Salesforce Administrator trainer in Jaipur

Anurag Sharma

Santosh Nagar Jaipur, Jaipur, India - 302019.

Verified

Book a Demo
Referral Discount: Get ₹ 500 off when you make a payment to start classes. Get started by Booking a Demo.

Details verified of Anurag Sharma

Identity

Education

Know how UrbanPro verifies Tutor details

Identity is verified based on matching the details uploaded by the Tutor with government databases.

Overview

I am a software Engineer currently working as a senior Salesforce Developer in vedsphere consultancy pvt ltd . I have 5+ years of experience in salesforce. I have worked in salesforce cloud,marketing cloud and salesforce CPQ.

Languages Spoken

Hindi Mother Tongue (Native)

English Proficient

Education

MIT, Shillong 2019

Bachelor of Technology (B.Tech.)

Address

Santosh Nagar Jaipur, Jaipur, India - 302019

Verified Info

ID Verified

Education Verified

Email Verified

Report this Profile

Is this listing inaccurate or duplicate? Any other problem?

Please tell us about the problem and we will fix it.

Please describe the problem that you see in this page.

Type the letters as shown below *

Please enter the letters as show below

Teaches

Salesforce Administrator Training

Class Location

Online Classes (Video Call via UrbanPro LIVE)

Student's Home

Tutor's Home

Reviews

No Reviews yet!

FAQs

1. Which classes do you teach?

I teach Salesforce Administrator Class.

2. Do you provide a demo class?

Yes, I provide a free demo class.

3. How many years of experience do you have?

I have been teaching for less than a year.

Answers by Anurag Sharma (1)

Answered 19 hrs ago Learn IT Courses

## Understanding and Writing Splunk Searches: Basic to Advanced SPL Queries ### Basics of Splunk Searches #### 1. **Search Command**The foundation of any SPL query. It retrieves events from the specified index. ```splindex=<index_name> search_term```Example:```splindex=web_logs error``` ####... ...more

## Understanding and Writing Splunk Searches: Basic to Advanced SPL Queries

### Basics of Splunk Searches

#### 1. **Search Command**
The foundation of any SPL query. It retrieves events from the specified index.

```spl
index=<index_name> search_term
```
Example:
```spl
index=web_logs error
```

#### 2. **Fields and Filters**
Specify fields and apply filters to narrow down search results.

```spl
index=web_logs status=404
```

#### 3. **Time Range**
You can specify a time range using `earliest` and `latest`.

```spl
index=web_logs error earliest=-1h
```

### Intermediate SPL Queries

#### 1. **Stats Command**
The `stats` command is used to aggregate data.

```spl
index=web_logs | stats count by status
```

#### 2. **Table Command**
Use `table` to display specific fields.

```spl
index=web_logs | table _time, status, uri_path
```

#### 3. **Sort Command**
Sort results by a specific field.

```spl
index=web_logs | sort -_time
```

### Advanced SPL Queries

#### 1. **Eval Command**
The `eval` command creates new fields or transforms existing fields.

```spl
index=web_logs | eval status_code_group=if(status>=500, "5xx", "Other")
```

#### 2. **Timechart Command**
Use `timechart` for time-based data aggregation.

```spl
index=web_logs | timechart count by status
```

#### 3. **Join Command**
Join data from different searches.

```spl
index=web_logs | join type=inner user_id [search index=user_info | fields user_id, username]
```

#### 4. **Subsearches**
Execute a search within another search.

```spl
index=web_logs [search index=error_logs | return 100 _raw]
```

### Practical Examples

1. **Finding Top 10 Error URLs**

```spl
index=web_logs status=500 | stats count by uri_path | sort -count | head 10
```

2. **Average Response Time by Host**

```spl
index=web_logs | stats avg(response_time) by host
```

3. **Comparing Traffic Over Two Periods**

```spl
index=web_logs earliest=-30d@d latest=-15d@d | stats count as last_15_30_days
| appendcols [ search index=web_logs earliest=-15d@d latest=now | stats count as last_15_days ]
| eval percent_change=((last_15_days-last_15_30_days)/last_15_30_days)*100
```

### Tips for Effective SPL Queries

1. **Use Indexes Wisely:** Always start your search with the appropriate index to improve performance.
2. **Filter Early:** Apply filters early in your query to limit the amount of data Splunk has to process.
3. **Field Selection:** Use `fields` to include only necessary fields and improve search efficiency.
4. **Leverage Summary Indexing:** For large datasets, consider using summary indexing to store precomputed summaries.

Answers 7 Comments
Dislike Bookmark

Teaches

Salesforce Administrator Training

Class Location

Online Classes (Video Call via UrbanPro LIVE)

Student's Home

Tutor's Home

No Reviews yet!

Answers by Anurag Sharma (1)

Answered 19 hrs ago Learn IT Courses

## Understanding and Writing Splunk Searches: Basic to Advanced SPL Queries ### Basics of Splunk Searches #### 1. **Search Command**The foundation of any SPL query. It retrieves events from the specified index. ```splindex=<index_name> search_term```Example:```splindex=web_logs error``` ####... ...more

## Understanding and Writing Splunk Searches: Basic to Advanced SPL Queries

### Basics of Splunk Searches

#### 1. **Search Command**
The foundation of any SPL query. It retrieves events from the specified index.

```spl
index=<index_name> search_term
```
Example:
```spl
index=web_logs error
```

#### 2. **Fields and Filters**
Specify fields and apply filters to narrow down search results.

```spl
index=web_logs status=404
```

#### 3. **Time Range**
You can specify a time range using `earliest` and `latest`.

```spl
index=web_logs error earliest=-1h
```

### Intermediate SPL Queries

#### 1. **Stats Command**
The `stats` command is used to aggregate data.

```spl
index=web_logs | stats count by status
```

#### 2. **Table Command**
Use `table` to display specific fields.

```spl
index=web_logs | table _time, status, uri_path
```

#### 3. **Sort Command**
Sort results by a specific field.

```spl
index=web_logs | sort -_time
```

### Advanced SPL Queries

#### 1. **Eval Command**
The `eval` command creates new fields or transforms existing fields.

```spl
index=web_logs | eval status_code_group=if(status>=500, "5xx", "Other")
```

#### 2. **Timechart Command**
Use `timechart` for time-based data aggregation.

```spl
index=web_logs | timechart count by status
```

#### 3. **Join Command**
Join data from different searches.

```spl
index=web_logs | join type=inner user_id [search index=user_info | fields user_id, username]
```

#### 4. **Subsearches**
Execute a search within another search.

```spl
index=web_logs [search index=error_logs | return 100 _raw]
```

### Practical Examples

1. **Finding Top 10 Error URLs**

```spl
index=web_logs status=500 | stats count by uri_path | sort -count | head 10
```

2. **Average Response Time by Host**

```spl
index=web_logs | stats avg(response_time) by host
```

3. **Comparing Traffic Over Two Periods**

```spl
index=web_logs earliest=-30d@d latest=-15d@d | stats count as last_15_30_days
| appendcols [ search index=web_logs earliest=-15d@d latest=now | stats count as last_15_days ]
| eval percent_change=((last_15_days-last_15_30_days)/last_15_30_days)*100
```

### Tips for Effective SPL Queries

1. **Use Indexes Wisely:** Always start your search with the appropriate index to improve performance.
2. **Filter Early:** Apply filters early in your query to limit the amount of data Splunk has to process.
3. **Field Selection:** Use `fields` to include only necessary fields and improve search efficiency.
4. **Leverage Summary Indexing:** For large datasets, consider using summary indexing to store precomputed summaries.

Answers 7 Comments
Dislike Bookmark

Anurag Sharma conducts classes in Salesforce Administrator. Anurag is located in Santosh Nagar Jaipur, Jaipur. Anurag takes at students Home, Regular Classes- at his Home and Online Classes- via online medium. Anurag has completed Bachelor of Technology (B.Tech.) from MIT,Shillong in 2019. HeĀ is well versed in English and Hindi.

X

Share this Profile

Reply to 's review

Enter your reply*

1500/1500

Please enter your reply

Your reply should contain a minimum of 10 characters

Your reply has been successfully submitted.

Certified

The Certified badge indicates that the Tutor has received good amount of positive feedback from Students.

Different batches available for this Course

This website uses cookies

We use cookies to improve user experience. Choose what cookies you allow us to use. You can read more about our Cookie Policy in our Privacy Policy

Accept All
Decline All

UrbanPro.com is India's largest network of most trusted tutors and institutes. Over 55 lakh students rely on UrbanPro.com, to fulfill their learning requirements across 1,000+ categories. Using UrbanPro.com, parents, and students can compare multiple Tutors and Institutes and choose the one that best suits their requirements. More than 7.5 lakh verified Tutors and Institutes are helping millions of students every day and growing their tutoring business on UrbanPro.com. Whether you are looking for a tutor to learn mathematics, a German language trainer to brush up your German language skills or an institute to upgrade your IT skills, we have got the best selection of Tutors and Training Institutes for you. Read more