how to get email notification while created new user in splunk server - splunk

"how to get email notification while created new user in splunk web server,
that
receipts should get notification that user has been created for you.
I am using splunk enterprise 9.0.

This currently is not a feature of Splunk. Go to https://ideas.splunk.com to make a case for it.

Related

Is there a way to log in with Stripe, then send the corresponding customer data to a server?

I am designing an application with Stripe. So far, I am using payment links and the customer portal so users can edit their subscription. I am trying to create a server (expressjs) that returns a webpage if the user has a subscription.
I am considering using the authentication capibilities of Supabase or Firebase and let the user log in that way. But since I am already using two no-code solutions from Stripe, is there a way to log the user in and send their subscription status to my express server using only tools from Stripe? I am wondering if there is a simpler, cheaper, and more secure solution than implementing a solution in Supabase.

Is there a way to send Data from Splunk to Salesforce?

I need some help and guidance related to sending data from SPLUNK to Salesforce.
Basically, I am trying to extract few features and information from Splunk dashboard and I need to send that data to salesforce while creating a case. Such that the case is created with all those details automatically with the single click of the submit button from SPLUNK dashboard.
I read/tried the SPLUNK add on for Salesforce, however, this is more about pulling the salesforce data to SPLUNK but not about pushing the data from SPlUNK to salesforce.
Could you please guide me, how can we achieve this?
You can use Splunk Alert Actions to trigger an action against a Salesforce REST endpoint or webhook.
Refer to https://docs.splunk.com/Documentation/AddonBuilder/3.0.2/UserGuide/CreateAlertActions if you wish to use the Splunk Add-On builder, or https://docs.splunk.com/Documentation/Splunk/latest/Alert/Configuringscriptedalerts if you are comfortable coding it yourself.
A summary of the process can be found at https://simonduff.net/splunk_alert_script/
Can you share what Salesforce API you are trying to interact with and what information you wish to provide it. It may just be as simple as creating a particular URL, rather than using REST to post information to it.

Online user for a period in Openfire

In Openfire admin console "online user" details are available but I am unable to retrieve active users for a specific duration (like last 7 days or 30 days).
I am able to get the session table (fpsession) in database but the user count is not changing in database when users are connecting or session is closed.
Please suggest.
Openfire doesn't provide such service metrices. And fpsession table is used by Fast Path Plugin, which is again out of context.
You might consider using analytics on mobile side for such stats or else you customize Openfire to log data to a table or to a file whenever a user logs in and later-on you can perform analytics on that data. But that are totally custom business requirements.

send notification to a particular user with notification hub - Azure and GCM

I am a software developer in Xamarin - Android, I want to create notification messages. For this purpose I use Azure notification hub, combined with Google's service - Google Cloud Messaging (GCM).
My problem comes when I want to send notification to a particular user. I realized that I need to use the "TAGS" When I compose a new user to the system (Uniqe TAG)
Indeed, it works great, but when the user logged off his account, and then connect to another one (with another TAGS) - the TAGS of his old account are kept in a certain time, and he continues to receive personal messages from the previous account!!!!
Does anyone know what can be done about it?
thank you very much
This is actually an issue a lot of people/apps have on iOS and Android.
What you should do is:
Register your app at your Azure Notification Hub (ANH) on first start and reregister at every app start, to keep registration in sync
If a user logs in, update the registration with an additional tag for this user (e.g. "user:XY")
Sending notifications to that user tag will of course result in notifications on all devices the user is logged in on
If a user logs out, update the registration without the user tag (omit the user tag, so the registration doesn't have user tag anymore afterwards)
The registration will be updated immediately on ANH and sending notifications to the user (tag) will not result in notifications on that specific client
If the user can logout on your app without internet connection, you won't be able to update the registration of course and you will still have the problem of getting notifications for a logged out user. But as soon as another user logs in, the registration should get updated with the new user tag and everything should be fine again...
What you shouldn't do:
"Developers should never unregister the client app as a mechanism for logout or for switching between users..."

How to send push notification according to dateTime which is stored in database?

I need conceptual help.
I've a web application in asp.net MVC that create schedule (just like reminder application) according to date time and store this information in database. Now I would like to send message to user on that date and time(not manually.
Users means mobile phone app (My created app) user, phone will receive push. user not concerned about my web application it a control panel.
Usually i send push notification manually to user device by running a script from web application, It can send instant notification but i need to send it according to time schedule automatically.
How can i do this???
You need a task scheduling library for web application. define a task and run task in background for sending notification in desired intervals. For more info read this post by Scot Hanselman.
Here is top 20 NuGet packages for tasks.