`

splunk test1

 
阅读更多

curl -k -u admin:changeme  https://localhost:8089/services/auth/login -d username=admin -d password=changeme

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

http://docs.splunk.com/Documentation/Splunk/6.6.2/RESTREF/RESTaccess#auth.2Flogin

 

 

<!DOCTYPE html>

<html lang="en">

<head>

    <meta charset="utf-8">

    <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">

    <title>Search Controls: Tokens</title>

 

    <link rel="stylesheet" type="text/css" href="static/splunkjs/css/bootstrap.css" />

    <style>

        .main-area {

            padding: 30px;

        }

    </style>

</head>

 

<body>

    <div>

        <div class="main-area">

            <p>This example shows how to set up SearchBar and SearchControls views using Django tags, and sync them with a SearchManager using tokens.</p>

            <p><b>Note:</b> The Timeline view can't be synced using tokens. Use events instead.</p>

 

            <div id="mysearchbar1"></div>

            <div id="mysearchcontrols1"></div>

            <div id="mytable1"></div>

        </div>

    </div>

 

    <script src="static/splunkjs/config.js"></script>

 

    <script>

        // Configure SplunkJS Stack

        splunkjs.config({

   scheme: 'https',

   host: '192.168.1.6',

   port: 8089,

   authenticate: {username: 'admin', password: 'abcd'},

});

        /* splunkjs.config({

            scheme: "https",

            host: "localhost",

            port: 8089,

            authenticate: function(done) { 

                require([

                    "jquery",

                    "jquery.cookie"

                ], function($) {

                    // Retrieve the session key and username from cookies

                    var splunkSessionKey = $.cookie("splunk_sessionkey");

                    var splunkCurrentUser = $.cookie("splunk_username");

 

                    // Log in using the session key and username

                    if (splunkSessionKey) {

                        done(null, {sessionKey: splunkSessionKey, username: splunkCurrentUser}); 

                    }

                    // If there is no session key, redirect to the login form

                    else {

                        window.location.replace("login_form.html");

                    }

                });

            }

        }); */

        

        // Configure the web site's base URL

        require.config({

            baseUrl: "static/"

        });

 

        // Set up the Web Framework components

        var deps = [

            "splunkjs/ready!",

            "splunkjs/mvc/searchmanager",

            "splunkjs/mvc/searchbarview",

            "splunkjs/mvc/searchcontrolsview",

            "splunkjs/mvc/tableview"

        ];

        require(deps, function(mvc) {

            // Load individual components

            var SearchManager = require("splunkjs/mvc/searchmanager");

            var SearchbarView = require("splunkjs/mvc/searchbarview");

            var SearchControlsView = require("splunkjs/mvc/searchcontrolsview");

            var TableView = require("splunkjs/mvc/tableview");

 

            // Create the search manager and views

            var mysearch = new SearchManager({

                id: "search1",

                search: mvc.tokenSafe("$searchquery$"),

                earliest_time: mvc.tokenSafe("$earlyval$"),

                latest_time: mvc.tokenSafe("$lateval$"),

                app: "search",

                preview: true,

                required_field_list: "*",

                status_buckets: 300

            });

 

            var mysearchbar = new SearchbarView({

                id: "searchbar1",

                managerid: "search1",

                value: mvc.tokenSafe("$searchquery$"),

                timerange_earliest_time: mvc.tokenSafe("$earlyval$"),

                timerange_latest_time: mvc.tokenSafe("$lateval$"),

                default: "index=_internal | head 100",

                el: $("#mysearchbar1")

            }).render();

 

            var mysearchcontrols = new SearchControlsView({

                id: "searchcontrols1",

                managerid: "search1",

                el: $("#mysearchcontrols1")

            }).render();

 

            var mytable = new TableView({

                id: "table1",

                managerid: "search1",

                el: $("#mytable1")

            }).render();

        });

    </script>

</body>

</html>

分享到:
评论

相关推荐

    Splunk 7 Essentials, 3rd Edition-Packt Publishing(2018)

    You will also have the opportunity to test drive Splunk's powerful HTTP event collector. After covering the core Splunk functionality, you'll be provided with some real-world best practices in using ...

    splunk-client:用于Ruby的Splunk REST API库

    require 'rubygems' require 'splunk-client'# Create the clientsplunk = SplunkClient.new("username", "password", "hostname")# Create the Searchsearch = splunk.search("test_search")# Wait for the S

    splunk-ref-pas-test:Splunk参考应用-可插拔审核系统(PAS)-测试仓库

    Splunk参考应用程序-PAS(Ember更新)-测试回购版本1.5.x Splunk参考应用程序-PAS教您... tests / PythonTest -Selenium测试以通过浏览器驱动应用程序。 测试/单元测试-C#中的替代Selenium测试。 tests / pas_sample_d

    Python库 | pytest_splunk_addon-1.2.5b1-py2.py3-none-any.whl

    result = search("search index=myapp * earliest=-1h latest=now") assert len(result) &gt; 0, "No logs found in the last hour." for event in result: assert "expected_key" in event, "Missing expected key...

    splunk-add-on-for-modinput-test

    https://&lt;splunk&gt;:&lt;managment&gt;/servicesNS/nobody/Splunk_TA_Modinput_Test/Splunk_TA_Modinput_Test_perform_crd_operation/&lt;entry&gt;/create 必需的参数: file_path :文件的路径以及文件名 数据:要写入文件的...

    fluent-plugin-splunk:Fluentd Splunk插件

    流利的插件-企业级企业 目录 安装 $ fluent-gem install fluent-plugin-splunk-enterprise Splunk HTTP事件收集器输出插件 Splunk TCP输入输出插件 ... $ SPLUNK_VERSION=&lt;splunk&gt; bundle exec rake test

    splunk_web_performance:适用于 Splunk v6 的 Web 性能应用程序

    node $SPLUNK_HOME/etc/apps/webperf/bin/node/test.jsServer running at http://127.0.0.1:7000在浏览器中点击 。 根据需要打开端口。启动 Node 服务器以接收和记录来自 boomerang.js 的性能数据 sudo node $...

    up_test_

    1. **测试类型**:测试可以分为单元测试(Unit Testing)、集成测试(Integration Testing)、系统测试(System Testing)和验收测试(Acceptance Testing)。单元测试主要针对代码模块,集成测试检查不同模块间的...

    s3-tests:S3克隆的兼容性测试

    S3兼容性测试 这是一组非官方的Amazon AWS S3兼容性测试,对于实施公开类似于S3的API的软件的人们可能有用。 测试使用Boto2和Boto3库。...S3TEST_CONF=your.conf ./virtualenv/bin/nosetests 您可以指定要运行

    test-deploy-ds:这是一个测试存储库,可使用Github Actions将一些测试应用程序推送到Splunk DS的Deployment-apps目录中

    测试部署ds触发github动作-尝试3

    ucc_migration_test

    该文件包含Unix Shell脚本的源代码,以执行将模块输入从Splunk加载项生成器(AOB)生成的源库迁移到新的基于Splunk UCC的加载项(aka TA)的过程。 该脚本使用AOB的python3库中的辅助函数,并将AOB生成的Inputs的源...

    日志记录工具

    同时,一些高级的日志分析工具,如ELK Stack(Elasticsearch、Logstash、Kibana)或Splunk,能提供更强大的可视化和搜索功能,帮助用户深入分析日志数据。 总结来说,“nyf6test延续时间.txt”这样的日志文件是理解...

    基于AWS的SaaS平台架构.pptx

    5. Splunk 6. Sumologic 7. Kibana 在 SaaS 平台架构中,测量与计费也是非常重要的一部分,包括: 1. 详细的计费报告 2. 资源打标签 3. API 计费 4. 租户计费统一视图 在 AWS 的 SaaS 平台架构中,业务敏捷性也是...

    2021山东省赛.pdf

    2. **Splunk配置**:接收并监控Web服务器、网站日志、系统日志、CPU负载、内存、磁盘空间和网络状态。 **A-6 任务六 服务加固 - vsFTPd** 这部分任务涉及到vsFTPd的加固,可能包括但不限于设置匿名用户访问权限、...

    must: A More Useful Syslog Test tool:复制真实系统日志消息的系统日志消息生成器-开源

    必须创建must来填补在尝试对Splunk进行压力测试时发现的空白,因为需要真实,可索引和有意义的数据。 必须(最终)作为使用XML配置的独立工具(用于快速使用和咨询等)和基于Web的工具(用于更永久/更漂亮的部署...

    snortrules-snapshot-CURRENT(1).gz

    其中,`content`用于查找数据包载荷中的特定字符串,`pcre`支持正则表达式匹配,`byte_test`和`byte_jump`则用于基于字节值的操作。 4. **预处理器**:Snort 还支持预处理器,如DNS、HTTP、SMTP等,它们会在规则...

    徘徊者测试

    此外,Prowler的输出结果可以与第三方工具集成,如Jenkins、Splunk或Slack,实现自动化安全监控和警报。 总而言之,"徘徊者测试"(Prowler Test)是HCL提供的一款强大的AWS安全审计工具,用于确保用户在云端环境中...

    基于AWS的SaaS云架构.pptx

    * IoT 1-Click * AWS IoT Analytics AWS服务助力SaaS人工智能服务平台 -------------------------------------- AWS服务可以助力SaaS企业快速创新和扩展人工智能服务平台,提供了全面、可靠、可扩展的云基础设施。...

    Mind_Map:渗透测试应急响应思维导图

    1. **渗透测试流程**: - **信息收集**:在开始测试前,通过公开源获取目标系统的相关信息,如域名信息、IP地址、网络拓扑等。 - **漏洞扫描**:利用工具自动或手动发现系统、应用和服务的潜在漏洞。 - **漏洞...

    Coletor

    1. 数据采集:在大数据和分析领域,"Coletor"可能是一个用于收集不同来源数据的工具,如网络日志、传感器数据或社交媒体信息。这样的工具可能会使用各种技术,如Elasticsearch的Logstash,Flume,或自定义脚本。 2....

Global site tag (gtag.js) - Google Analytics