-
Notifications
You must be signed in to change notification settings - Fork 592
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
NMS-17733 : Support Modifications to Elasticsearch Templates at Runtime. #7669
base: develop
Are you sure you want to change the base?
Conversation
mwajahatabbasi
commented
Mar 21, 2025
- Jira : https://opennms.atlassian.net/browse/NMS-17733
public class AggregateIndexInitializer extends DefaultTemplateInitializer { | ||
|
||
public static final String TEMPLATE_RESOURCE = "/netflow_agg-template"; | ||
private static final String FLOW_TEMPLATE_DIR = System.getProperty("flow.templates.dir",""); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Please prefix the property:
private static final String FLOW_TEMPLATE_DIR = System.getProperty("flow.templates.dir",""); | |
private static final String FLOW_TEMPLATE_DIR = System.getProperty("org.opennms.flow.templates.dir",""); |
public class AggregateIndexInitializer extends DefaultTemplateInitializer { | ||
|
||
public static final String TEMPLATE_RESOURCE = "/netflow_agg-template"; | ||
private static final String FLOW_TEMPLATE_DIR = System.getProperty("flow.templates.dir",""); | ||
public static final String TEMPLATE_RESOURCE = Paths.get(FLOW_TEMPLATE_DIR, "/netflow_agg-template").toString(); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The / is not necessary.
public static final String TEMPLATE_RESOURCE = Paths.get(FLOW_TEMPLATE_DIR, "/netflow_agg-template").toString(); | |
public static final String TEMPLATE_RESOURCE = Paths.get(FLOW_TEMPLATE_DIR, "netflow_agg-template").toString(); |
public class RawIndexInitializer extends DefaultTemplateInitializer { | ||
|
||
public static final String TEMPLATE_RESOURCE = "/netflow-template"; | ||
private static final String FLOW_TEMPLATE_DIR = System.getProperty("flow.templates.dir",""); | ||
public static final String TEMPLATE_RESOURCE = Paths.get(FLOW_TEMPLATE_DIR, "/netflow-template").toString(); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
public static final String TEMPLATE_RESOURCE = Paths.get(FLOW_TEMPLATE_DIR, "/netflow-template").toString(); | |
public static final String TEMPLATE_RESOURCE = Paths.get(FLOW_TEMPLATE_DIR, "netflow-template").toString(); |
@@ -869,3 +869,4 @@ org.opennms.newts.nan_on_counter_wrap=true | |||
|
|||
# By default hostnames are determined for a node's IP addresses during the provisioning's audit phase. | |||
# org.opennms.provisiond.reverseResolveRequisitionIpInterfaceHostnames=true | |||
flow.templates.dir=${flow.templates.dir} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Please prefix the property:
flow.templates.dir=${flow.templates.dir} | |
flow.templates.dir=${org.opennms.flow.templates.dir} |
public class RawIndexInitializer extends DefaultTemplateInitializer { | ||
|
||
public static final String TEMPLATE_RESOURCE = "/netflow-template"; | ||
private static final String FLOW_TEMPLATE_DIR = System.getProperty("flow.templates.dir",""); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
private static final String FLOW_TEMPLATE_DIR = System.getProperty("flow.templates.dir",""); | |
private static final String FLOW_TEMPLATE_DIR = System.getProperty("org.opennms.flow.templates.dir",""); |
@@ -1698,7 +1698,7 @@ | |||
<install.etc.dir>${install.dir}/etc</install.etc.dir> | |||
<install.logs.dir>${install.dir}/logs</install.logs.dir> | |||
<install.pid.file>${install.logs.dir}/opennms.pid</install.pid.file> | |||
|
|||
<flow.templates.dir>${install.etc.dir}/elastic-templates</flow.templates.dir> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
<flow.templates.dir>${install.etc.dir}/elastic-templates</flow.templates.dir> | |
<org.opennms.flow.templates.dir>${install.etc.dir}/elastic-templates</org.opennms.flow.templates.dir> |
@@ -869,3 +869,4 @@ org.opennms.newts.nan_on_counter_wrap=true | |||
|
|||
# By default hostnames are determined for a node's IP addresses during the provisioning's audit phase. | |||
# org.opennms.provisiond.reverseResolveRequisitionIpInterfaceHostnames=true | |||
flow.templates.dir=${flow.templates.dir} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Please also add a comment and describe what this property is used for. Please also add a description of the new options in docs/modules/releasenotes/pages/whatsnew.adoc.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Create a separate feature branch called features/elastic-improvements
which should be based on foundation-2024
and target this to this new feature branch.
@@ -1698,7 +1698,7 @@ | |||
<install.etc.dir>${install.dir}/etc</install.etc.dir> | |||
<install.logs.dir>${install.dir}/logs</install.logs.dir> | |||
<install.pid.file>${install.logs.dir}/opennms.pid</install.pid.file> | |||
|
|||
<flow.templates.dir>${install.etc.dir}/elastic-templates</flow.templates.dir> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think sub directories in etc doesn't need to be specified here.
@@ -869,3 +869,4 @@ org.opennms.newts.nan_on_counter_wrap=true | |||
|
|||
# By default hostnames are determined for a node's IP addresses during the provisioning's audit phase. | |||
# org.opennms.provisiond.reverseResolveRequisitionIpInterfaceHostnames=true | |||
flow.templates.dir=${flow.templates.dir} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
we are not adding any new properties in opennms.properties
. Keep the defaults in the code.
And specify the system property in the doc.