Skip to content

Commit b5f24fd

Browse files
mergify[bot]elasticblrpickypg
authored
Added the missing vector fields in the node stats of Autoops (#48365) (#48398)
* Added the missing vector fields in the node stats of Autoops * Apply suggestions from code review --------- (cherry picked from commit 7c2c72e) Co-authored-by: Amit Khandelwal <154884619+elasticblr@users.noreply.github.com> Co-authored-by: Chris Earle <pickypg@users.noreply.github.com>
1 parent 6160c4c commit b5f24fd

7 files changed

Lines changed: 600 additions & 0 deletions

File tree

Lines changed: 45 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,45 @@
1+
# REQUIRED
2+
# Kind can be one of:
3+
# - breaking-change: a change to previously-documented behavior
4+
# - deprecation: functionality that is being removed in a later release
5+
# - bug-fix: fixes a problem in a previous version
6+
# - enhancement: extends functionality but does not break or fix existing behavior
7+
# - feature: new functionality
8+
# - known-issue: problems that we are aware of in a given version
9+
# - security: impacts on the security of a product or a user’s deployment.
10+
# - upgrade: important information for someone upgrading from a prior version
11+
# - other: does not fit into any of the other categories
12+
kind: bug-fix
13+
14+
# REQUIRED for all kinds
15+
# Change summary; a 80ish characters long description of the change.
16+
summary: added missing vector metrics in autoops agent
17+
18+
# REQUIRED for breaking-change, deprecation, known-issue
19+
# Long description; in case the summary is not enough to describe the change
20+
# this field accommodate a description without length limits.
21+
# description:
22+
23+
# REQUIRED for breaking-change, deprecation, known-issue
24+
# impact:
25+
26+
# REQUIRED for breaking-change, deprecation, known-issue
27+
# action:
28+
29+
# REQUIRED for all kinds
30+
# Affected component; usually one of "elastic-agent", "fleet-server", "filebeat", "metricbeat", "auditbeat", "all", etc.
31+
component: metricbeat
32+
33+
# AUTOMATED
34+
# OPTIONAL to manually add other PR URLs
35+
# PR URL: A link the PR that added the changeset.
36+
# If not present is automatically filled by the tooling finding the PR where this changelog fragment has been added.
37+
# NOTE: the tooling supports backports, so it's able to fill the original PR number instead of the backport PR number.
38+
# Please provide it if you are adding a fragment for a different PR.
39+
# pr: https://github.com/owner/repo/1234
40+
41+
# AUTOMATED
42+
# OPTIONAL to manually add other issue URLs
43+
# Issue URL; optional; the GitHub issue related to this changeset (either closes or is part of).
44+
# If not present is automatically filled by the tooling with the issue linked to the PR number.
45+
# issue: https://github.com/owner/repo/1234
Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
{
2+
"name": "instance-0000000000",
3+
"cluster_name": "my_cluster",
4+
"cluster_uuid": "GZbSUUMQQI-A7UcGS6vCMa",
5+
"version": {
6+
"number": "9.2.0",
7+
"build_flavor": "default",
8+
"build_type": "docker",
9+
"build_hash": "25d88452371273dd27356c98598287b669a03eae",
10+
"build_date": "2025-10-21T10:06:21.288851013Z",
11+
"build_snapshot": false,
12+
"lucene_version": "10.3.1",
13+
"minimum_wire_compatibility_version": "8.19.0",
14+
"minimum_index_compatibility_version": "8.0.0"
15+
},
16+
"tagline": "You Know, for Search"
17+
}
Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
{
2+
"items": [
3+
{
4+
"name": "obj1",
5+
"value": 1
6+
},
7+
{
8+
"name": "obj2",
9+
"value": 2
10+
}
11+
]
12+
}
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
{
2+
"master_node": "ek46S1GsSK2ajJ8xAnTtrA"
3+
}

0 commit comments

Comments
 (0)