summaryrefslogtreecommitdiffstats
path: root/common/onap-tosca-datatype
AgeCommit message (Expand)AuthorFilesLines
2018-07-05Fix node filter get methodsshiria1-36/+55
2018-07-02Fix getFlat for datatypeshiria5-69/+229
2018-06-13CR Port Mirroring: add new propertieseleonorali1-0/+6
2018-06-05fix get flat node typeshiria3-68/+62
2018-06-02update sdc versionMichael Lando1-1/+1
2018-05-28fixing sonar violationskaty.rotman1-5/+6
2018-05-27R2 model updatesdekstroza7-368/+633
2018-05-27Revert "update sdc version"Michael Lando1-1/+1
2018-05-26update sdc versionMichael Lando1-1/+1
2018-05-23new node filter implementationkaty.rotman3-51/+58
2018-05-01Fix TOSCA Analyzer - null point exceptionshiria1-1/+1
2018-04-30Rename packages from openecomp to onap.amitjai88-0/+16176
.kr { color: #008800; font-weight: bold } /* Keyword.Reserved */ .highlight .kt { color: #888888; font-weight: bold } /* Keyword.Type */ .highlight .m { color: #0000DD; font-weight: bold } /* Literal.Number */ .highlight .s { color: #dd2200; background-color: #fff0f0 } /* Literal.String */ .highlight .na { color: #336699 } /* Name.Attribute */ .highlight .nb { color: #003388 } /* Name.Builtin */ .highlight .nc { color: #bb0066; font-weight: bold } /* Name.Class */ .highlight .no { color: #003366; font-weight: bold } /* Name.Constant */ .highlight .nd { color: #555555 } /* Name.Decorator */ .highlight .ne { color: #bb0066; font-weight: bold } /* Name.Exception */ .highlight .nf { color: #0066bb; font-weight: bold } /* Name.Function */ .highlight .nl { color: #336699; font-style: italic } /* Name.Label */ .highlight .nn { color: #bb0066; font-weight: bold } /* Name.Namespace */ .highlight .py { color: #336699; font-weight: bold } /* Name.Property */ .highlight .nt { color: #bb0066; font-weight: bold } /* Name.Tag */ .highlight .nv { color: #336699 } /* Name.Variable */ .highlight .ow { color: #008800 } /* Operator.Word */ .highlight .w { color: #bbbbbb } /* Text.Whitespace */ .highlight .mb { color: #0000DD; font-weight: bold } /* Literal.Number.Bin */ .highlight .mf { color: #0000DD; font-weight: bold } /* Literal.Number.Float */ .highlight .mh { color: #0000DD; font-weight: bold } /* Literal.Number.Hex */ .highlight .mi { color: #0000DD; font-weight: bold } /* Literal.Number.Integer */ .highlight .mo { color: #0000DD; font-weight: bold } /* Literal.Number.Oct */ .highlight .sa { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Affix */ .highlight .sb { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Backtick */ .highlight .sc { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Char */ .highlight .dl { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Delimiter */ .highlight .sd { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Doc */ .highlight .s2 { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Double */ .highlight .se { color: #0044dd; background-color: #fff0f0 } /* Literal.String.Escape */ .highlight .sh { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Heredoc */ .highlight .si { color: #3333bb; background-color: #fff0f0 } /* Literal.String.Interpol */ .highlight .sx { color: #22bb22; background-color: #f0fff0 } /* Literal.String.Other */ .highlight .sr { color: #008800; background-color: #fff0ff } /* Literal.String.Regex */ .highlight .s1 { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Single */ .highlight .ss { color: #aa6600; background-color: #fff0f0 } /* Literal.String.Symbol */ .highlight .bp { color: #003388 } /* Name.Builtin.Pseudo */ .highlight .fm { color: #0066bb; font-weight: bold } /* Name.Function.Magic */ .highlight .vc { color: #336699 } /* Name.Variable.Class */ .highlight .vg { color: #dd7700 } /* Name.Variable.Global */ .highlight .vi { color: #3333bb } /* Name.Variable.Instance */ .highlight .vm { color: #336699 } /* Name.Variable.Magic */ .highlight .il { color: #0000DD; font-weight: bold } /* Literal.Number.Integer.Long */ }
filebeat.prospectors:
#it is mandatory, in our case it's log
- input_type: log
  #This is the canolical path as mentioned in logback.xml, *.* means it will monitor all files in the directory.
  paths:
    - /var/log/onap/*/*/*/*.log
    - /var/log/onap/*/*/*.log
    - /var/log/onap/*/*.log
  #Files older than this should be ignored.In our case it will be 48 hours i.e. 2 days. It is a helping flag for clean_inactive
  ignore_older: 48h
  # Remove the registry entry for a file that is more than the specified time. In our case it will be 96 hours, i.e. 4 days. It will help to keep registry records with in limit
  clean_inactive: 96h


# Name of the registry file. If a relative path is used, it is considered relative to the
# data path. Else full qualified file name.
#filebeat.registry_file: ${path.data}/registry


output.logstash:
  #List of logstash server ip addresses with port number.
  #But, in our case, this will be the loadbalancer IP address.
  #For the below property to work the loadbalancer or logstash should expose 5044 port to listen the filebeat events or port in the property should be changed appropriately.
  hosts: ["{{.Values.config.logstashServiceName}}.{{.Release.Namespace}}:{{.Values.config.logstashPort}}"]
  #If enable will do load balancing among availabe Logstash, automatically.
  loadbalance: true

  #The list of root certificates for server verifications.
  #If certificate_authorities is empty or not set, the trusted
  #certificate authorities of the host system are used.
  #ssl.certificate_authorities: $ssl.certificate_authorities

  #The path to the certificate for SSL client authentication. If the certificate is not specified,
  #client authentication is not available.
  #ssl.certificate: $ssl.certificate

  #The client certificate key used for client authentication.
  #ssl.key: $ssl.key

  #The passphrase used to decrypt an encrypted key stored in the configured key file
  #ssl.key_passphrase: $ssl.key_passphrase