Statistic Configuration Files Format

The format of the statistic configuration file (.ini) is:

# 
# Comments are allowed  
# 
[ \foo\bar :  MyPkg::MyType ] 
someName = some value here 
anotherName = anotherValue 
# 
# blank lines are allowed, too 

# Strings, enums and longs can be configured 
someString = aString 
someEnum = aLabel 
someStringifiedNumber = 7 

# Several objects can be defined in the file 
[ \foo\qux :  MyPkg::MyOtherType ] 
someName = a value here 
anotherName = moreValue

where

[ <hierarchicalName> : <scopedTypeName> ] 
<attributeName> = <value> 

Remarks:

  • <hierarchicalName> must be unique in all .ini files (not only the statistic configuration files).

  • <attributeName> must be a valid attribute of entity <scopedTypeName>.

See examples in next paragraphs.