Download
Getting Started
Members
Projects
Community
Marketplace
Events
Planet Eclipse
Newsletter
Videos
Participate
Report a Bug
Forums
Mailing Lists
Wiki
IRC
How to Contribute
Working Groups
Automotive
Internet of Things
LocationTech
Long-Term Support
PolarSys
Science
OpenMDM
More
Community
Marketplace
Events
Planet Eclipse
Newsletter
Videos
Participate
Report a Bug
Forums
Mailing Lists
Wiki
IRC
How to Contribute
Working Groups
Automotive
Internet of Things
LocationTech
Long-Term Support
PolarSys
Science
OpenMDM
Toggle navigation
Bugzilla – Attachment 28497 Details for
Bug 113171
No error message when Logging Agent Outputter fails to communicate with Agent Controller
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Requests
|
Help
|
Log In
[x]
|
Terms of Use
|
Copyright Agent
Some Eclipse Foundation services are deprecated, or will be soon. Please ensure you've read
this important communication.
[patch]
Patch
bugzilla113171.patch.txt (text/plain), 31.81 KB, created by
Dave Smith
on 2005-10-20 01:55:03 EDT
(
hide
)
Description:
Patch
Filename:
MIME Type:
Creator:
Dave Smith
Created:
2005-10-20 01:55:03 EDT
Size:
31.81 KB
patch
obsolete
>Index: .classpath >=================================================================== >RCS file: /home/tptp/monitoring/org.eclipse.hyades.logging.adapter/.classpath,v >retrieving revision 1.3 >diff -u -r1.3 .classpath >--- .classpath 17 May 2005 15:35:37 -0000 1.3 >+++ .classpath 20 Oct 2005 05:53:38 -0000 >@@ -4,5 +4,6 @@ > <classpathentry kind="con" path="org.eclipse.pde.core.requiredPlugins"/> > <classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER"/> > <classpathentry kind="src" path="src-config"/> >+ <classpathentry sourcepath="ECLIPSE_HOME/plugins/org.eclipse.jdt.source_3.1.0/src/org.junit_3.8.1/junitsrc.zip" kind="var" path="JUNIT_HOME/junit.jar"/> > <classpathentry kind="output" path="bin"/> > </classpath> >Index: plugin.properties >=================================================================== >RCS file: /home/tptp/monitoring/org.eclipse.hyades.logging.adapter/plugin.properties,v >retrieving revision 1.16 >diff -u -r1.16 plugin.properties >--- plugin.properties 6 Oct 2005 06:32:26 -0000 1.16 >+++ plugin.properties 20 Oct 2005 05:53:39 -0000 >@@ -178,6 +178,8 @@ > HyadesGAContextInstanceConfiguration_Day_Value_Invalid_ERROR_ = IWAT0452E The value {0} of the attribute {1} of {2} is invalid. It must be an integer value between 1 and 31. > HyadesGAContextInstanceConfiguration_Timezone_Value_Invalid_ERROR_ = IWAT0453E The value {0} of the attribute {1} of {2} is invalid. It must be a timezone offset from GMT in the format specified in RFC 822. For example, -0500. > >+HyadesGA_CBE_Log_Outputter_AgentControllerUnavailable_ERROR_=IWAT0323E Common Base Event Logging Agent outputter cannot communicate with Agent Controller. Ensure Agent Controller is running and Agent Controller native libraries are accessible. >+ > # Message strings: > EXCEPTION = Exception > >Index: src/org/eclipse/hyades/logging/adapter/outputters/CBELogOutputter.java >=================================================================== >RCS file: /home/tptp/monitoring/org.eclipse.hyades.logging.adapter/src/org/eclipse/hyades/logging/adapter/outputters/CBELogOutputter.java,v >retrieving revision 1.4 >diff -u -r1.4 CBELogOutputter.java >--- src/org/eclipse/hyades/logging/adapter/outputters/CBELogOutputter.java 17 Jun 2005 05:28:34 -0000 1.4 >+++ src/org/eclipse/hyades/logging/adapter/outputters/CBELogOutputter.java 20 Oct 2005 05:53:39 -0000 >@@ -42,6 +42,7 @@ > > private long waitTime = 0; > >+ private boolean firstEvents = true; > /** > * This implementation processes messages represented by an array of CommonBaseEvent objects > * where each CommonBaseEvent represents a message. Each CommonBaseEvent is >@@ -65,40 +66,55 @@ > { > int cbesReturned = 0; > >- // If the agent is not being monitored then wait for it to be so >+ // If the Agent Controller is not available then just return because the >+ // events cannot be sent to the client. > >- if (events.length > 0 && !cbelogger.isLogging() && getWaitTime() > 0) { >- >+ if ( !cbelogger.isAgentControllerAvailable()) { >+ // log a message > CommonBaseEvent event = getEventFactory().createCommonBaseEvent(); > >- event.getMsgDataElement().setMsgCatalogId("HyadesGA_CBE_Logging_Agent_Waiting_INFO_"); >- event.getMsgDataElement().setMsgCatalogTokensAsStrings(new String[]{getUniqueID(),getAgentName()}); >+ event.getMsgDataElement().setMsgCatalogId("HyadesGA_CBE_Log_Outputter_AgentControllerUnavailable_ERROR_"); > >- event.setSeverity(CommonBaseEvent.SEVERITY_INFORMATION); >+ event.setSeverity(CommonBaseEvent.SEVERITY_CRITICAL); > > log(event); >- >- while ( !cbelogger.waitUntilLogging(getWaitTime())) { >+ return events; >+ } > >- event = getEventFactory().createCommonBaseEvent(); >- >- event.getMsgDataElement().setMsgCatalogId("HyadesGA_CBE_Logging_Agent_Waiting_INFO_"); >- event.getMsgDataElement().setMsgCatalogTokensAsStrings(new String[]{getUniqueID(),getAgentName()}); >+ // If the agent is not being monitored then wait for it to be so. Only wait if it is the first time. >+ >+ if (firstEvents && events.length > 0 && !cbelogger.isLogging() && waitTime >= 0) { >+ >+ CommonBaseEvent event = getEventFactory().createCommonBaseEvent(); > >- event.setSeverity(CommonBaseEvent.SEVERITY_INFORMATION); >+ event.getMsgDataElement().setMsgCatalogId("HyadesGA_CBE_Logging_Agent_Waiting_INFO_"); >+ event.getMsgDataElement().setMsgCatalogTokensAsStrings(new String[]{getUniqueID(),getAgentName()}); > >- log(event); >- } >+ event.setSeverity(CommonBaseEvent.SEVERITY_INFORMATION); > >-/* This does not work - waitUntilLogging is not returning true after user attaches to >- agent but it should. >- >- if (!cbelogger.waitUntilLogging(60000)) { >- if (!cbelogger.isLogging()) { >- return events; >- } >- } >-*/ >+ log(event); >+ >+ if (waitTime > 0) { >+ cbelogger.waitUntilLogging(waitTime); >+ } >+ else { >+ // Wait forever for the logging agent to be monitored by a client >+ while ( !cbelogger.waitUntilLogging(1000)) { >+ >+ event = getEventFactory().createCommonBaseEvent(); >+ >+ event.getMsgDataElement().setMsgCatalogId("HyadesGA_CBE_Logging_Agent_Waiting_INFO_"); >+ event.getMsgDataElement().setMsgCatalogTokensAsStrings(new String[]{getUniqueID(),getAgentName()}); >+ >+ event.setSeverity(CommonBaseEvent.SEVERITY_INFORMATION); >+ >+ log(event); >+ } >+ } >+ } >+ >+ if (firstEvents && events.length > 0) { >+ firstEvents = false; > } > > for (int i = 0; i < events.length; i++) >@@ -167,7 +183,6 @@ > Element outputterNode; > > String waittm = null; >- String agent = null; > > // Get the outputter parameters from the outputter properties > Hashtable outputterProperties = getProperties(); >@@ -259,7 +274,12 @@ > } > cbelogger = new LoggingAgent(logAgentName,bufferSize); > } >- >+ firstEvents = true; >+ >+ if (!cbelogger.isAgentControllerAvailable()) { >+ // Agent Controller is not available so throw an exception >+ throw new AdapterInvalidConfig(Messages.getString("HyadesGA_CBE_Log_Outputter_AgentControllerUnavailable_ERROR_")); >+ } > } > > /** >Index: src/org/eclipse/hyades/logging/adapter/util/properties/plugin.properties >=================================================================== >RCS file: src/org/eclipse/hyades/logging/adapter/util/properties/plugin.properties >diff -N src/org/eclipse/hyades/logging/adapter/util/properties/plugin.properties >--- /dev/null 1 Jan 1970 00:00:00 -0000 >+++ src/org/eclipse/hyades/logging/adapter/util/properties/plugin.properties 1 Jan 1970 00:00:00 -0000 >@@ -0,0 +1,295 @@ >+##################################################### >+# Hyades Generic Adapter strings >+# >+#********************************************************************** >+# * Copyright (c) 2005 IBM Corporation and others. >+# * All rights reserved. This program and the accompanying materials >+# * are made available under the terms of the Eclipse Public License v1.0 >+# * which accompanies this distribution, and is available at >+# * http://www.eclipse.org/legal/epl-v10.html >+# * $Id: plugin.properties,v 1.16 2005/10/06 06:32:26 dnsmith Exp $ >+# * >+# * Contributors: >+# * IBM - Initial API and implementation >+# **********************************************************************/ >+##################################################### >+#==================================================================== >+# To code developer: >+# Do NOT change the properties between this line and the >+# "%%% END OF TRANSLATED PROPERTIES %%%" line. >+# Make a new property name, append to the end of the file and change >+# the code to use the new property. >+#==================================================================== >+##################################################### >+ >+# NLS_MESSAGEFORMAT_VAR >+# NLS_ENCODING=UTF-8 >+ >+ >+HyadesGACommand_line_usage=Command line usage: Adapter [-cc ContextConfiguration.xml] [-ac ComponentConfigurations.xml] >+ >+HyadesGAAdapterFatal_ERROR_=IWAT0310E Generic Log Adapter could not be started due to configuration problems. >+HyadesGAContextFatal_ERROR_=IWAT0311E Context will not be run due to fatal configuration error. >+HyadesGAContextConfigurationErrorContextCountMismatchFatal_ERROR_=IWAT0312E Adapter cannot start. Configuration error: Number of Context's is not the same as the number of ContextInstance's. They must be the same. >+HyadesGAContextInstanceConfigurationErrorComponentMismatchFatal_ERROR_=IWAT0313E Adapter cannot start. Context and ContextInstance configurations do not match for context {0}. The number of components must be the same. >+HyadesGAContextInstanceConfigurationErrorComponentIdNotFoundFatal_ERROR_=IWAT0314E Adapter cannot start. Configuration error: Component with ID {0} cannot be found in context with ID {1}. >+HyadesGAContextInstanceConfigurationErrorContextIdNotFoundFatal_ERROR_=IWAT0315E Adapter cannot start. Configuration error: ContextInstance ID {0} cannot be found in the list of Context''s. >+HyadesGAContextInstantiation_ERROR_=IWAT0316E Error building context {0}. {1} >+HyadesGAComponentInstantiation_ERROR_=IWAT0317E Error building component {0}. {1} >+HyadesGAClassLoad_ERROR_=IWAT0318E {0} was not found. >+HyadesGAInstantiation_ERROR_=IWAT0319E Class {0} cannot be instantiated. >+HyadesGAAccess_ERROR_=IWAT0320E {0} is not accessible due to security restrictions. >+HyadesGAMalformedParserExpression_ERROR_=IWAT0321E Regular exression is malformed. >+HyadesGAPatternSyntaxException_Details = Exception = {0} Pattern = {1} >+HyadesGAPatternSyntaxException_Index = Index = {0} >+HyadesGASubstitutionRuleIgnored_WARN_=IWAT0322W Substitution rule will be ignored because it is invalid ({0}). >+ >+HyadesGA_CBE_File_Outputter_Write_ERROR_=IWAT0323E Common Base Event File outputter {0} cannot write to file {1}. Exception: {2} >+HyadesGA_CBE_File_Outputter_Create_ERROR_=IWAT0324E Common Base Event File outputter {0} cannot create file {1}. Exception: {2} >+ >+HyadesGA_CBE_Formatter_MsgDataElement_WARN_=IWAT0325W Common Base Event formatter {0} has received an invalid MsgDataElement property name: {1}. >+ >+HyadesGA_CBE_Formatter_Duplicate_ContextDataElement_WARN_=IWAT0326W Common Base Event formatter {0} has received the ContextDataElement property {1} but it cannot be set because {2} is set. >+HyadesGA_CBE_Formatter_ContextDataElement_WARN_=IWAT0327W Common Base Event formatter {0} has received an invalid ContextDataElement property name: {1}. >+ >+HyadesGA_CBE_Formatter_ComponentIdentification_WARN_=IWAT0328W Common Base Event formatter {0} has received an invalid ComponentIdentification property name: {1}. >+ >+HyadesGA_CBE_Formatter_SituationType_WARN_=IWAT0329W Common Base Event formatter {0} has received the situation type {1} but this CBE has a different situation type. >+HyadesGA_CBE_Formatter_AvailableSituation_WARN_=IWAT0330W Common Base Event formatter {0} has received the property name {1} that is not an Available Situation property. >+HyadesGA_CBE_Formatter_RequestSituation_WARN_=IWAT0331W Common Base Event formatter {0} has received the property name {1} that is not a Request Situation property. >+HyadesGA_CBE_Formatter_StartSituation_WARN_=IWAT0332W Common Base Event formatter {0} has received the property name {1} that is not a Start Situation property. >+HyadesGA_CBE_Formatter_StopSituation_WARN_=IWAT0333W Common Base Event formatter {0} has received the property name {1} that is not a Stop Situation property. >+HyadesGA_CBE_Formatter_ConnectSituation_WARN_=IWAT0334W Common Base Event formatter {0} has received the property name {1} that is not a Connect Situation property. >+HyadesGA_CBE_Formatter_ConfigureSituation_WARN_=IWAT0335W Common Base Event formatter {0} has received the property name {1} that is not a Configure Situation property. >+HyadesGA_CBE_Formatter_CreateSituation_WARN_=IWAT0336W Common Base Event formatter {0} has received the property name {1} that is not a Create Situation property. >+HyadesGA_CBE_Formatter_DestroySituation_WARN_=IWAT0337W Common Base Event formatter {0} has received the property name {1} that is not a Destroy Situation property. >+HyadesGA_CBE_Formatter_ReportSituation_WARN_=IWAT0338W Common Base Event formatter {0} has received the property name {1} that is not a Report Situation property. >+HyadesGA_CBE_Formatter_FeatureSituation_WARN_=IWAT0339W Common Base Event formatter {0} has received the property name {1} that is not a Feature Situation property. >+HyadesGA_CBE_Formatter_DependencySituation_WARN_=IWAT0340W Common Base Event formatter {0} has received the property name {1} that is not a Dependency Situation property. >+HyadesGA_CBE_Formatter_OtherSituation_WARN_=IWAT0341W Common Base Event formatter {0} has received the property name {1} that is not an Other Situation property. >+ >+HyadesGA_CBE_Formatter_Invalid_Situation_WARN_=IWAT0342W Common Base Event formatter {0} has received an invalid Situation property name {1}. >+HyadesGA_CBE_Formatter_Invalid_SituationType_WARN_=IWAT0343W Common Base Event formatter {0} has received an invalid Situation Type property name {1}. >+HyadesGA_CBE_Formatter_Invalid_AssociatedEvent_WARN_=IWAT0344W Common Base Event formatter {0} has received an invalid AssociatedEvent property name {1}. >+HyadesGA_CBE_Formatter_Invalid_AssociationEngine_WARN_=IWAT0345W Common Base Event formatter {0} has received an invalid AssociationEngine property name {1}. >+ >+HyadesGA_CBE_Formatter_Duplicate_ExtendedDataElement_WARN_=IWAT0346W Common Base Event formatter {0} has received the ExtendedDataElement property {1} but it cannot be set because {2} is set. >+HyadesGA_CBE_Formatter_Invalid_ExtendedDataElement_WARN_=IWAT0347W Common Base Event formatter {0} has received an invalid ExtendedDataElement property name {1}. >+HyadesGA_CBE_Formatter_Invalid_CommmonBaseEvent_WARN_=IWAT0348W Common Base Event formatter {0} has received an invalid CommmonBaseEvent property name {1}. >+HyadesGA_CBE_Formatter_Invalid_Property_WARN_=IWAT0349W Common Base Event formatter {0} has received an invalid property name string {1}. >+HyadesGA_CBE_Formatter_Non_Numeric_Property_WARN_=IWAT0350W Common Base Event formatter {0} has received an non numeric value when it was expecting one when processing {1}. >+HyadesGA_CBE_Formatter_Exception_WARN_=IWAT0351W Common Base Event formatter {0} has received an exception when processing {1} - {2}. >+ >+HyadesGA_CBE_Logging_Agent_Waiting_INFO_=IWAT0352I Common Base Event logging agent outputter {0} is waiting for agent {1} to be monitored... >+ >+HyadesGA_CBE_Logging_Agent_Write_ERROR_=IWAT0353E Common Base Event logging agent outputter {0} cannot write to agent {1} due to the following exception: {2} >+ >+HyadesGAInitialization_Internal_Logging_Not_Started_WARN_ = IWAT0354W Generic Log Adapter internal logging failure: {0} >+ >+HyadesGA_CBE_ProcessUnit_ERROR_=IWAT0355E Process Unit {0} has been requested to process Event Items. >+ >+HyadesGA_CBE_Sensor_getNext_INFO_=IWAT0356I Sensor getNext has been requested from {0}. >+ >+HyadesGA_CBE_File_Parsing_ERROR_=IWAT0357E Exception parsing file {0}: {1}. >+ >+HyadesGA_CBE_Simple_Extractor_Message_INFO_=IWAT0358I The following message is being passed on: {0} >+HyadesGA_CBE_Regular_Expression_Extractor_Start_Pattern_Invalid_ERROR_=IWAT0359E The extractor start pattern regular expression is malformed: {0}. >+HyadesGA_CBE_Regular_Expression_Extractor_End_Pattern_Invalid_ERROR_=IWAT0360E The extractor end pattern regular expression is malformed: {0}. >+ >+HyadesGA_CBE_Parser_Preparation_SubstitutionExtensionClass_NotFound_ERROR_=IWAT0361E Could not find substitution extension class {0}. >+HyadesGA_CBE_Parser_Preparation_SubstitutionExtensionClass_Exception_ERROR_=IWAT0362E Exception occurred intantiating substitution extension class {0}. >+HyadesGA_CBE_Parser_Preparation_Invalid_Time_Format_ERROR_=IWAT0363E The time format {0} is invalid. >+HyadesGA_CBE_Parser_Run_SubstitutionExtensionClass_Invalid_ERROR_=IWAT0364E Substitution extension class {0} does not implement ISubstitutionExtension or IStatefulSubstitutionExtension. >+HyadesGA_CBE_Parser_Run_StatelessSubstitutionExtensionClass_Exception_ERROR_=IWAT0365E Stateless substitution extension class {0} threw an exception. >+HyadesGA_CBE_Parser_Run_StatefulSubstitutionExtensionClass_Exception_ERROR_=IWAT0366E Stateful substitution extension class {0} threw an exception. >+HyadesGA_CBE_Parser_Run_TimeParser_Exception_ERROR_=IWAT0367E The time {0} could not be parsed with format {1} because an exception occurred. >+HyadesGA_CBE_Adapter_No_Config_File_Specified_ERROR_=IWAT0368E An adapter configuration file must be specified on the command line. >+HyadesGA_CBE_Adapter_No_Config_File_ERROR_=IWAT0369E The adapter configuration file {0} cannot be found. >+HyadesGA_CBE_Adapter_Config_File_Open_ERROR_=IWAT0370E The adapter configuration file {0} cannot be opened. >+HyadesGA_CBE_Adapter_Config_File_Parse_ERROR_=IWAT0371E The adapter configuration file {0} cannot be parsed. >+HyadesGA_CBE_Adapter_Config_File_Missing_Element_ERROR_=IWAT0372E The adapter configuration file {0} is missing the element {1}. >+HyadesGA_CBE_Adapter_Config_File_Save_ERROR_=IWAT0373E The adapter configuration file {0} cannot be saved due to the following reason: {1} >+HyadesGA_CBE_Adapter_No_Config_File_Migration_Required_INFO_=IWAT0374I No migration is required for the adapter configuration file {0}. >+HyadesGA_CBE_SingleFileSensor_Invalid_Config_File_ERROR_=IWAT0375E The SingleOSFileSensor configuration is incorrect. The directory or fileName property is missing or invalid. >+HyadesGA_CBE_StaticParserSensor_Invalid_Config_File_ERROR_=IWAT0376E The StaticParserSensor configuration is incorrect. The directory, fileName or parserClassName property is missing or invalid. >+HyadesGA_CBE_SingleFileOutputter_Invalid_Config_File_ERROR_=IWAT0377E The CBEFileOutputter configuration is incorrect. The directory or fileName property is missing or invalid. >+HyadesGA_CBE_Logging_Agent_Buffer_Specification_WARN_=IWAT0378W Common Base Event logging agent outputter {0} has invalid buffer specification. Using default size of {1} >+HyadesGA_CBE_Parser_Preparation_No_Parser_Element_ERROR_=IWAT0379E Could not find the parser configuration element {0} in the adapter configuration file. >+HyadesGA_CBE_Parser_Preparation_Separator_Token_Pattern_Invalid_ERROR_=IWAT0380E The parser separator token regular expression is malformed: {0}. >+HyadesGA_CBE_Parser_Preparation_Designation_Token_Pattern_Invalid_ERROR_=IWAT0381E The parser designation token regular expression is malformed: {0}. >+HyadesGAValidation_Fatal_ERROR_=IWAT0382E Adapter Validation Fatal Error: {0} >+HyadesGAValidation_ERROR_=IWAT0383E Adapter Validation Error: {0} >+HyadesGAValidation_WARN_=IWAT0384W Adapter Validation Warning: {0} >+HyadesGAValidation_Getting_Schemas_ERROR_=IWAT0385E Could not get schema files: {0} >+HyadesGAValidation_No_GLAHome_ERROR_=IWAT0386E GLA_HOME is not provided to JVM >+HyadesGAValidation_GLAHome_Invalid_ERROR_=IWAT0387E GLA_HOME value {0} is not valid. >+HyadesGAContextInstanceConfiguration_LocaleNotFound_ERROR_=IWAT0388E Could not determine a locale for this context based on language {0} and country {1}. Aborting this context. >+HyadesGAContextInstanceConfiguration_CharsetNotSupported_ERROR_=IWAT0389E The character set {0} specified for this context is not supported. Aborting this context. >+HyadesGAContextInstanceConfiguration_ContextLocaleSetting_INFO_=IWAT0390I Context is configured to run in locale {0}. >+HyadesGAContextInstanceConfiguration_ContextCharsetSetting_INFO_=IWAT0391I Context is configured to run with character set {0}. >+HyadesGAContextInstanceConfiguration_ConfigurationComplete_INFO_=IWAT0392I Finished configuring the context {0}. >+HyadesGAContext_Started_INFO_=IWAT0393I Generic Log Adapter Context {0} has started. >+HyadesGAContext_Stopped_INFO_=IWAT0394I Generic Log Adapter Context {0} has stopped. >+HyadesGAComponent_ConfigurationComplete_INFO_=IWAT0395I Finished configuring the component {0}. >+HyadesGAComponent_Started_INFO_=IWAT0396I Generic Log Adapter Component {0} has started. >+HyadesGAComponent_Stopped_INFO_=IWAT0397I Generic Log Adapter Component {0} has stopped. >+HyadesGASensor_SingleOSFileSensor_Configuration_INFO_=IWAT0398I Sensor will read file {0} from directory {1} using the converter command {2}. >+HyadesGAValidation_Validation_Not_Supported_WARN_ = IWAT0399W Validation of adapter configuration is not supported since the run-time environment does not support XML schema validation. Adapter configuration will not be validated. >+HyadesGABufferedPeriodicReader_Converter_Process_Exit_Value_ERROR_ = IWAT0238E Converter process ended with exit value {0} >+HyadesGABufferedPeriodicReader_Converter_Command_Failed_ERROR_ = IWAT0239E Converter command failed: {0} >+HyadesGABufferedPeriodicReader_Determine_File_Modification_ERROR_ = IWAT0240E Exception occurred when determining if file {0} has changed: {1} >+HyadesGA_CBE_Parser_Run_Match_And_Substitution_Failure_ERROR_ = IWAT0404E A failure occurred attempting to substitute {0} using the match string {1} in the rule for attribute {2}. Exception: {3} >+HyadesGA_AdapterLogOutputter_No_Logger_ERROR_ = IWAT0411E No output logger is defined for this Adapter Log Outputter. >+HyadesGAContextInstanceConfiguration_JVM_Charset_Not_Found_WARN_ = IWAT0415W The default JVM file encoding could not be determined. Character set encoding {0} will be used to read the log file. >+ >+HyadesGAInitialization_GetContextListeners_Failure_ERROR_ = IWAT0418E A failure occurred attempting to get the context listeners from the platform. >+HyadesGAInitialization_GetComponent_Failure_ERROR_ = IWAT0419E A failure occurred attempting to get the adapter component {0} from the platform. >+HyadesGAInitialization_GetSubstitutionExtension_Failure_ERROR_ = IWAT0420E A failure occurred attempting to get the substitutution extension {0} from the platform. >+HyadesGAInitialization_Invalid_Class_Failure_ERROR_ = IWAT0421E Invalid class: {0} is not an instance of {1}. >+HyadesGAInitialization_ContextConfiguration_Failure_ERROR_ = IWAT0422E Could not create context configuration using adapter configuration file {0}. >+HyadesGAInitialization_ContextInstanceConfiguration_Failure_ERROR_ = IWAT0423E Could not create context instance configuration using adapter configuration file {0}. >+HyadesGABufferedPeriodicReader_Log_File_Open_Failed_ERROR_ = IWAT0424E Failed to open log file {0}. Exception: {1} >+HyadesGATrace_Component_Processing_End_INFO_ = IWAT0425I Component {0} is returning {1} items. >+HyadesGA_CBE_StaticParserSensor_Parser_Class_Load_ERROR_ = IWAT0426E The static parser class {0} could not be loaded. Ensure it is accessible via the classpath or an extension point. >+HyadesGA_CBE_StaticParserSensor_GetParser_Failure_ERROR_ = IWAT0427E A failure occurred attempting to get the static parser {0} from the platform. >+ >+HyadesGAFilter_FilterType_Class_Not_Found_ERROR_ = IWAT0429E FilterType class {0} was not found in class path. >+HyadesGAFilter_FilterType_Class_Instantiation_ERROR_ = IWAT0430E FilterType class {0} could not be instantiated. Exception: {1} >+HyadesGAFilter_FilterRule_Invalid_No_Value_ERROR_ = IWAT0431E A filter rule is invalid. There is no attribute value. >+HyadesGAFilter_Preparation_No_Filter_Element_ERROR_ = IWAT0432E Could not find the filter configuration element {0} in the adapter configuration file. >+HyadesGAFilter_Preparation_Invalid_Filter_Element_ERROR_ = IWAT0433E Invalid filter configuration element {0} in the adapter configuration file. >+HyadesGAFilter_Preparation_Invalid_Filter_Rule_No_Operator_ERROR_ = IWAT0434E Invalid filter rule element {0} in the adapter configuration file. There is no operator. >+HyadesGAFilter_FilterRule_Invalid_Operator_ERROR_ = IWAT0435E A filter rule for attribute {0} is invalid. The operator {1} is invalid for the filter type. >+HyadesGAFilter_FilterRuleBlock_Invalid_Operator_ERROR_ = IWAT0436E A filter rule block is invalid. The operator {0} is invalid. It must be AND or OR. >+HyadesGAFilter_FilterRule_Invalid_No_Impl_Class_ERROR_ = IWAT0437E A filter rule is invalid. There is no implementation class. >+ >+HyadesGA_CBE_Formatter_Missing_Required_Field_ERROR_ = IWAT0438E Common Base Event formatter {0} cannot create a CommmonBaseEvent because required property {1} is missing. >+HyadesGA_CBE_Formatter_Invalid_Field_Value_ERROR_ = IWAT0440E Common Base Event formatter {0} cannot create a CommmonBaseEvent because the value for property {1} is invalid. Value={2} Problem={3} >+ >+HyadesGAContextConfigurationWarning_Logging_Level_Incorrect_WARN_ = IWAT0443W The value {0} of the attribute {1} of component {2} is invalid. It must be an integer between 0 and 99. {1} will be set to 30. >+HyadesGAContextInstanceConfiguration_Continuous_Operation_Value_Invalid_ERROR_ = IWAT0444E The value {0} of the attribute {1} of {2} is invalid. It must be a boolean value of {3} or {4}. >+HyadesGAContextInstanceConfiguration_Pause_Interval_Value_Invalid_ERROR_ = IWAT0445E The value {0} of the attribute {1} of {2} is invalid. It must be an integer value greater than zero. >+HyadesGAContextInstanceConfiguration_Max_Idle_Time_Value_Invalid_ERROR_ = IWAT0446E The value {0} of the attribute {1} of {2} is invalid. It must be a positive integer value. >+HyadesGAContextInstanceConfiguration_Required_Continuous_Attribute_Missing_ERROR_ = IWAT0447E The attribute {0} of {1} is missing. It is required if the attribute {2} has a value of {3}. >+HyadesGAComponentConfiguration_Invalid_Integer_Attribute_Value_ERROR_ = IWAT0448E The value {0} of the attribute {1} of component {2} is invalid. It must be an integer value greater than zero. >+HyadesGAComponentConfiguration_Required_Attribute_Missing_ERROR_ = IWAT0449E The attribute {0} of component {1} is missing. It is a required attribute. >+HyadesGAComponentConfiguration_Invalid_Positive_Integer_Attribute_Value_ERROR_ = IWAT0450E The value {0} of the attribute {1} of component {2} is invalid. It must be a positive integer value. >+HyadesGAContextInstanceConfiguration_Month_Value_Invalid_ERROR_ = IWAT0451E The value {0} of the attribute {1} of {2} is invalid. It must be an integer value between 1 and 12. >+HyadesGAContextInstanceConfiguration_Day_Value_Invalid_ERROR_ = IWAT0452E The value {0} of the attribute {1} of {2} is invalid. It must be an integer value between 1 and 31. >+HyadesGAContextInstanceConfiguration_Timezone_Value_Invalid_ERROR_ = IWAT0453E The value {0} of the attribute {1} of {2} is invalid. It must be a timezone offset from GMT in the format specified in RFC 822. For example, -0500. >+ >+HyadesGA_CBE_Log_Outputter_AgentControllerUnavailable_ERROR_=IWAT0323E Common Base Event Logging Agent outputter cannot communicate with Agent Controller. Ensure Agent Controller is running and Agent Controller native libraries are accessible. >+ >+# Message strings: >+EXCEPTION = Exception >+ >+# plugin.xml strings: >+ >+STR_GLA_CFG_PRBLM= Generic Log Adapter Configuration Problem >+ >+#==================================================================== >+# %%% END OF TRANSLATED PROPERTIES %%% >+#==================================================================== >+ >+pluginName=Hyades Generic Log Adapter Runtime >+providerName=Eclipse.org >+ContextListener_Schema=Context Listeners >+AdapterComponent_Schema=Adapter Components >+SubstitutionExtension_Schema=Substitution Extensions >+ >+# Command line strings: >+HyadesGA-cc=-cc >+HyadesGA-ac=-ac >+ >+# File symbol and tag names in the xml schema: >+HyadesGADefaultContextConfigurationFile=SimpleContextConfiguration.xml >+HyadesGADefaultComponentConfigurationsFile=SimpleComponentConfigurations.xml >+HyadesGA=: >+ >+HyadesGAExecutableClassAttributeName=executableClass >+HyadesGANameAttributeName=name >+HyadesGAUniqueIDAttributeName=uniqueID >+HyadesGADescriptionAttributeName=description >+HyadesGARoleAttributeName=role >+HyadesGALoggingLevelAttributeName=loggingLevel >+HyadesGARoleVersionAttributeName=roleVersion >+HyadesGARoleCreationDateAttributeName=roleCreationDate >+HyadesGARoleVersionDescriptionAttributeName=roleVersionDescription >+HyadesGAImplementationVersionAttributeName=implementationVersion >+HyadesGAImplemenationCreationDateAttributeName=implementationCreationDate >+HyadesGAImplemenationVersionDescriptionAttributeName=implementationVersionDescription >+HyadesGAAdapterProcessUnitNamespaceAttributeTagName=xmlns:pu >+HyadesGAAdapterProcessUnitNamespaceAttributeValue=http://www.eclipse.org/hyades/schema/ProcessUnit.xsd >+ >+HyadesGAtypeAttributeName=type >+HyadesGAagentNameAttributeName=agentName >+HyadesGAdirectoryAttributeName=directory >+HyadesGAfileNameAttributeName=fileName >+HyadesGAstaticParserClassAttributeName=parserClassName >+HyadesGAconverterCmdAttributeName=converter >+HyadesGAconverterShellAttributeName=shell >+HyadesGAexpirationAttributeName=expiration >+HyadesGAmaximumBlockingAttributeName=maximumBlocking >+HyadesGAconfidenceBufferSizeAttributeName=confidenceBufferSize >+HyadesGAfileFooterSizeAttributeName=fileFooterSize >+HyadesGAwaitTimeAttributeName=waitUntilLoggingTime >+HyadesGAnestedMessagesAttributeName=nestedMessages >+HyadesGAcontainsLineBreaksAttributeName=containsLineBreaks >+HyadesGAreplaceLineBreaksAttributeName=replaceLineBreaks >+HyadesGAstartPatternAttributeName=startPattern >+HyadesGAendPatternAttributeName=endPattern >+HyadesGAincludeStartPatternAttributeName=includeStartPattern >+HyadesGAincludeEndPatternAttributeName=includeEndPattern >+HyadesGAlineBreakSymbolAttributeName=lineBreakSymbol >+HyadesGARuleElementTagName=RuleElement >+HyadesGARuleAttributeTagName=RuleAttribute >+HyadesGASubstitutionRuleTagName=SubstitutionRule >+HyadesGAPositionsAttributeName=positions >+HyadesGAMatchAttributeName=match >+HyadesGASubstituteAttributeName=substitute >+HyadesGADesignationTokenName=designationToken >+HyadesGASeparatorTokenAttributeName=separatorToken >+HyadesGAIndexAttributeName=index >+HyadesGAResourceURLAttributeName=resourceURL >+HyadesGAcontextListenerAttributeName=contextListener >+HyadesGAstaticParserClassAttributeName=parserClassName >+HyadesGAstaticParserAgentName=Generic Log Parser Agent >+HyadesGAUsePreviousMatchSubstitutionAsDefault=usePreviousMatchSubstitutionAsDefault >+ >+HyadesGAPropertyElementTagName=pu:Property >+HyadesGAPropertyNameAttributeName=propertyName >+HyadesGAPropertyValueAttributeName=propertyValue >+HyadesGASensorPropertyElementTagName=sensor:SensorProperty >+HyadesGASensorPropertyNameAttributeName=propertyName >+HyadesGASensorPropertyValueAttributeName=propertyValue >+HyadesGAExtensionPointPackageNameTag=org.eclipse.hyades.logging.parsers >+HyadesGAExtensionPointNameTag=logParser >+HyadesGAExtensionPointIDTag=id >+HyadesGAUnknownNameTag=unknown >+HyadesGAStaticParserOutputterTagName=StaticParserOutputter >+HyadesGAStaticParserLoggerKeyName=loggerKey >+HyadesGASingleFileSensorTagName=sensor:SingleFileSensor >+HyadesGAStaticParserSensorTagName=sensor:StaticParserSensor >+HyadesGASingleFileOutputterTypeTagName=op:SingleFileOutputterType >+HyadesGALogOutputterTypeTagName=op:LoggingAgentOutputterType >+HyadesGAEclipseErrorDialogOutputterTypeTagName=op:EclipseErrorDialogOutputter >+HyadesGAuseBuiltInFunctionAttributeName=useBuiltInFunction >+HyadesGAsubstitutionExtensionClassAttributeName=substitutionExtensionClass >+HyadesGAdefaultValueAttributeName=defaultValue >+HyadesGAtimeFormatAttributeName=timeFormat >+HyadesGAbufferSizeAttributeName=bufferSize >+HyadesGAisRequiredByParentAttributeName=isRequiredByParent >+HyadesGAisChildChoiceAttributeName=isChildChoice >+HyadesGAAdapterContextName=AdapterContext >+ >+HyadesGAFilterTagName=filter:Filter >+HyadesGAFilterRuleBlockElementTagName=FilterRuleBlock >+HyadesGAFilterRuleElementTagName=FilterRule >+HyadesGAOperatorAttributeName=operator >+HyadesGANegationAttributeName=negation >+HyadesGAImplementationClassAttributeName=implementationClass >+HyadesGAAttributeValueAttributeName=attributeValue >+HyadesGAttributeNamePathElementTagName=attributeNamePath >+HyadesGAttributeNameElementTagName=attributeName >+HyadesGANodeElementTagName=node >+
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
Attachments on
bug 113171
: 28497 |
61748