All Apps and Add-ons

Splunk Java SDK How to get Email ID of current User.

disha
Contributor

Hi,
I am not very comfortable in java. So Asking this help. This could be very easy and straight for regular java users.
Scenario:
I am connecting to Splunk and Running oneshot search and I need to send email to User as notification.
I figured out like User.getEmail() will give me email of current user. But I cannot fit this in my Code.Please help where I am doing wrong.

import java.io.*;
import java.util.HashMap;

import com.splunk.*; // The entry point to the client library

public class SplunkConnect {

public static void main(String[] args) {

    // Create a map of arguments and add login parameters
    Args loginArgs = new Args();
    loginArgs.add("username", "admin");
    loginArgs.add("password", "password");
    loginArgs.add("host", "localhost");
    loginArgs.add("port", 8089);

     Create a Service instance and log in with the argument map
    Service service = Service.connect(loginArgs);
    String user= service.getUsername();
    String email=service.User.getEmail();
   System.out.println("The current user is " + user);
   System.out.println("The current user email is " + email);

Please suggest the correct way of calling getUser().
Thanks in Advance.
-Disha

Tags (1)
0 Karma

psanford_splunk
Splunk Employee
Splunk Employee

Hi - this page might be helpful for you:

http://dev.splunk.com/view/SP-CAAAEJ7

It talks about how to get the user object.

0 Karma
Get Updates on the Splunk Community!

Strengthen Your Future: A Look Back at Splunk 10 Innovations and .conf25 Highlights!

The Big One: Splunk 10 is Here!  The moment many of you have been waiting for has arrived! We are thrilled to ...

Now Offering the AI Assistant Usage Dashboard in Cloud Monitoring Console

Today, we’re excited to announce the release of a brand new AI assistant usage dashboard in Cloud Monitoring ...

Stay Connected: Your Guide to October Tech Talks, Office Hours, and Webinars!

What are Community Office Hours? Community Office Hours is an interactive 60-minute Zoom series where ...