Interface Sets


  • @Deprecated
    public interface Sets
    Deprecated.
    We don't support Sets anymore. This interface will be removed in Mendix 11.
    Sets report the number of unique elements that are received in a flush period.
    • Method Summary

      All Methods Instance Methods Abstract Methods Deprecated Methods 
      Modifier and Type Method Description
      void insert​(java.lang.String bucket, java.lang.String value)
      Deprecated.
      Inserts the value into a set of unique values until the underlying implementation flushes again.
      void insert​(java.lang.String bucket, java.lang.String value, java.lang.Double sampleRate)
      Deprecated.
      Inserts the value into a set of unique values until the underlying implementation flushes again.
      void insert​(java.lang.String bucket, java.lang.String value, java.lang.Double sampleRate, java.util.Map<java.lang.String,​java.lang.String> tags)
      Deprecated.
      Inserts the value into a set of unique values until the underlying implementation flushes again.
      void insert​(java.lang.String bucket, java.lang.String value, java.util.Map<java.lang.String,​java.lang.String> tags)
      Deprecated.
      Inserts the value into a set of unique values until the underlying implementation flushes again.
    • Method Detail

      • insert

        void insert​(java.lang.String bucket,
                    java.lang.String value)
        Deprecated.
        Inserts the value into a set of unique values until the underlying implementation flushes again.
        Parameters:
        bucket - name of the set
        value - value to track
      • insert

        void insert​(java.lang.String bucket,
                    java.lang.String value,
                    java.lang.Double sampleRate)
        Deprecated.
        Inserts the value into a set of unique values until the underlying implementation flushes again.
        Parameters:
        bucket - name of the set
        value - value to track
        sampleRate - percentage of set metric to be sent
      • insert

        void insert​(java.lang.String bucket,
                    java.lang.String value,
                    java.util.Map<java.lang.String,​java.lang.String> tags)
        Deprecated.
        Inserts the value into a set of unique values until the underlying implementation flushes again.
        Parameters:
        bucket - name of the set
        value - value to track
        tags - map of tags to be added to the data
      • insert

        void insert​(java.lang.String bucket,
                    java.lang.String value,
                    java.lang.Double sampleRate,
                    java.util.Map<java.lang.String,​java.lang.String> tags)
        Deprecated.
        Inserts the value into a set of unique values until the underlying implementation flushes again.
        Parameters:
        bucket - name of the set
        value - value to track
        sampleRate - percentage of set metric to be sent
        tags - map of tags to be added to the data