Splunk Search

Showing errors when try to send data to splunk cloud in reactjs but it's working fine with postman and curl in terminal?

Herry
New Member

Using fecth in reactjs:

fetch('https://[SUBDOMAIN].splunkcloud.com:8088/services/collector/event/1.0', {
method: 'POST',

headers: {
'Access-Control-Allow-Origin': 'application/json',
'Access-Control-Allow-Credentials': 'true',
'Access-Control-Allow-Methods': 'OPTIONS, GET, POST',
'Access-Control-Allow-Headers':
'Content-Type, Depth, User-Agent, X-File-Size, X-Requested-With, If-Modified-Since, X-File-Name, Cache-Control',
Accept: 'application/json',
'Content-Type': 'application/json',
Authorization: 'Splunk [TOKEN]'
},
body: JSON.stringify({
sourcetype: '_json',
index: 'main',
host: 'mydata2',
event: { foo: 'bar3', b: ['value1_3', 'value1_4'] }
})
})
.then((res) => res.json())
.then((json) => {
// eslint-disable-next-line no-console
console.log('json---->', json);
});

Screenshot-from-2021-10-11-17-55-45-png-1600×900-.png


Using splunk-logging in reactjs:

 import * as SplunkLogging from 'splunk-logging';

 


const SplunkLogger = SplunkLogging.Logger;

const config = {
token: [TOKEN],
url: '[URL]:8088'
};

// eslint-disable-next-line no-var
const Logger = new SplunkLogger(config);

Logger.requestOptions.strictSSL = true;

// eslint-disable-next-line no-var
const payload = {
// Message can be anything; doesn't have to be an object
message: {
temperature: '70F',
chickenCount: 500
}
};

console.info('Sending payload', payload);
Logger.send(payload, function (err, resp, body) {
// If successful, body will be { text: 'Success', code: 0 }
console.info('Response from Splunk', body);
});

 

'.png





Labels (1)
0 Karma

sxmudem
New Member

Is there any luck for above error.I am also seeing same error

0 Karma
Get Updates on the Splunk Community!

[Puzzles] Solve, Learn, Repeat: Dynamic formatting from XML events

This challenge was first posted on Slack #puzzles channelFor a previous puzzle, I needed a set of fixed-length ...

Enter the Agentic Era with Splunk AI Assistant for SPL 1.4

  🚀 Your data just got a serious AI upgrade — are you ready? Say hello to the Agentic Era with the ...

Stronger Security with Federated Search for S3, GCP SQL & Australian Threat ...

Splunk Lantern is a Splunk customer success center that provides advice from Splunk experts on valuable data ...