@dynatrace-oss/dynatrace-mcp-server 1.7.6 → 1.7.7-dev.20260408064607
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.
- package/CHANGELOG.md +2 -0
- package/index.js +3 -3
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,8 @@
|
|
|
2
2
|
|
|
3
3
|
## Unreleased Changes
|
|
4
4
|
|
|
5
|
+
- Increased the default Grail query budget from 1000 GB to 5000 GB per session. The budget can still be overridden via the `DT_GRAIL_QUERY_BUDGET_GB` environment variable.
|
|
6
|
+
|
|
5
7
|
## 1.7.6
|
|
6
8
|
|
|
7
9
|
- Fixed: Corrected event type spelling from `OMPLIANCE_FINDING` to `COMPLIANCE_FINDING` in the `send_event` tool, ensuring this event type is now accepted correctly.
|
package/index.js
CHANGED
|
@@ -115306,7 +115306,7 @@ var {
|
|
|
115306
115306
|
} = import_index2.default;
|
|
115307
115307
|
|
|
115308
115308
|
// package.json
|
|
115309
|
-
var version2 = "1.7.
|
|
115309
|
+
var version2 = "1.7.7-dev.20260408064607";
|
|
115310
115310
|
|
|
115311
115311
|
// src/utils/version.ts
|
|
115312
115312
|
function getPackageJsonVersion() {
|
|
@@ -115826,7 +115826,7 @@ var GrailBudgetTrackerImpl = class {
|
|
|
115826
115826
|
var globalBudgetTracker = null;
|
|
115827
115827
|
function getGrailBudgetTracker(budgetLimitGB) {
|
|
115828
115828
|
if (!globalBudgetTracker) {
|
|
115829
|
-
const defaultBudget = budgetLimitGB ??
|
|
115829
|
+
const defaultBudget = budgetLimitGB ?? 5e3;
|
|
115830
115830
|
globalBudgetTracker = new GrailBudgetTrackerImpl(defaultBudget);
|
|
115831
115831
|
}
|
|
115832
115832
|
return globalBudgetTracker;
|
|
@@ -116525,7 +116525,7 @@ function getDynatraceEnv(env = process.env) {
|
|
|
116525
116525
|
const dtPlatformToken = normalizeOptionalEnvVar("DT_PLATFORM_TOKEN", env.DT_PLATFORM_TOKEN);
|
|
116526
116526
|
const dtEnvironment = env.DT_ENVIRONMENT;
|
|
116527
116527
|
const slackConnectionId = env.SLACK_CONNECTION_ID || "fake-slack-connection-id";
|
|
116528
|
-
let grailBudgetGB = parseFloat(env.DT_GRAIL_QUERY_BUDGET_GB || "
|
|
116528
|
+
let grailBudgetGB = parseFloat(env.DT_GRAIL_QUERY_BUDGET_GB || "5000");
|
|
116529
116529
|
if (!dtEnvironment) {
|
|
116530
116530
|
throw new Error("Please set DT_ENVIRONMENT environment variable to your Dynatrace Platform Environment");
|
|
116531
116531
|
}
|
package/package.json
CHANGED