GithubHelp home page GithubHelp logo

michaeljamesparsons / splunk-cloud-sdk-js Goto Github PK

View Code? Open in Web Editor NEW

This project forked from splunk/splunk-cloud-sdk-js

0.0 1.0 0.0 913 KB

The Splunk Cloud SDK for JavaScript, contains libraries for building apps for the Splunk Cloud Platform.

Home Page: https://sdc.splunkbeta.com/

License: Apache License 2.0

JavaScript 0.54% Shell 0.47% Dockerfile 0.05% TypeScript 98.89% Makefile 0.05%

splunk-cloud-sdk-js's Introduction

Splunk Cloud SDK for JavaScript

Conventional Commits Commitizen friendly

The Splunk Cloud software development kit (SDK) for JavaScript contains library code and examples to enable you to build apps using the Splunk Cloud services with the JavaScript programming language.

To use the Splunk Cloud SDKs, you must be included in the Splunk Investigates Beta Program. Sign up here: https://si.scp.splunk.com/.

Terms of Service (TOS)

Log in to Splunk Investigate and accept the Terms of Service when prompted.

Get started

Install the SDK

Install the SDK to enable your app project to interact with Splunk Cloud services.

Run the following command from your project directory:

npm install @splunkdev/cloud-sdk

Example usage

This example shows how to use one service client to access all supported services:

require('isomorphic-fetch'); // or a fetch polyfill of your choosing

const { SplunkCloud } = require('@splunkdev/cloud-sdk');

const svc = new SplunkCloud({ tokenSource: AUTH_TOKEN, defaultTenant: TENANT });

// Retrieve the datasets for this tenant from the Catalog service
svc.catalog.getDatasets();

// Run a search on the "main" index
svc.search.createJob({ "query": "| from index:main | head 5" });

...

If your app needs to work with one specific service, use a specific client for only the required service as follows:

require('isomorphic-fetch'); // or a fetch polyfill of your choosing

const { IdentityService } = require('@splunkdev/cloud-sdk/services/identity');

const ENDPOINT_URL = "https://api.scp.splunk.com";

const identity = new IdentityService(ENDPOINT_URL, AUTH_TOKEN, TENANT);

// Get the user profile from the Identity API
identity.getPrincipal(PRINCIPAL_NAME);

...

Documentation

For general documentation, see the Splunk Developer Cloud Portal.

For reference documentation, see the Splunk Cloud SDK for JavaScript API Reference.

Contributing

Do not directly edit any source file in the /src/generated directory because these files were generated from service specifications.

Contact

If you have questions, reach out to us on Slack in the #sdc channel or email us at [email protected].

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.