@blueking/monitor-apm-log 2.3.18 → 2.3.19

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/main.js +14 -2
  2. package/package.json +1 -1
package/main.js CHANGED
@@ -28601,6 +28601,7 @@ __webpack_require__.d(grok_namespaceObject, {
28601
28601
  deleteGrok: () => (deleteGrok),
28602
28602
  getGrokList: () => (getGrokList),
28603
28603
  getUpdatedByList: () => (getUpdatedByList),
28604
+ searchGrok: () => (searchGrok),
28604
28605
  updateGrok: () => (updateGrok)
28605
28606
  });
28606
28607
 
@@ -41551,6 +41552,12 @@ var debugGrok = {
41551
41552
  method: 'post'
41552
41553
  };
41553
41554
 
41555
+ // 搜索 Grok
41556
+ var searchGrok = {
41557
+ url: '/databus/grok/search/',
41558
+ method: 'get'
41559
+ };
41560
+
41554
41561
  ;// ./src/services/indexSet.js
41555
41562
  /*
41556
41563
  * Tencent is pleased to support the open source community by making
@@ -57363,6 +57370,10 @@ class PopInstanceUtil {
57363
57370
  const setProps = prop => {
57364
57371
  instance.setProps(prop);
57365
57372
  };
57373
+ const update = function () {
57374
+ let force = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : false;
57375
+ return instance.repositionTippyInstance(force);
57376
+ };
57366
57377
  (0,external_vue_.onMounted)(() => {
57367
57378
  resolveOptions();
57368
57379
  });
@@ -57384,7 +57395,8 @@ class PopInstanceUtil {
57384
57395
  expose({
57385
57396
  show,
57386
57397
  hide,
57387
- setProps
57398
+ setProps,
57399
+ update
57388
57400
  });
57389
57401
  const renderSlot = () => {
57390
57402
  if (typeof props.content === 'function') {
@@ -169973,7 +169985,7 @@ let FieldFilterComp = class FieldFilterComp extends external_vue_tsx_support_nam
169973
169985
  get isFrontStatistics() {
169974
169986
  const {
169975
169987
  scenario_id_white_list: scenarioIdWhiteList
169976
- } = window.FIELD_ANALYSIS_CONFIG;
169988
+ } = window.FIELD_ANALYSIS_CONFIG || {};
169977
169989
  const scenarioID = this.indexSetItem.items?.[0]?.scenario_id;
169978
169990
  return !(scenarioIdWhiteList?.includes(scenarioID) && isFeatureToggleOn('field_analysis_config', this.bkBizId));
169979
169991
  }
package/package.json CHANGED
@@ -1 +1 @@
1
- {"name":"@blueking/monitor-apm-log","version":"2.3.18","description":"","main":"main.js","scripts":{"test":"echo \"Error: no test specified\" && exit 1"},"author":"","license":"MIT"}
1
+ {"name":"@blueking/monitor-apm-log","version":"2.3.19","description":"","main":"main.js","scripts":{"test":"echo \"Error: no test specified\" && exit 1"},"author":"","license":"MIT"}