Share Note:

Installing and Accessing the Script Queue Monitor

Script Queue Monitor (Beta) is available as a SuiteApp which can be installed in your account. Its bundle ID is 56125 and it can be installed from production account 3923787.

Once this SuiteApp has been installed, the Script Queue Monitor is available at Customization > Script Performance > Script Queue Monitor, to account administrators only.

Script Queue Monitor User Interface

The UI for the Script Queue Monitor includes two panes: on the left, a pane that illustrates script instances for each queue, and on the right, a pane that lists relevant information about each script instance.

- Status Details List

The list in the right pane of the Script Queue Monitor includes the following details about each scheduled script that has been run during the selected time period.

Note: This list has a limit of 1000 rows, so it only displays the first 1000 scheduled script instances. This limitation does not apply to the scripting chart.

- Scripting Chart

The Script Queue Monitor supports three types of charts:

    • Script Count Chart

    • Utilization Chart

    • Timeline Chart

Reference:

<span id='sqm_inline_html_val'>

<!-- CSS -->
<link type="text/css" rel="stylesheet" href="/ui/css/sqm-ext-theme-classic-sandbox-all.css" />
<link type="text/css" rel="stylesheet" href="/ui/css/sqm.css" />

<!-- External Libraries -->
<script type="text/javascript" src="/ui/lib/sqm-ext-all-sandbox.js"></script>
<script type="text/javascript" src="/ui/lib/sqm-highcharts.js"></script>
<script type="text/javascript" src="/ui/lib/sqm-highcharts-more.js"></script>
<script type="text/javascript" src="/ui/lib/sqm-highcharts-exporting.js"></script>
<script type="text/javascript">
Ext4.ns("PSGP.SQM");
Ext4.require(["Ext4.*"]);
var nsBundleId = 56125
</script>

<!-- Modules -->
<script type="text/javascript" src="/ui/modules/sqm_cs_overrides.js"></script>
<script type="text/javascript" src="/ui/modules/sqm_cs_perftest.js"></script>
<script type="text/javascript" src="/ui/modules/sqm_cs_models.js"></script>
<script type="text/javascript" src="/ui/modules/sqm_cs_stores.js"></script>
<script type="text/javascript" src="/ui/modules/sqm_cs_components.js"></script>
<script type="text/javascript" src="/ui/modules/sqm_cs_highcharts.js"></script>

<!-- Main -->
<script type="text/javascript" src="/ui/sqm_cs_main.js"></script></span>

SuiteScript > Script Queue Monitor (Beta)的更多相关文章

  1. Script to Monitor Current User Activity in the Database

    Execution Environment: SQL, SQL*Plus, iSQL*Plus Access Privileges: Requires select privileges on vie ...

  2. AWS nat monitor and route switch script

    This script will monitor another NAT instance and take over its routes if communication with the oth ...

  3. Thread锁 Monitor类、Lock关键字和Mutex类

    Monitor 类锁定一个对象 当多线程公用一个对象时,也会出现和公用代码类似的问题,这种问题就不应该使用lock关键字了,这里需要用到System.Threading中的一个类Monitor,我们可 ...

  4. 【转】C#多线程学习

    C#多线程学习(一) 多线程的相关概念 什么是进程?当一个程序开始运行时,它就是一个进程,进程包括运行中的程序和程序所使用到的内存和系统资源.而一个进程又是由多个线程所组成的. 什么是线程?线程是程序 ...

  5. .net中的多线程

    一.多线程的概念        什么是进程呢?当一个程序开始运行时,它就是一个进程,进程所指包括运行中的程序和程序所使用到的内存和系统资源.而一个进程又是由多个线程所组成的,线程是程序中的一个执行流, ...

  6. C#多线程(上) 分类: C# 线程 2015-03-09 10:35 174人阅读 评论(0) 收藏

    一.多线程的相关概念 什么是进程? 当一个程序开始运行时,它就是一个进程,进程包括运行中的程序和程序所使用到的内存和系统资源. 而一个进程又是由多个线程所组成的. 什么是线程? 线程是程序中的一个执行 ...

  7. DTrace to Troubleshoot Java Native Memory Problems

    How to Use DTrace to Troubleshoot Java Native Memory Problems on Oracle Solaris 11 Hands-On Labs of ...

  8. C# 多线程学习总结

    C# 多线程学习总结 C#多线程学习(一) 多线程的相关概念 什么是进程? 当一个程序开始运行时,它就是一个进程,进程包括运行中的程序和程序所使用到的内存和系统资源.而一个进程又是由多个线程所组成的. ...

  9. Laravel生命周期

    如果你对一件工具的使用原理了如指掌,那么你在用这件工具的时候会充满信心! 一旦用户(浏览器)发送了一个HTTP请求,我们的apache或者nginx一般都转到index.php,因此,之后的一系列步骤 ...

随机推荐

  1. xshell的快捷命令

    xshell的快捷命令 reconnect Type `help' to learn how to use Xshell prompt.[c:\~]$ ?Internal Commands:new:  ...

  2. centos7 web服务器内核优化

    net.ipv4.tcp_syn_retries = 1net.ipv4.tcp_synack_retries = 1net.ipv4.tcp_keepalive_time = 600net.ipv4 ...

  3. html 以及JavaScript 转义

    1.之前遇到一个问题,在用js给某个控件赋值时如果含有单引号'或者双引号"有可能导致赋值不成功,如document.getElementById("txtTestBox1" ...

  4. iOS真机运行 Xcode报错(libpng error: CgBI: unhandled critical chunk)问题已解决;

    Cocos2d-x加载图片资源出现libpng error: CgBI: unhandled critical chunk Xcode7.3 设置Remove Text Metadata From P ...

  5. jquery选择器和基本语句

    $("#aa"); //根据ID找 $(".aa"); //根据class找 $("div"); //根据标签名找 $("[id= ...

  6. asp.net中http提交数据所遇到的那些坑

    http提交数据有两种形式,get和post,不知道的同学请联系度娘. 1.aspnet:MaxHttpCollectionKeys 业务场景:业务很简单,手机端读取本地通讯录,将所有通讯录提交到后台 ...

  7. 前端forEach在Array、map、set中的使用

    数组: var s = ['a','b','c']; s.forEach(function(ele,index,array){ console.log(ele); }); Map: var map = ...

  8. LeetCode: Invert Binary Tree

    /** * Definition for a binary tree node. * public class TreeNode { * int val; * TreeNode left; * Tre ...

  9. com.android.ide.common.process.ProcessException: org.gradle.process.internal.ExecException: Process 'command ' finished with non-zero exit value 1

    Error:Execution failed for task ':lenovoAlbum:processReleaseResources'. > com.android.ide.common. ...

  10. j2ee部分

    j2ee部分 1.BS与CS的联系与区别. C/S是Client/Server的缩写.服务器通常采用高性能的PC.工作站或小型机,并采用大型数据库系统,如Oracle.Sybase.InFORMix或 ...