-
Notifications
You must be signed in to change notification settings - Fork 70
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* remove extended logging * refactor AgentConfigurationReloadTask * add docsObjectsTask test * optimize task and fix test * optimize cached agent mappings * remove redundant logs * update naming convention * add requested changes * refactor supplier * refactor AgentConfiguration * remove static supplier * rename method * move AgentDocumentation to configdocsgenerator * add tests * refactor tests * remove deprecated test * make documentation volatile
- Loading branch information
Showing
23 changed files
with
779 additions
and
505 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
24 changes: 24 additions & 0 deletions
24
...enerator/src/main/java/inspectit/ocelot/configdocsgenerator/model/AgentDocumentation.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
package inspectit.ocelot.configdocsgenerator.model; | ||
|
||
import lombok.Value; | ||
|
||
import java.util.Set; | ||
|
||
/** | ||
* Model, to store documentable objects of a specific yaml file. | ||
* Documentable objects can be actions, scopes, rules & metrics. | ||
* | ||
*/ | ||
@Value | ||
public class AgentDocumentation { | ||
|
||
/** | ||
* file, which contains the documentable objects | ||
*/ | ||
private String filePath; | ||
|
||
/** | ||
* documentable objects of the file | ||
*/ | ||
private Set<String> objects; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.