Where is the list of all the event and error messages in AMPS?

The ampserr utility accepts wildcards for the error numbers to print. You can easily use this to retrieve information about any number of errors.

The Message Categories section in the AMPS User Guide lists the error categories in AMPS, and the prefix for each category.

For example, to see all of the messages related to replication, you could use the following command:

 $  ampserr 1E-.* > replication_messages.txt

The command above will output all of the messages with prefix 1E -- the replication messages -- and write them to the replication_messages.txt file.

To get a full list of all the messages in this version of AMPS, you could use a command like:

$ ampserr .* > all_messages.txt

The command above will output the codes and information for all of the messages that this version of AMPS is aware of to the all_messages.txt file.

Last updated